/AWS1/IF_SWF=>GETWORKFLOWEXECUTIONHISTORY()
¶
About GetWorkflowExecutionHistory¶
Returns the history of the specified workflow execution. The results may be split into
multiple pages. To retrieve subsequent pages, make the call again using the
nextPageToken
returned by the initial call.
This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.
Access Control
You can use IAM policies to control this action's access to Amazon SWF resources as follows:
-
Use a
Resource
element with the domain name to limit the action to only specified domains. -
Use an
Action
element to allow or deny permission to call this action. -
You cannot use an IAM policy to constrain this action's parameters.
If the caller doesn't have sufficient permissions to invoke the action, or the
parameter values fall outside the specified constraints, the action fails. The associated
event attribute's cause
parameter is set to OPERATION_NOT_PERMITTED
.
For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF
Workflows in the Amazon SWF Developer Guide.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_domain
TYPE /AWS1/SWFDOMAINNAME
/AWS1/SWFDOMAINNAME
¶
The name of the domain containing the workflow execution.
io_execution
TYPE REF TO /AWS1/CL_SWFWORKFLOWEXECUTION
/AWS1/CL_SWFWORKFLOWEXECUTION
¶
Specifies the workflow execution for which to return the history.
Optional arguments:¶
iv_nextpagetoken
TYPE /AWS1/SWFPAGETOKEN
/AWS1/SWFPAGETOKEN
¶
If
NextPageToken
is returned there are more results available. The value ofNextPageToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a400
error: "Specified token has exceeded its maximum lifetime
".The configured
maximumPageSize
determines how many results can be returned in a single call.
iv_maximumpagesize
TYPE /AWS1/SWFPAGESIZE
/AWS1/SWFPAGESIZE
¶
The maximum number of results that are returned per call. Use
nextPageToken
to obtain further pages of results.
iv_reverseorder
TYPE /AWS1/SWFREVERSEORDER
/AWS1/SWFREVERSEORDER
¶
When set to
true
, returns the events in reverse order. By default the results are returned in ascending order of theeventTimeStamp
of the events.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_swfhistory
/AWS1/CL_SWFHISTORY
¶
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_swf~getworkflowexecutionhistory(
io_execution = new /aws1/cl_swfworkflowexecution(
iv_runid = |string|
iv_workflowid = |string|
)
iv_domain = |string|
iv_maximumpagesize = 123
iv_nextpagetoken = |string|
iv_reverseorder = ABAP_TRUE
).
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_events( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_timestamp = lo_row_1->get_eventtimestamp( ).
lv_eventtype = lo_row_1->get_eventtype( ).
lv_eventid = lo_row_1->get_eventid( ).
lo_workflowexecutionstarte = lo_row_1->get_workflowexecstrtedevta00( ).
IF lo_workflowexecutionstarte IS NOT INITIAL.
lv_data = lo_workflowexecutionstarte->get_input( ).
lv_durationinsecondsoption = lo_workflowexecutionstarte->get_execstarttoclosetimeout( ).
lv_durationinsecondsoption = lo_workflowexecutionstarte->get_taskstarttoclosetimeout( ).
lv_childpolicy = lo_workflowexecutionstarte->get_childpolicy( ).
lo_tasklist = lo_workflowexecutionstarte->get_tasklist( ).
IF lo_tasklist IS NOT INITIAL.
lv_name = lo_tasklist->get_name( ).
ENDIF.
lv_taskpriority = lo_workflowexecutionstarte->get_taskpriority( ).
lo_workflowtype = lo_workflowexecutionstarte->get_workflowtype( ).
IF lo_workflowtype IS NOT INITIAL.
lv_name = lo_workflowtype->get_name( ).
lv_version = lo_workflowtype->get_version( ).
ENDIF.
LOOP AT lo_workflowexecutionstarte->get_taglist( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_tag = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_workflowrunidoptional = lo_workflowexecutionstarte->get_continuedexecutionrunid( ).
lo_workflowexecution = lo_workflowexecutionstarte->get_parentworkflowexecution( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lv_eventid = lo_workflowexecutionstarte->get_parentinitiatedeventid( ).
lv_arn = lo_workflowexecutionstarte->get_lambdarole( ).
ENDIF.
lo_workflowexecutioncomple = lo_row_1->get_workflowexeccompldevta00( ).
IF lo_workflowexecutioncomple IS NOT INITIAL.
lv_data = lo_workflowexecutioncomple->get_result( ).
lv_eventid = lo_workflowexecutioncomple->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_completeworkflowexecuti = lo_row_1->get_cmpworkflowexfailedevt00( ).
IF lo_completeworkflowexecuti IS NOT INITIAL.
lv_completeworkflowexecuti_1 = lo_completeworkflowexecuti->get_cause( ).
lv_eventid = lo_completeworkflowexecuti->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_workflowexecutionfailed = lo_row_1->get_workflowexecfailedevta00( ).
IF lo_workflowexecutionfailed IS NOT INITIAL.
lv_failurereason = lo_workflowexecutionfailed->get_reason( ).
lv_data = lo_workflowexecutionfailed->get_details( ).
lv_eventid = lo_workflowexecutionfailed->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_failworkflowexecutionfa = lo_row_1->get_failworkflowexfailedev00( ).
IF lo_failworkflowexecutionfa IS NOT INITIAL.
lv_failworkflowexecutionfa_1 = lo_failworkflowexecutionfa->get_cause( ).
lv_eventid = lo_failworkflowexecutionfa->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_workflowexecutiontimedo = lo_row_1->get_workflowexectmoutevtat00( ).
IF lo_workflowexecutiontimedo IS NOT INITIAL.
lv_workflowexecutiontimeou = lo_workflowexecutiontimedo->get_timeouttype( ).
lv_childpolicy = lo_workflowexecutiontimedo->get_childpolicy( ).
ENDIF.
lo_workflowexecutioncancel = lo_row_1->get_workflowexeccancedevta00( ).
IF lo_workflowexecutioncancel IS NOT INITIAL.
lv_data = lo_workflowexecutioncancel->get_details( ).
lv_eventid = lo_workflowexecutioncancel->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_cancelworkflowexecution = lo_row_1->get_cancworkflowexfailedev00( ).
IF lo_cancelworkflowexecution IS NOT INITIAL.
lv_cancelworkflowexecution_1 = lo_cancelworkflowexecution->get_cause( ).
lv_eventid = lo_cancelworkflowexecution->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_workflowexecutioncontin = lo_row_1->get_workflowexcontinuedasn00( ).
IF lo_workflowexecutioncontin IS NOT INITIAL.
lv_data = lo_workflowexecutioncontin->get_input( ).
lv_eventid = lo_workflowexecutioncontin->get_dcsntaskcompletedeventid( ).
lv_workflowrunid = lo_workflowexecutioncontin->get_newexecutionrunid( ).
lv_durationinsecondsoption = lo_workflowexecutioncontin->get_execstarttoclosetimeout( ).
lo_tasklist = lo_workflowexecutioncontin->get_tasklist( ).
IF lo_tasklist IS NOT INITIAL.
lv_name = lo_tasklist->get_name( ).
ENDIF.
lv_taskpriority = lo_workflowexecutioncontin->get_taskpriority( ).
lv_durationinsecondsoption = lo_workflowexecutioncontin->get_taskstarttoclosetimeout( ).
lv_childpolicy = lo_workflowexecutioncontin->get_childpolicy( ).
LOOP AT lo_workflowexecutioncontin->get_taglist( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_tag = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lo_workflowtype = lo_workflowexecutioncontin->get_workflowtype( ).
IF lo_workflowtype IS NOT INITIAL.
lv_name = lo_workflowtype->get_name( ).
lv_version = lo_workflowtype->get_version( ).
ENDIF.
lv_arn = lo_workflowexecutioncontin->get_lambdarole( ).
ENDIF.
lo_continueasnewworkflowex = lo_row_1->get_continueasnewworkflowe00( ).
IF lo_continueasnewworkflowex IS NOT INITIAL.
lv_continueasnewworkflowex_1 = lo_continueasnewworkflowex->get_cause( ).
lv_eventid = lo_continueasnewworkflowex->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_workflowexecutiontermin = lo_row_1->get_workflowexterminatedev00( ).
IF lo_workflowexecutiontermin IS NOT INITIAL.
lv_terminatereason = lo_workflowexecutiontermin->get_reason( ).
lv_data = lo_workflowexecutiontermin->get_details( ).
lv_childpolicy = lo_workflowexecutiontermin->get_childpolicy( ).
lv_workflowexecutiontermin_1 = lo_workflowexecutiontermin->get_cause( ).
ENDIF.
lo_workflowexecutioncancel_1 = lo_row_1->get_workflowexecancreqedev00( ).
IF lo_workflowexecutioncancel_1 IS NOT INITIAL.
lo_workflowexecution = lo_workflowexecutioncancel_1->get_externalworkflowexec( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lv_eventid = lo_workflowexecutioncancel_1->get_externalinitiatedeventid( ).
lv_workflowexecutioncancel_2 = lo_workflowexecutioncancel_1->get_cause( ).
ENDIF.
lo_decisiontaskscheduledev = lo_row_1->get_dcsntaskschddeventattrs( ).
IF lo_decisiontaskscheduledev IS NOT INITIAL.
lo_tasklist = lo_decisiontaskscheduledev->get_tasklist( ).
IF lo_tasklist IS NOT INITIAL.
lv_name = lo_tasklist->get_name( ).
ENDIF.
lv_taskpriority = lo_decisiontaskscheduledev->get_taskpriority( ).
lv_durationinsecondsoption = lo_decisiontaskscheduledev->get_starttoclosetimeout( ).
lv_durationinsecondsoption = lo_decisiontaskscheduledev->get_scheduletostarttimeout( ).
ENDIF.
lo_decisiontaskstartedeven = lo_row_1->get_dcsntaskstrtedeventattrs( ).
IF lo_decisiontaskstartedeven IS NOT INITIAL.
lv_identity = lo_decisiontaskstartedeven->get_identity( ).
lv_eventid = lo_decisiontaskstartedeven->get_scheduledeventid( ).
ENDIF.
lo_decisiontaskcompletedev = lo_row_1->get_dcsntaskcompldeventattrs( ).
IF lo_decisiontaskcompletedev IS NOT INITIAL.
lv_data = lo_decisiontaskcompletedev->get_executioncontext( ).
lv_eventid = lo_decisiontaskcompletedev->get_scheduledeventid( ).
lv_eventid = lo_decisiontaskcompletedev->get_startedeventid( ).
lo_tasklist = lo_decisiontaskcompletedev->get_tasklist( ).
IF lo_tasklist IS NOT INITIAL.
lv_name = lo_tasklist->get_name( ).
ENDIF.
lv_durationinsecondsoption = lo_decisiontaskcompletedev->get_tasklistschdtostarttmout( ).
ENDIF.
lo_decisiontasktimedouteve = lo_row_1->get_dcsntasktmouteventattrs( ).
IF lo_decisiontasktimedouteve IS NOT INITIAL.
lv_decisiontasktimeouttype = lo_decisiontasktimedouteve->get_timeouttype( ).
lv_eventid = lo_decisiontasktimedouteve->get_scheduledeventid( ).
lv_eventid = lo_decisiontasktimedouteve->get_startedeventid( ).
ENDIF.
lo_activitytaskscheduledev = lo_row_1->get_activitytskschddevtattrs( ).
IF lo_activitytaskscheduledev IS NOT INITIAL.
lo_activitytype = lo_activitytaskscheduledev->get_activitytype( ).
IF lo_activitytype IS NOT INITIAL.
lv_name = lo_activitytype->get_name( ).
lv_version = lo_activitytype->get_version( ).
ENDIF.
lv_activityid = lo_activitytaskscheduledev->get_activityid( ).
lv_data = lo_activitytaskscheduledev->get_input( ).
lv_data = lo_activitytaskscheduledev->get_control( ).
lv_durationinsecondsoption = lo_activitytaskscheduledev->get_scheduletostarttimeout( ).
lv_durationinsecondsoption = lo_activitytaskscheduledev->get_scheduletoclosetimeout( ).
lv_durationinsecondsoption = lo_activitytaskscheduledev->get_starttoclosetimeout( ).
lo_tasklist = lo_activitytaskscheduledev->get_tasklist( ).
IF lo_tasklist IS NOT INITIAL.
lv_name = lo_tasklist->get_name( ).
ENDIF.
lv_taskpriority = lo_activitytaskscheduledev->get_taskpriority( ).
lv_eventid = lo_activitytaskscheduledev->get_dcsntaskcompletedeventid( ).
lv_durationinsecondsoption = lo_activitytaskscheduledev->get_heartbeattimeout( ).
ENDIF.
lo_activitytaskstartedeven = lo_row_1->get_activitytskstrtedevtat00( ).
IF lo_activitytaskstartedeven IS NOT INITIAL.
lv_identity = lo_activitytaskstartedeven->get_identity( ).
lv_eventid = lo_activitytaskstartedeven->get_scheduledeventid( ).
ENDIF.
lo_activitytaskcompletedev = lo_row_1->get_activitytskcompldevtat00( ).
IF lo_activitytaskcompletedev IS NOT INITIAL.
lv_data = lo_activitytaskcompletedev->get_result( ).
lv_eventid = lo_activitytaskcompletedev->get_scheduledeventid( ).
lv_eventid = lo_activitytaskcompletedev->get_startedeventid( ).
ENDIF.
lo_activitytaskfailedevent = lo_row_1->get_activitytskfailedevtat00( ).
IF lo_activitytaskfailedevent IS NOT INITIAL.
lv_failurereason = lo_activitytaskfailedevent->get_reason( ).
lv_data = lo_activitytaskfailedevent->get_details( ).
lv_eventid = lo_activitytaskfailedevent->get_scheduledeventid( ).
lv_eventid = lo_activitytaskfailedevent->get_startedeventid( ).
ENDIF.
lo_activitytasktimedouteve = lo_row_1->get_activitytsktmoutevtattrs( ).
IF lo_activitytasktimedouteve IS NOT INITIAL.
lv_activitytasktimeouttype = lo_activitytasktimedouteve->get_timeouttype( ).
lv_eventid = lo_activitytasktimedouteve->get_scheduledeventid( ).
lv_eventid = lo_activitytasktimedouteve->get_startedeventid( ).
lv_limiteddata = lo_activitytasktimedouteve->get_details( ).
ENDIF.
lo_activitytaskcanceledeve = lo_row_1->get_activitytskcancedevtat00( ).
IF lo_activitytaskcanceledeve IS NOT INITIAL.
lv_data = lo_activitytaskcanceledeve->get_details( ).
lv_eventid = lo_activitytaskcanceledeve->get_scheduledeventid( ).
lv_eventid = lo_activitytaskcanceledeve->get_startedeventid( ).
lv_eventid = lo_activitytaskcanceledeve->get_latestcancelreqedeventid( ).
ENDIF.
lo_activitytaskcancelreque = lo_row_1->get_activitytskcancreqedev00( ).
IF lo_activitytaskcancelreque IS NOT INITIAL.
lv_eventid = lo_activitytaskcancelreque->get_dcsntaskcompletedeventid( ).
lv_activityid = lo_activitytaskcancelreque->get_activityid( ).
ENDIF.
lo_workflowexecutionsignal = lo_row_1->get_workflowexecsignaledev00( ).
IF lo_workflowexecutionsignal IS NOT INITIAL.
lv_signalname = lo_workflowexecutionsignal->get_signalname( ).
lv_data = lo_workflowexecutionsignal->get_input( ).
lo_workflowexecution = lo_workflowexecutionsignal->get_externalworkflowexec( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lv_eventid = lo_workflowexecutionsignal->get_externalinitiatedeventid( ).
ENDIF.
lo_markerrecordedeventattr = lo_row_1->get_markerrecordedeventattrs( ).
IF lo_markerrecordedeventattr IS NOT INITIAL.
lv_markername = lo_markerrecordedeventattr->get_markername( ).
lv_data = lo_markerrecordedeventattr->get_details( ).
lv_eventid = lo_markerrecordedeventattr->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_recordmarkerfailedevent = lo_row_1->get_recmarkerfailedevtattrs( ).
IF lo_recordmarkerfailedevent IS NOT INITIAL.
lv_markername = lo_recordmarkerfailedevent->get_markername( ).
lv_recordmarkerfailedcause = lo_recordmarkerfailedevent->get_cause( ).
lv_eventid = lo_recordmarkerfailedevent->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_timerstartedeventattrib = lo_row_1->get_timerstartedeventattrs( ).
IF lo_timerstartedeventattrib IS NOT INITIAL.
lv_timerid = lo_timerstartedeventattrib->get_timerid( ).
lv_data = lo_timerstartedeventattrib->get_control( ).
lv_durationinseconds = lo_timerstartedeventattrib->get_starttofiretimeout( ).
lv_eventid = lo_timerstartedeventattrib->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_timerfiredeventattribut = lo_row_1->get_timerfiredeventattrs( ).
IF lo_timerfiredeventattribut IS NOT INITIAL.
lv_timerid = lo_timerfiredeventattribut->get_timerid( ).
lv_eventid = lo_timerfiredeventattribut->get_startedeventid( ).
ENDIF.
lo_timercanceledeventattri = lo_row_1->get_timercanceledeventattrs( ).
IF lo_timercanceledeventattri IS NOT INITIAL.
lv_timerid = lo_timercanceledeventattri->get_timerid( ).
lv_eventid = lo_timercanceledeventattri->get_startedeventid( ).
lv_eventid = lo_timercanceledeventattri->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_startchildworkflowexecu = lo_row_1->get_strtchildworkflowexini00( ).
IF lo_startchildworkflowexecu IS NOT INITIAL.
lv_workflowid = lo_startchildworkflowexecu->get_workflowid( ).
lo_workflowtype = lo_startchildworkflowexecu->get_workflowtype( ).
IF lo_workflowtype IS NOT INITIAL.
lv_name = lo_workflowtype->get_name( ).
lv_version = lo_workflowtype->get_version( ).
ENDIF.
lv_data = lo_startchildworkflowexecu->get_control( ).
lv_data = lo_startchildworkflowexecu->get_input( ).
lv_durationinsecondsoption = lo_startchildworkflowexecu->get_execstarttoclosetimeout( ).
lo_tasklist = lo_startchildworkflowexecu->get_tasklist( ).
IF lo_tasklist IS NOT INITIAL.
lv_name = lo_tasklist->get_name( ).
ENDIF.
lv_taskpriority = lo_startchildworkflowexecu->get_taskpriority( ).
lv_eventid = lo_startchildworkflowexecu->get_dcsntaskcompletedeventid( ).
lv_childpolicy = lo_startchildworkflowexecu->get_childpolicy( ).
lv_durationinsecondsoption = lo_startchildworkflowexecu->get_taskstarttoclosetimeout( ).
LOOP AT lo_startchildworkflowexecu->get_taglist( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_tag = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_arn = lo_startchildworkflowexecu->get_lambdarole( ).
ENDIF.
lo_childworkflowexecutions = lo_row_1->get_childworkflowexstrtede00( ).
IF lo_childworkflowexecutions IS NOT INITIAL.
lo_workflowexecution = lo_childworkflowexecutions->get_workflowexecution( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lo_workflowtype = lo_childworkflowexecutions->get_workflowtype( ).
IF lo_workflowtype IS NOT INITIAL.
lv_name = lo_workflowtype->get_name( ).
lv_version = lo_workflowtype->get_version( ).
ENDIF.
lv_eventid = lo_childworkflowexecutions->get_initiatedeventid( ).
ENDIF.
lo_childworkflowexecutionc = lo_row_1->get_childworkflowexcmpdevt00( ).
IF lo_childworkflowexecutionc IS NOT INITIAL.
lo_workflowexecution = lo_childworkflowexecutionc->get_workflowexecution( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lo_workflowtype = lo_childworkflowexecutionc->get_workflowtype( ).
IF lo_workflowtype IS NOT INITIAL.
lv_name = lo_workflowtype->get_name( ).
lv_version = lo_workflowtype->get_version( ).
ENDIF.
lv_data = lo_childworkflowexecutionc->get_result( ).
lv_eventid = lo_childworkflowexecutionc->get_initiatedeventid( ).
lv_eventid = lo_childworkflowexecutionc->get_startedeventid( ).
ENDIF.
lo_childworkflowexecutionf = lo_row_1->get_childworkflowexfailede00( ).
IF lo_childworkflowexecutionf IS NOT INITIAL.
lo_workflowexecution = lo_childworkflowexecutionf->get_workflowexecution( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lo_workflowtype = lo_childworkflowexecutionf->get_workflowtype( ).
IF lo_workflowtype IS NOT INITIAL.
lv_name = lo_workflowtype->get_name( ).
lv_version = lo_workflowtype->get_version( ).
ENDIF.
lv_failurereason = lo_childworkflowexecutionf->get_reason( ).
lv_data = lo_childworkflowexecutionf->get_details( ).
lv_eventid = lo_childworkflowexecutionf->get_initiatedeventid( ).
lv_eventid = lo_childworkflowexecutionf->get_startedeventid( ).
ENDIF.
lo_childworkflowexecutiont = lo_row_1->get_childworkflowextmoutev00( ).
IF lo_childworkflowexecutiont IS NOT INITIAL.
lo_workflowexecution = lo_childworkflowexecutiont->get_workflowexecution( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lo_workflowtype = lo_childworkflowexecutiont->get_workflowtype( ).
IF lo_workflowtype IS NOT INITIAL.
lv_name = lo_workflowtype->get_name( ).
lv_version = lo_workflowtype->get_version( ).
ENDIF.
lv_workflowexecutiontimeou = lo_childworkflowexecutiont->get_timeouttype( ).
lv_eventid = lo_childworkflowexecutiont->get_initiatedeventid( ).
lv_eventid = lo_childworkflowexecutiont->get_startedeventid( ).
ENDIF.
lo_childworkflowexecutionc_1 = lo_row_1->get_childworkflowexcancede00( ).
IF lo_childworkflowexecutionc_1 IS NOT INITIAL.
lo_workflowexecution = lo_childworkflowexecutionc_1->get_workflowexecution( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lo_workflowtype = lo_childworkflowexecutionc_1->get_workflowtype( ).
IF lo_workflowtype IS NOT INITIAL.
lv_name = lo_workflowtype->get_name( ).
lv_version = lo_workflowtype->get_version( ).
ENDIF.
lv_data = lo_childworkflowexecutionc_1->get_details( ).
lv_eventid = lo_childworkflowexecutionc_1->get_initiatedeventid( ).
lv_eventid = lo_childworkflowexecutionc_1->get_startedeventid( ).
ENDIF.
lo_childworkflowexecutiont_1 = lo_row_1->get_childworkflowextermina00( ).
IF lo_childworkflowexecutiont_1 IS NOT INITIAL.
lo_workflowexecution = lo_childworkflowexecutiont_1->get_workflowexecution( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lo_workflowtype = lo_childworkflowexecutiont_1->get_workflowtype( ).
IF lo_workflowtype IS NOT INITIAL.
lv_name = lo_workflowtype->get_name( ).
lv_version = lo_workflowtype->get_version( ).
ENDIF.
lv_eventid = lo_childworkflowexecutiont_1->get_initiatedeventid( ).
lv_eventid = lo_childworkflowexecutiont_1->get_startedeventid( ).
ENDIF.
lo_signalexternalworkflowe = lo_row_1->get_signalexternalworkflow00( ).
IF lo_signalexternalworkflowe IS NOT INITIAL.
lv_workflowid = lo_signalexternalworkflowe->get_workflowid( ).
lv_workflowrunidoptional = lo_signalexternalworkflowe->get_runid( ).
lv_signalname = lo_signalexternalworkflowe->get_signalname( ).
lv_data = lo_signalexternalworkflowe->get_input( ).
lv_eventid = lo_signalexternalworkflowe->get_dcsntaskcompletedeventid( ).
lv_data = lo_signalexternalworkflowe->get_control( ).
ENDIF.
lo_externalworkflowexecuti = lo_row_1->get_externalworkflowexsign00( ).
IF lo_externalworkflowexecuti IS NOT INITIAL.
lo_workflowexecution = lo_externalworkflowexecuti->get_workflowexecution( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lv_eventid = lo_externalworkflowexecuti->get_initiatedeventid( ).
ENDIF.
lo_signalexternalworkflowe_1 = lo_row_1->get_signalexternalworkflow01( ).
IF lo_signalexternalworkflowe_1 IS NOT INITIAL.
lv_workflowid = lo_signalexternalworkflowe_1->get_workflowid( ).
lv_workflowrunidoptional = lo_signalexternalworkflowe_1->get_runid( ).
lv_signalexternalworkflowe_2 = lo_signalexternalworkflowe_1->get_cause( ).
lv_eventid = lo_signalexternalworkflowe_1->get_initiatedeventid( ).
lv_eventid = lo_signalexternalworkflowe_1->get_dcsntaskcompletedeventid( ).
lv_data = lo_signalexternalworkflowe_1->get_control( ).
ENDIF.
lo_externalworkflowexecuti_1 = lo_row_1->get_externalworkflowexcanc00( ).
IF lo_externalworkflowexecuti_1 IS NOT INITIAL.
lo_workflowexecution = lo_externalworkflowexecuti_1->get_workflowexecution( ).
IF lo_workflowexecution IS NOT INITIAL.
lv_workflowid = lo_workflowexecution->get_workflowid( ).
lv_workflowrunid = lo_workflowexecution->get_runid( ).
ENDIF.
lv_eventid = lo_externalworkflowexecuti_1->get_initiatedeventid( ).
ENDIF.
lo_requestcancelexternalwo = lo_row_1->get_reqcancexternalworkflo00( ).
IF lo_requestcancelexternalwo IS NOT INITIAL.
lv_workflowid = lo_requestcancelexternalwo->get_workflowid( ).
lv_workflowrunidoptional = lo_requestcancelexternalwo->get_runid( ).
lv_eventid = lo_requestcancelexternalwo->get_dcsntaskcompletedeventid( ).
lv_data = lo_requestcancelexternalwo->get_control( ).
ENDIF.
lo_requestcancelexternalwo_1 = lo_row_1->get_reqcancexternalworkflo01( ).
IF lo_requestcancelexternalwo_1 IS NOT INITIAL.
lv_workflowid = lo_requestcancelexternalwo_1->get_workflowid( ).
lv_workflowrunidoptional = lo_requestcancelexternalwo_1->get_runid( ).
lv_requestcancelexternalwo_2 = lo_requestcancelexternalwo_1->get_cause( ).
lv_eventid = lo_requestcancelexternalwo_1->get_initiatedeventid( ).
lv_eventid = lo_requestcancelexternalwo_1->get_dcsntaskcompletedeventid( ).
lv_data = lo_requestcancelexternalwo_1->get_control( ).
ENDIF.
lo_scheduleactivitytaskfai = lo_row_1->get_schactivitytskfailedev00( ).
IF lo_scheduleactivitytaskfai IS NOT INITIAL.
lo_activitytype = lo_scheduleactivitytaskfai->get_activitytype( ).
IF lo_activitytype IS NOT INITIAL.
lv_name = lo_activitytype->get_name( ).
lv_version = lo_activitytype->get_version( ).
ENDIF.
lv_activityid = lo_scheduleactivitytaskfai->get_activityid( ).
lv_scheduleactivitytaskfai_1 = lo_scheduleactivitytaskfai->get_cause( ).
lv_eventid = lo_scheduleactivitytaskfai->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_requestcancelactivityta = lo_row_1->get_reqcancactivitytskfail00( ).
IF lo_requestcancelactivityta IS NOT INITIAL.
lv_activityid = lo_requestcancelactivityta->get_activityid( ).
lv_requestcancelactivityta_1 = lo_requestcancelactivityta->get_cause( ).
lv_eventid = lo_requestcancelactivityta->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_starttimerfailedeventat = lo_row_1->get_strttimerfailedevtattrs( ).
IF lo_starttimerfailedeventat IS NOT INITIAL.
lv_timerid = lo_starttimerfailedeventat->get_timerid( ).
lv_starttimerfailedcause = lo_starttimerfailedeventat->get_cause( ).
lv_eventid = lo_starttimerfailedeventat->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_canceltimerfailedeventa = lo_row_1->get_canctimerfailedevtattrs( ).
IF lo_canceltimerfailedeventa IS NOT INITIAL.
lv_timerid = lo_canceltimerfailedeventa->get_timerid( ).
lv_canceltimerfailedcause = lo_canceltimerfailedeventa->get_cause( ).
lv_eventid = lo_canceltimerfailedeventa->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_startchildworkflowexecu_1 = lo_row_1->get_strtchildworkflowexfai00( ).
IF lo_startchildworkflowexecu_1 IS NOT INITIAL.
lo_workflowtype = lo_startchildworkflowexecu_1->get_workflowtype( ).
IF lo_workflowtype IS NOT INITIAL.
lv_name = lo_workflowtype->get_name( ).
lv_version = lo_workflowtype->get_version( ).
ENDIF.
lv_startchildworkflowexecu_2 = lo_startchildworkflowexecu_1->get_cause( ).
lv_workflowid = lo_startchildworkflowexecu_1->get_workflowid( ).
lv_eventid = lo_startchildworkflowexecu_1->get_initiatedeventid( ).
lv_eventid = lo_startchildworkflowexecu_1->get_dcsntaskcompletedeventid( ).
lv_data = lo_startchildworkflowexecu_1->get_control( ).
ENDIF.
lo_lambdafunctionscheduled = lo_row_1->get_lambdafuncschddevtattrs( ).
IF lo_lambdafunctionscheduled IS NOT INITIAL.
lv_functionid = lo_lambdafunctionscheduled->get_id( ).
lv_functionname = lo_lambdafunctionscheduled->get_name( ).
lv_data = lo_lambdafunctionscheduled->get_control( ).
lv_functioninput = lo_lambdafunctionscheduled->get_input( ).
lv_durationinsecondsoption = lo_lambdafunctionscheduled->get_starttoclosetimeout( ).
lv_eventid = lo_lambdafunctionscheduled->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_lambdafunctionstartedev = lo_row_1->get_lambdafuncstrtedevtattrs( ).
IF lo_lambdafunctionstartedev IS NOT INITIAL.
lv_eventid = lo_lambdafunctionstartedev->get_scheduledeventid( ).
ENDIF.
lo_lambdafunctioncompleted = lo_row_1->get_lambdafunccompldevtattrs( ).
IF lo_lambdafunctioncompleted IS NOT INITIAL.
lv_eventid = lo_lambdafunctioncompleted->get_scheduledeventid( ).
lv_eventid = lo_lambdafunctioncompleted->get_startedeventid( ).
lv_data = lo_lambdafunctioncompleted->get_result( ).
ENDIF.
lo_lambdafunctionfailedeve = lo_row_1->get_lambdafuncfailedevtattrs( ).
IF lo_lambdafunctionfailedeve IS NOT INITIAL.
lv_eventid = lo_lambdafunctionfailedeve->get_scheduledeventid( ).
lv_eventid = lo_lambdafunctionfailedeve->get_startedeventid( ).
lv_failurereason = lo_lambdafunctionfailedeve->get_reason( ).
lv_data = lo_lambdafunctionfailedeve->get_details( ).
ENDIF.
lo_lambdafunctiontimedoute = lo_row_1->get_lambdafunctmoutevtattrs( ).
IF lo_lambdafunctiontimedoute IS NOT INITIAL.
lv_eventid = lo_lambdafunctiontimedoute->get_scheduledeventid( ).
lv_eventid = lo_lambdafunctiontimedoute->get_startedeventid( ).
lv_lambdafunctiontimeoutty = lo_lambdafunctiontimedoute->get_timeouttype( ).
ENDIF.
lo_schedulelambdafunctionf = lo_row_1->get_schdlambdafuncfailedev00( ).
IF lo_schedulelambdafunctionf IS NOT INITIAL.
lv_functionid = lo_schedulelambdafunctionf->get_id( ).
lv_functionname = lo_schedulelambdafunctionf->get_name( ).
lv_schedulelambdafunctionf_1 = lo_schedulelambdafunctionf->get_cause( ).
lv_eventid = lo_schedulelambdafunctionf->get_dcsntaskcompletedeventid( ).
ENDIF.
lo_startlambdafunctionfail = lo_row_1->get_strtlambdafuncfailedev00( ).
IF lo_startlambdafunctionfail IS NOT INITIAL.
lv_eventid = lo_startlambdafunctionfail->get_scheduledeventid( ).
lv_startlambdafunctionfail_1 = lo_startlambdafunctionfail->get_cause( ).
lv_causemessage = lo_startlambdafunctionfail->get_message( ).
ENDIF.
ENDIF.
ENDLOOP.
lv_pagetoken = lo_result->get_nextpagetoken( ).
ENDIF.