/AWS1/IF_IOA=>STARTPIPELINEREPROCESSING()¶
About StartPipelineReprocessing¶
Starts the reprocessing of raw message data through the pipeline.
Method Signature¶
METHODS /AWS1/IF_IOA~STARTPIPELINEREPROCESSING
IMPORTING
!IV_PIPELINENAME TYPE /AWS1/IOAPIPELINENAME OPTIONAL
!IV_STARTTIME TYPE /AWS1/IOASTARTTIME OPTIONAL
!IV_ENDTIME TYPE /AWS1/IOAENDTIME OPTIONAL
!IO_CHANNELMESSAGES TYPE REF TO /AWS1/CL_IOACHANNELMESSAGES OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_ioastrtplreprocingrsp
RAISING
/AWS1/CX_IOAINTERNALFAILUREEX
/AWS1/CX_IOAINVALIDREQUESTEX
/AWS1/CX_IOARESRCALRDYEXISTSEX
/AWS1/CX_IOARESOURCENOTFOUNDEX
/AWS1/CX_IOASERVICEUNAVAILEX
/AWS1/CX_IOATHROTTLINGEX
/AWS1/CX_IOACLIENTEXC
/AWS1/CX_IOASERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_pipelinename TYPE /AWS1/IOAPIPELINENAME /AWS1/IOAPIPELINENAME¶
The name of the pipeline on which to start reprocessing.
Optional arguments:¶
iv_starttime TYPE /AWS1/IOASTARTTIME /AWS1/IOASTARTTIME¶
The start time (inclusive) of raw message data that is reprocessed.
If you specify a value for the
startTimeparameter, you must not use thechannelMessagesobject.
iv_endtime TYPE /AWS1/IOAENDTIME /AWS1/IOAENDTIME¶
The end time (exclusive) of raw message data that is reprocessed.
If you specify a value for the
endTimeparameter, you must not use thechannelMessagesobject.
io_channelmessages TYPE REF TO /AWS1/CL_IOACHANNELMESSAGES /AWS1/CL_IOACHANNELMESSAGES¶
Specifies one or more sets of channel messages that you want to reprocess.
If you use the
channelMessagesobject, you must not specify a value forstartTimeandendTime.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_ioastrtplreprocingrsp /AWS1/CL_IOASTRTPLREPROCINGRSP¶
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->startpipelinereprocessing(
io_channelmessages = new /aws1/cl_ioachannelmessages(
it_s3paths = VALUE /aws1/cl_ioas3pathchannelmsg00=>tt_s3pathchannelmessages(
( new /aws1/cl_ioas3pathchannelmsg00( |string| ) )
)
)
iv_endtime = '20150101000000.0000000'
iv_pipelinename = |string|
iv_starttime = '20150101000000.0000000'
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_reprocessingid = lo_result->get_reprocessingid( ).
ENDIF.