Published on :
Data Manipulation CREATION_INTERNE

Generating Current Temporal Variables

This code is also available in: Deutsch Español Français
Awaiting validation
The program executes a DATA step to create a temporary table named 'date'. It uses the intrinsic SAS© functions today(), time(), and datetime() to capture current temporal values at the time of execution. Finally, a PRINT procedure displays these values.
Data Analysis

Type : CREATION_INTERNE


Data is entirely generated by the code via system function calls, without reading external files.

1 Code Block
DATA STEP Data
Explanation :
Creation of the 'work.date' table and initialization of variables with the current date (CurrentDate), time (CurrentTime), and datetime (CurrentDateTime).
Copied!
1DATA work.date;
2 CurrentDate=today();
3 CurrentTime=time();
4 CurrentDateTime=datetime();
5RUN;
2 Code Block
PROC PRINT
Explanation :
Displaying the content of the 'work.date' table in the results.
Copied!
1PROC PRINT DATA=work.date;
2RUN;
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.