You can view this catalog entry in the BUILD window of the SAS Explorer.
NOTE: PROCEDURE PRINTTO used (Total process time):
real time 0.07 seconds
cpu time 0.01 seconds
8
9 data lib1.inventry;
10 length Dept $ 4 Item $ 6 Season $ 6 Year 4;
11 input dept item season year @@;
12 datalines;
NOTE: SAS went to a new line when INPUT statement reached past the end of a
line.
NOTE: The data set LIB1.INVENTRY has 14 observations and 4 variables.
NOTE: DATA statement used:
real time 0.00 seconds
cpu time 0.00 seconds
20 ;
21
22 proc printto print=lib1.cat1.inventry.output
23 label='Inventory program' new;
24 run;
NOTE: PROCEDURE PRINTTO used:
real time 0.00 seconds
cpu time 0.00 seconds
25
26 proc report data=lib1.inventry nowindows headskip;
27 column dept item season year;
28 title 'Current Inventory Listing';
29 run;
NOTE: PROCEDURE REPORT used:
real time 0.00 seconds
cpu time 0.00 seconds
30
31 proc printto;
32 run; |