Skip to content

/AWS1/IF_REV=>DELETESERVICEFUNCTIONRES()

About DeleteServiceFunctionResources

Removes resources from a service function.

Method Signature

METHODS /AWS1/IF_REV~DELETESERVICEFUNCTIONRES
  IMPORTING
    !IV_SERVICEARN TYPE /AWS1/REVARN OPTIONAL
    !IV_SERVICEFUNCTIONID TYPE /AWS1/REVENTITYID OPTIONAL
    !IT_RESOURCES TYPE /AWS1/CL_REVRESOURCELIST_W=>TT_RESOURCELIST OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_revdelsvcfuncresrsp
  RAISING
    /AWS1/CX_REVACCESSDENIEDEX
    /AWS1/CX_REVCONFLICTEXCEPTION
    /AWS1/CX_REVINTERNALSERVEREX
    /AWS1/CX_REVRESOURCENOTFOUNDEX
    /AWS1/CX_REVVLDTNEXCEPTION
    /AWS1/CX_REVCLIENTEXC
    /AWS1/CX_REVSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.

IMPORTING

Required arguments:

iv_servicearn TYPE /AWS1/REVARN /AWS1/REVARN

ARN identifier.

iv_servicefunctionid TYPE /AWS1/REVENTITYID /AWS1/REVENTITYID

The identifier of the service function to remove resources from.

it_resources TYPE /AWS1/CL_REVRESOURCELIST_W=>TT_RESOURCELIST TT_RESOURCELIST

The list of resources to remove from the service function.

RETURNING

oo_output TYPE REF TO /aws1/cl_revdelsvcfuncresrsp /AWS1/CL_REVDELSVCFUNCRESRSP

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->deleteservicefunctionres(
  it_resources = VALUE /aws1/cl_revresourcelist_w=>tt_resourcelist(
    ( new /aws1/cl_revresourcelist_w( |string| ) )
  )
  iv_servicearn = |string|
  iv_servicefunctionid = |string|
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_arn = lo_result->get_servicearn( ).
  lv_entityid = lo_result->get_servicefunctionid( ).
  LOOP AT lo_result->get_resources( ) into lo_row.
    lo_row_1 = lo_row.
    IF lo_row_1 IS NOT INITIAL.
      lv_string = lo_row_1->get_value( ).
    ENDIF.
  ENDLOOP.
ENDIF.