I am new to stored process.
When I try to creat a stored process I am getting the highligted error.
Can anybody help
+* Begin EG generated code (do not edit this line);
4 +*
5 +* Stored process registered by
6 +* Enterprise Guide Stored Process Manager V7.1
7 +*
8 +* ====================================================================
9 +* Stored process name: stp_23JAN2019
10 +* ====================================================================
11 +*;
12 +
13 +
14 +*ProcessBody;
15 +
16 +%STPBEGIN;
17 +
18 +* End EG generated code (do not edit this line);
19 +
20 +
21 +proc print data=sashelp.class;
22 +run;
NOTE: No observations in data set SASHELP.CLASS.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
23 +
24 +* Begin EG generated code (do not edit this line);
25 +;*';*";*/;quit;
26 +%STPEND;
27 +
28 +* End EG generated code (do not edit this line);
Here is the information about stored processes and their samples:
http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/stpsamp.html
This note is probably not an error. If you print sashelp.class data set without using a stored process, there is probably no observations in it.
From the log comments, you seem to be using a wizard. Please try a simple program:
%STPEND;
proc print data = sashelp.class;
run;
%STPEND;
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.