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;
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.