Hi All,
I have used hard coded path such as: In a workflow, in file collector,I have used folder path to pick from D:\FolderX\QA\xyz\
I tried with this approach:
By assiigning the option folderPath with this value ->
D:\FolderX\<%= getOption("environmentVariable") %>\xyz\
and called <%= getOption("folderPath") %> in File collector activity. But, it threw error. Maybe the text value is not looking for the script and instead takes as only a text value.
Could you please help me achieve this.
Thank you,
Anoop
Solved! Go to Solution.
Views
Replies
Total Likes
Hello @anoopa24021992 ,
Use a javascript activity in your workflow and save the value of getOption in that variable and then call the variable where you are calling the getOption.
So in your javascript code, You will write.
vars.envVariable=getOption("environmentVariable");
and the path variable, you can use this.
D:\FolderX\<%= vars.envVariable %>\xyz\
Let me know if that helps.
Thanks,
Views
Replies
Total Likes
Hello @anoopa24021992 ,
Use a javascript activity in your workflow and save the value of getOption in that variable and then call the variable where you are calling the getOption.
So in your javascript code, You will write.
vars.envVariable=getOption("environmentVariable");
and the path variable, you can use this.
D:\FolderX\<%= vars.envVariable %>\xyz\
Let me know if that helps.
Thanks,
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies