BookmarkSubscribe
🔒 This topic is solved and locked.

Need further help from the community? Please sign in and ask a new question.

DrBoogie
Obsidian | Level 7

Save values from prompts in a SAS EG project

Hi all,

I have a SAS EG project where some of parameteres are defined through the prompt mask. So, if starting this project the user have to select values for these parameters, using the prompt mask. What I want is to save the selected prompt values in some file (text, html, SAS - this does'n matter) at the end of the process, so that the user would be able to see afterwards, which values he(she) selected for this particular run. Is there some easy possibility to do this?

Thanks in advance,

Denis

0 Likes
1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

Re: Save values from prompts in a SAS EG project

When you define the prompt, be sure to check the box "Use prompt value throughout project".  See the screenshot:

saveprompt.png

Otherwise the prompt mechanism will clear the macro variables (like a good macro citizen...)

Chris


Join us for the next SAS Bowl trivia event, Dec 9! Swag and bragging rights are on the line.

View solution in original post

6 REPLIES 6
Reeza
Super User

Re: Save values from prompts in a SAS EG project

The prompts are stored as macro variables, so you can create a data set that contains the values and then save them out however you wish.

ie prompts = date_start date_end time_period

Data Save_Prompts;

Prompt="Date Start";

Value="&date_Start";

output;

Prompt="Date End";

Value = "&date_end";

output;

Prompt = "Time Period";

Value="Monthly";

output;

run;

0 Likes
DrBoogie
Obsidian | Level 7

Re: Save values from prompts in a SAS EG project

Thank you, but this approach doesn't work, I attempted it already. I obtain the note "Apparent symbolic reference ... not resolved". It seems that the macro variables from prompts are not global, so they are not available at the end of the process. And since I use wizard-generated queries and not programs in my process I don't know how I can declare these macro variables as global. :smileycry:

0 Likes
Quentin
Onyx | Level 15

Re: Save values from prompts in a SAS EG project

Suggest you add:

%put _user_ ;

and take a look at the log.  It should list all of the user-defined macro vaiables, and the prompts should be there.  I'm pretty sure they are global macro variables.  But I suppose it's possible that EG is deleting them for you at some point.  So you might try adding %put _user_; at multiple points in your project.

Boston Area SAS Users Group is hosting monthly FREE webinars!
Check our upcoming events: https://www.basug.org/events
Reeza
Super User

Re: Save values from prompts in a SAS EG project

So put that step into the process somewhere. Best way to do it anyways.

Make sure to use double quotes to get the variables to resolve.

ChrisHemedinger
Community Manager

Re: Save values from prompts in a SAS EG project

When you define the prompt, be sure to check the box "Use prompt value throughout project".  See the screenshot:

saveprompt.png

Otherwise the prompt mechanism will clear the macro variables (like a good macro citizen...)

Chris


Join us for the next SAS Bowl trivia event, Dec 9! Swag and bragging rights are on the line.

View solution in original post

DrBoogie
Obsidian | Level 7

Re: Save values from prompts in a SAS EG project

Thank You, this is exactly what I looked for Smiley Happy

0 Likes
SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Recommended by SAS
These recommendations are generated using AI from SAS. For personalized recommendations, sign in with your SAS profile.
Discussion stats
  • 6 replies
  • 4061 views
  • 8 likes
  • 4 in conversation