Business Object connections are a core component of Business Objects. They define the behavior for all five Business Object actions: List, Get Input, Get Reference Output, Execute, and Get Result Output. Each of these actions can call multiple connections in sequence.
Each connection is define with below set of values:
-
Connector Type - defines which connector type should be used, current list of supported connectors, their formats and parameters is provided here Business Object Connections
-
Parameter 1, Parameter 2 and Parameter 3 - connector specific parameters documented on connector help page
-
Delay Before - delay in seconds to be performed before execution of this connection
-
Before Transformation - transformation name from Scripts Managing Global Scripts, responsible for preparing Connector specific input based on Business Object template input
-
After Transformation - transformation name from Scripts Managing Global Scripts, responsible for transforming
-
System Line - overwrite system line established in Business Object for this Action. Allows action execution across various different systems.
Before Transformation Aster can return a skip flag in form of the second result equals _TRUE_. If Aster is returning two results and the second is just _TRUE_ the connection execution is skipped along with After Transformation. Next connection receives result of the Before Transformation as its input.
Example
results[1]=payload;
results[2]=_TRUE_;
results