Vinod
Vinod

Reputation: 2311

Issue while setting the parameter

I need to set the flow execution parameter to my flow, I tried as follows,

studentFlowURL.setParameter("execution","${flowExecutionKey}");

It is showing the following exception,

 Badly formatted flow execution key '${flowExecutionKey}', the expected format is 'e<executionId>s<snapshotId>'

Any suggestion how to pass the value of ${flowExecutionKey} as a string to the execution attribute

Upvotes: 0

Views: 920

Answers (1)

rptmat57
rptmat57

Reputation: 3787

I am not sure what you are doing, but try using:

${flowExecutionContext.key}

Upvotes: 1

Related Questions