/AWS1/IF_SCG=>NOTIFYPROVISIONPRODUCTENGI00()¶
About NotifyProvisionProductEngineWorkflowResult¶
Notifies the result of the provisioning engine execution.
Method Signature¶
METHODS /AWS1/IF_SCG~NOTIFYPROVISIONPRODUCTENGI00
  IMPORTING
    !IV_WORKFLOWTOKEN TYPE /AWS1/SCGENGINEWORKFLOWTOKEN OPTIONAL
    !IV_RECORDID TYPE /AWS1/SCGID OPTIONAL
    !IV_STATUS TYPE /AWS1/SCGENGINEWORKFLOWSTATUS OPTIONAL
    !IV_FAILUREREASON TYPE /AWS1/SCGENGINEWORKFLOWFAILU00 OPTIONAL
    !IO_RESOURCEIDENTIFIER TYPE REF TO /AWS1/CL_SCGENGINEWORKFLOWRE00 OPTIONAL
    !IT_OUTPUTS TYPE /AWS1/CL_SCGRECORDOUTPUT=>TT_RECORDOUTPUTS OPTIONAL
    !IV_IDEMPOTENCYTOKEN TYPE /AWS1/SCGIDEMPOTENCYTOKEN OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_scgnotifyprovisionp01
  RAISING
    /AWS1/CX_SCGINVALIDPARAMSEX
    /AWS1/CX_SCGRESOURCENOTFOUNDEX
    /AWS1/CX_SCGCLIENTEXC
    /AWS1/CX_SCGSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_workflowtoken TYPE /AWS1/SCGENGINEWORKFLOWTOKEN /AWS1/SCGENGINEWORKFLOWTOKEN¶
The encrypted contents of the provisioning engine execution payload that Service Catalog sends after the Terraform product provisioning workflow starts.
iv_recordid TYPE /AWS1/SCGID /AWS1/SCGID¶
The identifier of the record.
iv_status TYPE /AWS1/SCGENGINEWORKFLOWSTATUS /AWS1/SCGENGINEWORKFLOWSTATUS¶
The status of the provisioning engine execution.
iv_idempotencytoken TYPE /AWS1/SCGIDEMPOTENCYTOKEN /AWS1/SCGIDEMPOTENCYTOKEN¶
The idempotency token that identifies the provisioning engine execution.
Optional arguments:¶
iv_failurereason TYPE /AWS1/SCGENGINEWORKFLOWFAILU00 /AWS1/SCGENGINEWORKFLOWFAILU00¶
The reason why the provisioning engine execution failed.
io_resourceidentifier TYPE REF TO /AWS1/CL_SCGENGINEWORKFLOWRE00 /AWS1/CL_SCGENGINEWORKFLOWRE00¶
The ID for the provisioned product resources that are part of a resource group.
it_outputs TYPE /AWS1/CL_SCGRECORDOUTPUT=>TT_RECORDOUTPUTS TT_RECORDOUTPUTS¶
The output of the provisioning engine execution.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_scgnotifyprovisionp01 /AWS1/CL_SCGNOTIFYPROVISIONP01¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC 
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.
DATA(lo_result) = lo_client->notifyprovisionproductengi00(
  io_resourceidentifier = new /aws1/cl_scgengineworkflowre00(
    io_uniquetag = new /aws1/cl_scguniquetagresrcid(
      iv_key = |string|
      iv_value = |string|
    )
  )
  it_outputs = VALUE /aws1/cl_scgrecordoutput=>tt_recordoutputs(
    (
      new /aws1/cl_scgrecordoutput(
        iv_description = |string|
        iv_outputkey = |string|
        iv_outputvalue = |string|
      )
    )
  )
  iv_failurereason = |string|
  iv_idempotencytoken = |string|
  iv_recordid = |string|
  iv_status = |string|
  iv_workflowtoken = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.