Skip to main content

I have a site workflow with a variable defined as [Initiation]=Yes.  When I manually run the workflow, I am prompted for the value of the variable, and everything runs fine.  However, I’d like to pass this variable into a scheduled workflow.  Is that possible?  The variable will change depending on the date/time of its run which will be controlled by the schedule. 

 

Hi @SShaffer2 

Consider using a List to store the variable.
 

I use a List called “config” to store the mode - Production or Development

ID AppName Mode
1 LeaveApproval Development
2 OnBoarding Production

 

Workflow will query the List by AppName and get the Mode value. Development will load my email as the Approval and Production will load a different set of emails


Good idea.  Thanks. 


Reply