Skip to main content
7-Bedrock
May 15, 2019
Question

Workflow expression and variables

  • May 15, 2019
  • 1 reply
  • 1531 views

I would like to find a method that could be used to reference a variable (using an expression that is in the ECN workflow) yet the variable was created during the ECR workflow.

 

 

The expression would look like the following:

 

If (mkt1)   {

                   If !  (marketing_nomore_1)       < this line is probably wrong since the variable exists outside of the                                                                                                                      workflow

                   Result = “A”;

                 }

    Else

Result = “skip”;

                    

 

The above expression is in the ECN.

mkt1 is a Boolean variable in the ECN.

marketing_nomore_1 is a Boolean in the ECR.

 

 

Thank You.

1 reply

23-Emerald III
May 15, 2019

You will need to make the variable a global one outside the workflow in order to share it/use it in another workflow.

How does the ECN know what ECR it is to get the information from?