Skip to content

/AWS1/CL_SQT=>REQUESTSERVICEQUOTAINCREASE()

About RequestServiceQuotaIncrease

Submits a quota increase request for the specified quota at the account or resource level.

Method Signature

IMPORTING

Required arguments:

iv_servicecode TYPE /AWS1/SQTSERVICECODE /AWS1/SQTSERVICECODE

Specifies the service identifier. To find the service code value for an Amazon Web Services service, use the ListServices operation.

iv_quotacode TYPE /AWS1/SQTQUOTACODE /AWS1/SQTQUOTACODE

Specifies the quota identifier. To find the quota code for a specific quota, use the ListServiceQuotas operation, and look for the QuotaCode response in the output for the quota you want.

iv_desiredvalue TYPE /AWS1/RT_DOUBLE_AS_STRING /AWS1/RT_DOUBLE_AS_STRING

Specifies the new, increased value for the quota.

Optional arguments:

iv_contextid TYPE /AWS1/SQTQUOTACONTEXTID /AWS1/SQTQUOTACONTEXTID

Specifies the resource with an Amazon Resource Name (ARN).

iv_supportcaseallowed TYPE /AWS1/SQTSUPPORTCASEALLOWED /AWS1/SQTSUPPORTCASEALLOWED

Specifies if an Amazon Web Services Support case can be opened for the quota increase request. This parameter is optional.

By default, this flag is set to True and Amazon Web Services may create a support case for some quota increase requests. You can set this flag to False if you do not want a support case created when you request a quota increase. If you set the flag to False, Amazon Web Services does not open a support case and updates the request status to Not approved.

RETURNING

oo_output TYPE REF TO /aws1/cl_sqtreqsvcquotaincrsp /AWS1/CL_SQTREQSVCQUOTAINCRSP

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_sqt~requestservicequotaincrease(
  iv_contextid = |string|
  iv_desiredvalue = |0.1|
  iv_quotacode = |string|
  iv_servicecode = |string|
  iv_supportcaseallowed = ABAP_TRUE
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lo_requestedservicequotach = lo_result->get_requestedquota( ).
  IF lo_requestedservicequotach IS NOT INITIAL.
    lv_requestid = lo_requestedservicequotach->get_id( ).
    lv_customerserviceengageme = lo_requestedservicequotach->get_caseid( ).
    lv_servicecode = lo_requestedservicequotach->get_servicecode( ).
    lv_servicename = lo_requestedservicequotach->get_servicename( ).
    lv_quotacode = lo_requestedservicequotach->get_quotacode( ).
    lv_quotaname = lo_requestedservicequotach->get_quotaname( ).
    lv_quotavalue = lo_requestedservicequotach->get_desiredvalue( ).
    lv_requeststatus = lo_requestedservicequotach->get_status( ).
    lv_datetime = lo_requestedservicequotach->get_created( ).
    lv_datetime = lo_requestedservicequotach->get_lastupdated( ).
    lv_requester = lo_requestedservicequotach->get_requester( ).
    lv_quotaarn = lo_requestedservicequotach->get_quotaarn( ).
    lv_globalquota = lo_requestedservicequotach->get_globalquota( ).
    lv_quotaunit = lo_requestedservicequotach->get_unit( ).
    lv_appliedlevelenum = lo_requestedservicequotach->get_quotarequestedatlevel( ).
    lo_quotacontextinfo = lo_requestedservicequotach->get_quotacontext( ).
    IF lo_quotacontextinfo IS NOT INITIAL.
      lv_quotacontextscope = lo_quotacontextinfo->get_contextscope( ).
      lv_quotacontextscopetype = lo_quotacontextinfo->get_contextscopetype( ).
      lv_quotacontextid = lo_quotacontextinfo->get_contextid( ).
    ENDIF.
  ENDIF.
ENDIF.