Process.xaml (11.4 KB) ExtractClientInformation.xaml (8.5 KB)
I am trying to work on Assignment1 and really confused with passing In and Out Arguments. I read topics on forums as well but not much clear
For my Extract Client Information, I am able to extract clientID,ClientName and client Country and unable to pass the same to main workflow
In the main workflow, clientID, ClientName and ClientCountry contains the extracted values.
You are not assigning the aregument values of Out_ClientID, Out_ClientName and Out_ClientCountry inside the workflow.
You must assign these values inside the workflow.
Declare ClientID, ClientName and Clientcountry as arguments (direction : out) in extract client information workflow.
Declare local variables (not arguments) in process workflow to hold the ClientID, ClientName and Clientcountry. Invoke the workflow extract client information workflow in process. when you click import arguments for the same you can see the variables passed from extract client information workflow, just store those values to local variables in process.
Declare the same variables in Sha1Online GetHashcode workflow as arguments ( Direction : in).
Invoke Sha1Online GetHashcode workflow from process. Click import arguments and you can see the declared variables in step 3 with direction in. provide the local variables in process. now you will be able to get the same in Sha1Online GetHashcode workflow