Is there a way to pass in parameters to the "Run Application Process" plugin? I have an application A's Application Process wants to invoke an application B's Application Process (which calls its Component Process requires two inputs from the user).
Asked
Active
Viewed 2,164 times
1 Answers
0
Not directly in the plugin step. What you can do is setting a component environment property (or application or component property) before running the application process. You'd need to handle the user input in Application A's process, set the properties for Application B and then run Application B's process.

Patrick Schneider
- 66
- 3
-
How to "set the properties for Application B and then run Application B's process." in this case? This is the key. CLI, REST API? – Jirong Hu Feb 01 '18 at 17:33
-
And if I use CLI/REST, how do I know if the application process execution is successful or not? https://www.ibm.com/support/knowledgecenter/SS4GSP_6.1.0/com.ibm.udeploy.api.doc/topics/udclient_requestapplicationprocess.html – Jirong Hu Feb 01 '18 at 17:35
-
In a component in App1, you create a step "Create Application Property". You specify AppB as application, propertyB's name and as value ${p:appAProcessProp}. – Patrick Schneider Feb 05 '18 at 10:18