Hi Terry,
We don't use the flow runner via custom activity, we instead use the Trigger node introduced for IPA (not PFI?), which essentially appears to be a builtin flowrunner
The custom activity node is "documented" in the latest "Infor ProcessDesigner Help" documentation on pg 45.
There's some pretty detailed examples of how to use custom triggers on page 173 which can be related to how to call custom activity nodes, similar logic should apply.
looking at the screenshot you posted in previously, those fields seem to be pretty clear for their intent-
flowCreateWorkunit : true #-- create a workunit or not
flowDataArea : yourDataArea #-- maybe your < !approdline >
flowInputData : YourJBean #-- trigger documentation has some similars ideas for integrating your Jbeans, and might be helpful
flowName : YourFlowName
flowSyncExecution : true # if you want it to run in sync (often for grabbing a return variable) , false if you want to run it Async (runs wild)
service: TheServiceName # build the service in landmark and set this variable to the name of the service you want to call.
-----------------
All this being said, the trigger node seems alot clearer to me.
~Peter