/AWS1/IF_ADS=>DESCRIBEEXPORTCONFIGURATIONS()¶
About DescribeExportConfigurations¶
DescribeExportConfigurations is deprecated. Use DescribeExportTasks, instead.
Method Signature¶
METHODS /AWS1/IF_ADS~DESCRIBEEXPORTCONFIGURATIONS
IMPORTING
!IT_EXPORTIDS TYPE /AWS1/CL_ADSEXPORTIDS_W=>TT_EXPORTIDS OPTIONAL
!IV_MAXRESULTS TYPE /AWS1/ADSINTEGER OPTIONAL
!IV_NEXTTOKEN TYPE /AWS1/ADSNEXTTOKEN OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_adsdescrexpconfsrsp
RAISING
/AWS1/CX_ADSAUTHERROREXCEPTION
/AWS1/CX_ADSHOMEREGIONNOTSETEX
/AWS1/CX_ADSINVALIDPARAMETEREX
/AWS1/CX_ADSINVPARAMVALUEEX
/AWS1/CX_ADSRESOURCENOTFOUNDEX
/AWS1/CX_ADSSERVERINTERNALER00
/AWS1/CX_ADSCLIENTEXC
/AWS1/CX_ADSSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Optional arguments:¶
it_exportids TYPE /AWS1/CL_ADSEXPORTIDS_W=>TT_EXPORTIDS TT_EXPORTIDS¶
A list of continuous export IDs to search for.
iv_maxresults TYPE /AWS1/ADSINTEGER /AWS1/ADSINTEGER¶
A number between 1 and 100 specifying the maximum number of continuous export descriptions returned.
iv_nexttoken TYPE /AWS1/ADSNEXTTOKEN /AWS1/ADSNEXTTOKEN¶
The token from the previous call to describe-export-tasks.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_adsdescrexpconfsrsp /AWS1/CL_ADSDESCREXPCONFSRSP¶
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->describeexportconfigurations(
it_exportids = VALUE /aws1/cl_adsexportids_w=>tt_exportids(
( new /aws1/cl_adsexportids_w( |string| ) )
)
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_exportsinfo( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_configurationsexportid = lo_row_1->get_exportid( ).
lv_exportstatus = lo_row_1->get_exportstatus( ).
lv_exportstatusmessage = lo_row_1->get_statusmessage( ).
lv_configurationsdownloadu = lo_row_1->get_confsdownloadurl( ).
lv_exportrequesttime = lo_row_1->get_exportrequesttime( ).
lv_boolean = lo_row_1->get_istruncated( ).
lv_timestamp = lo_row_1->get_requestedstarttime( ).
lv_timestamp = lo_row_1->get_requestedendtime( ).
ENDIF.
ENDLOOP.
lv_nexttoken = lo_result->get_nexttoken( ).
ENDIF.