12-17-2010, 06:06 PM
Hi jove1776,
You can use any one of the following to complete your task
1. Environment Variables
2. Output values
3. Action Parameters
4. Dictionary Objects
Example:
Action1:
Action2:
'Retrieve the name of the file using the above environment variable as shown below.
' write the code for processing the file
You can use any one of the following to complete your task
1. Environment Variables
2. Output values
3. Action Parameters
4. Dictionary Objects
Example:
Action1:
Code:
Filename_created="sample file which got created"
Environment("FileName")=Filename_created
Action2:
'Retrieve the name of the file using the above environment variable as shown below.
Code:
FileTobeProcessed=Environment("FileName")