BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
hulksmash
Obsidian | Level 7

Hello,

 

I am not sure if this is possible.  I am writing procedures on a project I created in EG and I would like to output the metadata of all the prompts.  I would need things like the Prompt name, default value, displayed test, description, etc...  I have easily gotten the prompt name and default value by

  1. Creating a blank program
  2. Adding all of my EG prompts to it via the properties
  3. Running the blank program
  4. Copying the part of the log that contains the %let statements for the prompt default values

Is there a similar way to get things like the description, displayed text, prompt type, ect...?

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

You can obtain at least some of this via EG Automation.  See this article about automation in VBScript and PowerShell.

 

A prompt/param snippet for VBscript:

 

' discover the parameters
Set parmList = prjObject.Parameters
Wscript.Echo "Project has " & parmList.Count & " parameters."

' work with the first parameter
Set parm = parmList.Item(0)
WScript.Echo parm.Name & " parameter has default value of " & parm.DefaultValue
SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

View solution in original post

2 REPLIES 2
andreas_lds
Jade | Level 19

Afaik there is no way to get the metadata, when the egp is loaded.

 

You could unzip the egp and extract the data from project.xml, there is a tag called <Parameters> containing the complete definition of all prompts.

ChrisHemedinger
Community Manager

You can obtain at least some of this via EG Automation.  See this article about automation in VBScript and PowerShell.

 

A prompt/param snippet for VBscript&colon;

 

' discover the parameters
Set parmList = prjObject.Parameters
Wscript.Echo "Project has " & parmList.Count & " parameters."

' work with the first parameter
Set parm = parmList.Item(0)
WScript.Echo parm.Name & " parameter has default value of " & parm.DefaultValue
SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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