BookmarkSubscribeRSS Feed
CatchRam
Calcite | Level 5

Am new to SAS and it is simple question for SAS experts. But i need a help over here.
Can anyone tell me how to create a stored process in SAS EG 4.2? I gone through the documents, but i dont get a clarity effectively.

It would be great if i receive the answers with example. Thanks in advance for your answers.

2 REPLIES 2
kellysmith
Calcite | Level 5

Creating Stored Process in SAS EG is very simple.

Open your program or project in EG.

If you want to create Stored Process (SP) based on a single program then right click on Program name, select create Stored Process. It will open SP wizard. Follow each step.

If you want to create SP from project then right click on project flow and select create Stored Process.lp you

Hope this will help you.

Aurimas
Calcite | Level 5

One more way to create/save stored process is to use "store" option.

For example:

libname lib_name "<path>";

options MSTORED SASMSTORE = lib_name;

%macro new_macro / store;

   /* Any code */

%mend;

Now macro new_macro is stored into sasmacr catalog in library lib_name.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1160 views
  • 0 likes
  • 3 in conversation