/AWS1/IF_WAD=>GETCONSOLIDATEDREPORT()¶
About GetConsolidatedReport¶
Get a consolidated report of your workloads.
You can optionally choose to include workloads that have been shared with you.
Method Signature¶
METHODS /AWS1/IF_WAD~GETCONSOLIDATEDREPORT
IMPORTING
!IV_FORMAT TYPE /AWS1/WADREPORTFORMAT OPTIONAL
!IV_INCLUDESHAREDRESOURCES TYPE /AWS1/WADINCLSHAREDRESOURCES OPTIONAL
!IV_NEXTTOKEN TYPE /AWS1/WADNEXTTOKEN OPTIONAL
!IV_MAXRESULTS TYPE /AWS1/WADGETCONSOLIDATEDRPTM00 OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_wadgetconsolidatedr01
RAISING
/AWS1/CX_WADACCESSDENIEDEX
/AWS1/CX_WADCONFLICTEXCEPTION
/AWS1/CX_WADINTERNALSERVEREX
/AWS1/CX_WADTHROTTLINGEX
/AWS1/CX_WADVALIDATIONEX
/AWS1/CX_WADCLIENTEXC
/AWS1/CX_WADSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_format TYPE /AWS1/WADREPORTFORMAT /AWS1/WADREPORTFORMAT¶
The format of the consolidated report.
For
Base64Stringis returned. ForJSON,Metricsis returned.
Optional arguments:¶
iv_includesharedresources TYPE /AWS1/WADINCLSHAREDRESOURCES /AWS1/WADINCLSHAREDRESOURCES¶
Set to
trueto have shared resources included in the report.
iv_nexttoken TYPE /AWS1/WADNEXTTOKEN /AWS1/WADNEXTTOKEN¶
NextToken
iv_maxresults TYPE /AWS1/WADGETCONSOLIDATEDRPTM00 /AWS1/WADGETCONSOLIDATEDRPTM00¶
The maximum number of results to return for this request.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_wadgetconsolidatedr01 /AWS1/CL_WADGETCONSOLIDATEDR01¶
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->getconsolidatedreport(
iv_format = |string|
iv_includesharedresources = ABAP_TRUE
iv_maxresults = 123
iv_nexttoken = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
LOOP AT lo_result->get_metrics( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_metrictype = lo_row_1->get_metrictype( ).
LOOP AT lo_row_1->get_riskcounts( ) into ls_row_2.
lv_key = ls_row_2-key.
lo_value = ls_row_2-value.
IF lo_value IS NOT INITIAL.
lv_count = lo_value->get_value( ).
ENDIF.
ENDLOOP.
lv_workloadid = lo_row_1->get_workloadid( ).
lv_workloadname = lo_row_1->get_workloadname( ).
lv_workloadarn = lo_row_1->get_workloadarn( ).
lv_timestamp = lo_row_1->get_updatedat( ).
LOOP AT lo_row_1->get_lenses( ) into lo_row_3.
lo_row_4 = lo_row_3.
IF lo_row_4 IS NOT INITIAL.
lv_lensarn = lo_row_4->get_lensarn( ).
LOOP AT lo_row_4->get_pillars( ) into lo_row_5.
lo_row_6 = lo_row_5.
IF lo_row_6 IS NOT INITIAL.
lv_pillarid = lo_row_6->get_pillarid( ).
LOOP AT lo_row_6->get_riskcounts( ) into ls_row_2.
lv_key = ls_row_2-key.
lo_value = ls_row_2-value.
IF lo_value IS NOT INITIAL.
lv_count = lo_value->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_row_6->get_questions( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_questionid = lo_row_8->get_questionid( ).
lv_risk = lo_row_8->get_risk( ).
LOOP AT lo_row_8->get_bestpractices( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_choiceid = lo_row_10->get_choiceid( ).
lv_choicetitle = lo_row_10->get_choicetitle( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
LOOP AT lo_row_4->get_riskcounts( ) into ls_row_2.
lv_key = ls_row_2-key.
lo_value = ls_row_2-value.
IF lo_value IS NOT INITIAL.
lv_count = lo_value->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_lensesappliedcount = lo_row_1->get_lensesappliedcount( ).
ENDIF.
ENDLOOP.
lv_nexttoken = lo_result->get_nexttoken( ).
lv_base64string = lo_result->get_base64string( ).
ENDIF.