Hi.I have created config file in excel these value are dynamic means these values will changes when client want to change as mention in screen shot.But Now client want these all value set in orchestrator and send value in parameter from code instead of using config file.So anyone help me How can I achieve this
Fine
Along your process create IN arguments to take the input parameters passed when Job is triggered
And once after creating process with appropriate arguments and publishing it to orchestrator, before running the job we could be able to pass the parameter for the arguments we have created
thanks for your valuable .I don’t know how to do this and how to set value of excel file in orchestrator. I need to study on ASSETS
Let me know one thing I need to change in code or this is done from orchestrator…? Because orchestrator part done my deployment team.
eg in config file we have two URL of one application
UAT URL
Production URL
Now in config file if we want to run this on UAT then we put URL of UAT in config file then it work for UAT and same as production.
Now in case of asset what I need to do…??
Fine
If they have the access to orchestrator and if they want to run whenever they require from orchestrator and can pass parameter before running then they can use INPUT and OUTPUT parameters
Or
If they don’t have the access to orchestrator then we can pass the Value as ASSET to the process
And for both the stage it is first handled in orchestrator and also inside the workflow
Like for arguments we need to have IN arguments defined in the workflow
Or
If asset we need to use GET ASSET activity to get the value from orchestrator
Thanks for reply.yes INPUT and OUTPUT parameters fine for me.Please guide me how can I use this…?
How I can pass the value in this.Which is I am using previous in excel file…?
Thanks for this.This same article provide by deployment team.But Still my one question is still pending. How can pass excel value in parameter.Have you any code any example I think this will work for me.!
Fine
Inside the workflow create arguments of IN direction
For example
In_GetFileName
In_GetSheetName
…
Place thee arguments in the workflow were we will be calling the config file as a dictionary for each value
Now from orchestrator we will be able to see the arguments in the JOB page and if we give the value there it will be taken inside the workflow throw those IN arguments
thanks for help.Like this as mention in attachment.In previous I am using config file.That config file read data from excel and assign that value in variable.Now I need to put these variable in arguments and where I am reading data from excel need to delete activity mention in circle. because now that are not in use …?
As mention in attachment
No sorry I did not understand
One is variable I created URL and one argument name i_URL
In previous using config file ie excel I am getting URL from excel where mentioned execute application for production or UAT.
Now All the code related to config file is deleted now variable are left.
As you have passed the value for those argument from orchestrator we need to get them inside the workflow
Either use those arguments directly to pass the value or use a assign activity and get the value from those arguments to a variable and then use those variables buddy
Cheers @Aditya10989