/AWS1/IF_BCE=>UPDATEEXPORT()¶
About UpdateExport¶
Updates an existing data export by overwriting all export parameters. All export parameters must be provided in the UpdateExport request.
Method Signature¶
METHODS /AWS1/IF_BCE~UPDATEEXPORT
IMPORTING
!IV_EXPORTARN TYPE /AWS1/BCEARN OPTIONAL
!IO_EXPORT TYPE REF TO /AWS1/CL_BCEEXPORT OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_bceupdateexportrsp
RAISING
/AWS1/CX_BCEINTERNALSERVEREX
/AWS1/CX_BCERESOURCENOTFOUNDEX
/AWS1/CX_BCETHROTTLINGEX
/AWS1/CX_BCEVALIDATIONEX
/AWS1/CX_BCECLIENTEXC
/AWS1/CX_BCESERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_exportarn TYPE /AWS1/BCEARN /AWS1/BCEARN¶
The Amazon Resource Name (ARN) for this export.
io_export TYPE REF TO /AWS1/CL_BCEEXPORT /AWS1/CL_BCEEXPORT¶
The name and query details for the export.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_bceupdateexportrsp /AWS1/CL_BCEUPDATEEXPORTRSP¶
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->updateexport(
io_export = new /aws1/cl_bceexport(
io_dataquery = new /aws1/cl_bcedataquery(
it_tableconfigurations = VALUE /aws1/cl_bcetableproperties_w=>tt_tableconfigurations(
(
VALUE /aws1/cl_bcetableproperties_w=>ts_tableconfigurations_maprow(
value = VALUE /aws1/cl_bcetableproperties_w=>tt_tableproperties(
(
VALUE /aws1/cl_bcetableproperties_w=>ts_tableproperties_maprow(
value = new /aws1/cl_bcetableproperties_w( |string| )
key = |string|
)
)
)
key = |string|
)
)
)
iv_querystatement = |string|
)
io_destinationconfigurations = new /aws1/cl_bcedestinationconfs(
io_s3destination = new /aws1/cl_bces3destination(
io_s3outputconfigurations = new /aws1/cl_bces3outputconfs(
iv_compression = |string|
iv_format = |string|
iv_outputtype = |string|
iv_overwrite = |string|
)
iv_s3bucket = |string|
iv_s3prefix = |string|
iv_s3region = |string|
)
)
io_refreshcadence = new /aws1/cl_bcerefreshcadence( |string| )
iv_description = |string|
iv_exportarn = |string|
iv_name = |string|
)
iv_exportarn = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_arn = lo_result->get_exportarn( ).
ENDIF.