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 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 920 views
  • 0 likes
  • 4 in conversation