REE_DATEX_TASKS_EXE_INTERV_OPT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Create Optimized Intervals for Parallel Processing Object INSTALLATION You can create optimized intervals for the transaction
If you would like to execute this report or see the full code listing simply enter REE_DATEX_TASKS_EXE_INTERV_OPT into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: P_OBJECT = Object
Selection Text: P_VARI = Variant
Selection Text: SE_DXDUD = Due Date
Selection Text: SE_DXDUT = Due Time
Selection Text: SE_DXPRC = Data Exchange Process
Selection Text: SE_DXSPR = Third Party Service Provider
Selection Text: SE_DXSPS = Own Service Provider
Title: INSTALLATION Object: Divide Intervals for Data Exchange Task Execution
Text Symbol: 002 = Number of Intervals
Text Symbol: 003 = Interval Length
Text Symbol: 004 = Intervals
Text Symbol: 005 = Object
Text Symbol: 006 = Do you want to
Text Symbol: 007 = overwrite the variant?
Text Symbol: 008 = Overwrite Variant
Text Symbol: 009 = Distribution Methods For
Text Symbol: 010 = Size or Number
Text Symbol: 011 = Parameter Execution
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FKK_DI_DISTRIB_FUNCT_DETERMINE CALL FUNCTION 'FKK_DI_DISTRIB_FUNCT_DETERMINE' EXPORTING i_object = p_object i_methode = p_method IMPORTING e_methode = p_method e_fname = fname EXCEPTIONS invalid_input = 1 no_method_found = 2 invalid_method = 3 OTHERS = 4.
FKK_DI_VARIANT_CHECK CALL FUNCTION 'FKK_DI_VARIANT_CHECK' EXPORTING i_object = p_object i_variant = p_vari EXCEPTIONS variant_not_found = 1.
POPUP_TO_CONFIRM_LOSS_OF_DATA CALL FUNCTION 'POPUP_TO_CONFIRM_LOSS_OF_DATA' EXPORTING textline1 = workstr textline2 = text-007 titel = text-008 IMPORTING answer = answ.
FKK_DI_VARIANT_CREATE CALL FUNCTION 'FKK_DI_VARIANT_CREATE' EXPORTING i_object = p_object i_variant = p_vari i_isize = isize i_inmbr = inmbr i_di_crea_type = h_di_crea_type TABLES t_dipos = t_intpos EXCEPTIONS error_message = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
REE_DATEX_TASKS_EXE_INTERV_OPT - INSTALLATION Object: Divide Intervals for Data Exchange Task Execution REE_DATEX_TASKS_EXE_INTERV_OPT - INSTALLATION Object: Divide Intervals for Data Exchange Task Execution REE_DATEX_TASKS_EXECUTE_TOP - Include REE_DATEX_TASKS_EXECUTE_TOP REE_DATEX_TASKS_EXECUTE - Execute Data Exchange Tasks REE_DATEX_TASKS_EXECUTE - Execute Data Exchange Tasks REE_DATEX_TASKS_DUE_EVENT_TOP - Include REE_DATEX_MONITORING_TOP