Hi Team,
Hope you are well. I need help.
I have two workflows. Need to integrate one workflow into another.
There is a challenge.
The output of the first workflow should be passed into another workflow. But the first workflow output has timestamp.
Please let me know how to go about this,
Thanks,
Sri
Thanks for the reply and suggestion. To explain the situation.
I have two workflows
Invoice workflow - it extracts all the necessary information from the pdf (invoices) and store in a excel file
Sql workflow - This is the one you helped me with.
Objective -
Is to integrate sql workflow into the invoice workflow.
Pass the invoice column from the first workflow into the Sql workflow query.
But the output from the invoice workflow in an excel file is name - timestamped. (not a static output) which i can point the sql to this location to pickup file.
When i will run the workflow the time would have lapsed and by the time it enters sql query it wont recognize. Not sure do we need to invoke a new workflow, create parameters?
In the first workflow create an out argument oas string type(ar1)
Now while creating thw file…dont directly give the filename in the field…rather assign the filename and location to your ar1 argument and use it.
And now when you need it later in sql or anywhere you can use the value in ar1 argument even if a different workflow is started then you can pass the argument value to it