Skip to content

/AWS1/CL_PIP=>PUTTHIRDPARTYJOBFAILURERSLT()

About PutThirdPartyJobFailureResult

Represents the failure of a third party job as returned to the pipeline by a job worker. Used for partner actions only.

Method Signature

IMPORTING

Required arguments:

iv_jobid TYPE /AWS1/PIPTHIRDPARTYJOBID /AWS1/PIPTHIRDPARTYJOBID

The ID of the job that failed. This is the same ID returned from PollForThirdPartyJobs.

iv_clienttoken TYPE /AWS1/PIPCLIENTTOKEN /AWS1/PIPCLIENTTOKEN

The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.

io_failuredetails TYPE REF TO /AWS1/CL_PIPFAILUREDETAILS /AWS1/CL_PIPFAILUREDETAILS

Represents information about failure details.

Examples

Syntax Example

This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.

lo_client->/aws1/if_pip~putthirdpartyjobfailurerslt(
  io_failuredetails = new /aws1/cl_pipfailuredetails(
    iv_externalexecutionid = |string|
    iv_message = |string|
    iv_type = |string|
  )
  iv_clienttoken = |string|
  iv_jobid = |string|
).