Skip to content

/AWS1/IF_SQT=>STARTQUOTAUTILIZATIONREPORT()

About StartQuotaUtilizationReport

Initiates the generation of a quota utilization report for your Amazon Web Services account. This asynchronous operation analyzes your quota usage across all Amazon Web Services services and returns a unique report identifier that you can use to retrieve the results.

The report generation process may take several seconds to complete, depending on the number of quotas in your account. Use the GetQuotaUtilizationReport operation to check the status and retrieve the results when the report is ready.

Method Signature

METHODS /AWS1/IF_SQT~STARTQUOTAUTILIZATIONREPORT
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_sqtstrtquotautlrptrsp
  RAISING
    /AWS1/CX_SQTACCESSDENIEDEX
    /AWS1/CX_SQTILLEGALARGUMENTEX
    /AWS1/CX_SQTINVPAGINATIONTOKEX
    /AWS1/CX_SQTNOSUCHRESOURCEEX
    /AWS1/CX_SQTSERVICEEXCEPTION
    /AWS1/CX_SQTTOOMANYREQUESTSEX
    /AWS1/CX_SQTCLIENTEXC
    /AWS1/CX_SQTSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.

RETURNING

oo_output TYPE REF TO /aws1/cl_sqtstrtquotautlrptrsp /AWS1/CL_SQTSTRTQUOTAUTLRPTRSP

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->startquotautilizationreport( ).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_reportid = lo_result->get_reportid( ).
  lv_reportstatus = lo_result->get_status( ).
  lv_reportmessage = lo_result->get_message( ).
ENDIF.