/AWS1/IF_RFT=>EXPORTCOMPLIANCEINQUIRY()¶
About ExportComplianceInquiry¶
Export a compliance inquiry report.
Method Signature¶
METHODS /AWS1/IF_RFT~EXPORTCOMPLIANCEINQUIRY
IMPORTING
!IV_COMPLIANCEINQUIRYID TYPE /AWS1/RFTINQUIRYID OPTIONAL
!IT_QUERYIDENTIFIERS TYPE /AWS1/CL_RFTQUERYIDNTFRSLIST_W=>TT_QUERYIDENTIFIERSLIST OPTIONAL
!IV_INCLUDECITATIONS TYPE /AWS1/RFTBOOLEAN OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_rftexpcplncinqryrsp
RAISING
/AWS1/CX_RFTACCESSDENIEDEX
/AWS1/CX_RFTINTERNALSERVEREX
/AWS1/CX_RFTRESOURCENOTFOUNDEX
/AWS1/CX_RFTTHROTTLINGEX
/AWS1/CX_RFTVALIDATIONEX
/AWS1/CX_RFTCLIENTEXC
/AWS1/CX_RFTSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_complianceinquiryid TYPE /AWS1/RFTINQUIRYID /AWS1/RFTINQUIRYID¶
Unique resource ID for the compliance inquiry.
Optional arguments:¶
it_queryidentifiers TYPE /AWS1/CL_RFTQUERYIDNTFRSLIST_W=>TT_QUERYIDENTIFIERSLIST TT_QUERYIDENTIFIERSLIST¶
List of query identifiers to include in the export.
iv_includecitations TYPE /AWS1/RFTBOOLEAN /AWS1/RFTBOOLEAN¶
When true, include citations in the exported document.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_rftexpcplncinqryrsp /AWS1/CL_RFTEXPCPLNCINQRYRSP¶
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->exportcomplianceinquiry(
it_queryidentifiers = VALUE /aws1/cl_rftqueryidntfrslist_w=>tt_queryidentifierslist(
( new /aws1/cl_rftqueryidntfrslist_w( 123 ) )
)
iv_complianceinquiryid = |string|
iv_includecitations = ABAP_TRUE
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_presignedurl = lo_result->get_documentpresignedurl( ).
LOOP AT lo_result->get_tags( ) into ls_row.
lv_key = ls_row-key.
lo_value = ls_row-value.
IF lo_value IS NOT INITIAL.
lv_tagvalue = lo_value->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
Invoke ExportComplianceInquiry operation¶
Exports a compliance inquiry report.
DATA(lo_result) = lo_client->exportcomplianceinquiry(
it_queryidentifiers = VALUE /aws1/cl_rftqueryidntfrslist_w=>tt_queryidentifierslist(
( new /aws1/cl_rftqueryidntfrslist_w( 1 ) )
( new /aws1/cl_rftqueryidntfrslist_w( 2 ) )
)
iv_complianceinquiryid = |compliance-inquiry-abcdef0123456789|
iv_includecitations = ABAP_TRUE
).