How do I get Source File Name in mapping?
How do I get Source File Name in the mapping activity of my process flow?
0
-
You can get Source File Name by creating a Global Variable and selecting Get-Context function. In the function declaration put the following syntax
get-context('Service.mySourceActivityName.fileName', 'na')
First parameter refers to the attribute we want to obtain the value from, in this case fileName.
Second parameter is a default value.
Please refer to the below screenshot for reference.
0
Post is closed for comments.
Comments
1 comment