/AWS1/CL_IOA=>STARTPIPELINEREPROCESSING()
¶
About StartPipelineReprocessing¶
Starts the reprocessing of raw message data through the pipeline.
Method Signature¶
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
startTime
parameter, you must not use thechannelMessages
object.
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
endTime
parameter, you must not use thechannelMessages
object.
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
channelMessages
object, you must not specify a value forstartTime
andendTime
.
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->/aws1/if_ioa~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.