/AWS1/CL_RGR=>UPDATEACCOUNTSETTINGS()
¶
About UpdateAccountSettings¶
Turns on or turns off optional features in Resource Groups.
The preceding example shows that the request to turn on group lifecycle events is
IN_PROGRESS
. You can call the GetAccountSettings
operation to check for completion by looking for GroupLifecycleEventsStatus
to change to ACTIVE
.
Method Signature¶
IMPORTING¶
Optional arguments:¶
iv_grouplceventsdesiredstat
TYPE /AWS1/RGRGRPLCEVTSDESIREDSTAT
/AWS1/RGRGRPLCEVTSDESIREDSTAT
¶
Specifies whether you want to turn group lifecycle events on or off.
You can't turn on group lifecycle events if your resource groups quota is greater than 2,000.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_rgrupdacctstgsoutput
/AWS1/CL_RGRUPDACCTSTGSOUTPUT
¶
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->/aws1/if_rgr~updateaccountsettings( |string| ).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_accountsettings = lo_result->get_accountsettings( ).
IF lo_accountsettings IS NOT INITIAL.
lv_grouplifecycleeventsdes = lo_accountsettings->get_grouplceventsdesiredstat( ).
lv_grouplifecycleeventssta = lo_accountsettings->get_grouplceventsstatus( ).
lv_grouplifecycleeventssta_1 = lo_accountsettings->get_grouplceventsstatusmsg( ).
ENDIF.
ENDIF.