Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note
titleNote

A prerequisite for the use of these functions is that Automatic Output Retrieval and Wait For Output are selected at task level, with the exception of the EXTENSION output type.

Anchor
SAP Connection Function
SAP Connection Function
SAP Connection

...

Output 

Description

Returns a token representing the property associated with an SAP connection

Syntax

${_sapConnection('<sapConnection_name>', '<property-name>')}

Parameters

  • sapConnection_name
    Required; Name of the SAP Connection.

  • property_name
    Required; Name of the SAP Connection property.

Anchor
Task Instance Output
Task Instance Output
Task Instance Output

...

Description

Resolves to the number of lines of output data, of the specified outputType, of the task instance that is resolving the function.

  • If the output record of the specified ouptutType cannot be found, the function will remain unresolved.

Syntax

${_outputNumberOfLines('outputType')}

Parameters

  • outputType
    Required; Type of output to resolve: STDOUT, STDERR, FILE, EXTENSION, or JOBLOG.
Example

${_outputNumberOfLines('STDOUT')}
> 6

...