For development I use the Enterprise Guide 8.2 with ordered lists.
At the end I want to have all source codes (program steps) extracted into one single source.
Until now I found "export all code in process flow" and "export all code in project".
Is there somewhere a function "export all code in ordered list"?
I use EG frequently and have v8.2, but I'm not familiar with what you're talking about. Can you post a short example of what you're looking for?
Jim
I have an EGP project with a few program-steps
- import_customer.sas
- import_sales.sas
- analyse_monthly_sales.sas
- email_statistik.sas
To run the program-steps monthly in the desired sequence I use the built-in feature "ordered list".
Now I want to extract that complete code into one single source to give it to someone else.
In EG, can't you just do File ==> Export? Then have a SAS program run them one at a time using %includes?
%include 'file1';
%include 'file2';
%include 'file3';
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.