SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
acanes
Calcite | Level 5
In the exam content tab of the Advanced Certification Exam Program it says the exam has

Reduce programming time by developing reusable SAS programs which incorporate data step views, DATA steps that write SAS programs, and the FCMP procedure.

Does anybody know what DATA steps that write SAS programs means or where I can find documentation on this subject?
3 REPLIES 3
chang_y_chung_hotmail_com
Obsidian | Level 7
There isn't anything special about "Data steps that write SAS programs." SAS code is text strings and data steps can handle text strings with no problem. Here is a simple example:



/* a data step that generates a sas program */

data _null_;

  file "c:\temp\code.sas";

  input;

  put _infile_;

cards4;

  proc print data=sashelp.class;

  run;

;;;;

run;

 

/* one way to run the generated program */

%inc "c:\temp\code.sas" / source; 
Doc_Duke
Rhodochrosite | Level 12
Acanes,

Your question is about something that is generically called "automatic programming."
http://en.wikipedia.org/wiki/Automatic_programming

I frequently use the technique to read the metadata from a database to generate the descriptive statements (LABELs and such) related to the data that is coming in from other tables in the database. Cynthia and Chang showed you other examples.

Doc Muhlbaier
Duke

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1013 views
  • 0 likes
  • 4 in conversation