Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: rakhiCan we change the value of a graph parameter within the workflow or any node like Split node.
Suppose declare a graph parameter (SourcePath ) and assign its value ("D:\lavastrom\data") in graph level.
Example.
SourcePath = D:\lavastrom\data
Now we want to change the value of the AccountNo parameter with new value (D:\lavastrom\backup
) in the split node. I have written some logic in the node is given below.
mvFile = "move"
If mvFile=="move" then
{
SourcePath = D:\lavastrom\backup
}
Please let me know whether it is possible or not. If possible then how could we do this. Thanks in advance