WLC_PROCESS_IN_PARALLELF03 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter WLC_PROCESS_IN_PARALLELF03 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TR_OBJECT_CHECK CALL FUNCTION 'TR_OBJECT_CHECK' EXPORTING wi_ko200 = ls_ko200 * IV_NO_STANDARD_EDITOR = ' ' iv_no_show_option = 'X' * IV_EXTERNALPS = ' ' * IV_EXTERNALID = ' ' * IV_NO_PS = ' ' IMPORTING we_order = lf_tr_order we_task = lf_tr_task we_ko200 = ls_ko200 we_object_appendable = lf_appendable es_tadir = ls_tadir * TABLES * WT_E071K = EXCEPTIONS cancel_edit_other_error = 01 show_only_other_error = 02 OTHERS = 99 .
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING * TITLEBAR = ' ' diagnose_object = 'WLC_REPORT_EXISTS' text_question = 'Darf der Report überschrieben werden?'(005) * TEXT_BUTTON_1 = 'ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' default_button = '2' * DISPLAY_CANCEL_BUTTON = 'X' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = IMPORTING answer = lf_answer TABLES parameter = lt_parameters EXCEPTIONS text_not_found = 1 OTHERS = 2 .
TR_OBJECT_INSERT CALL FUNCTION 'TR_OBJECT_INSERT' EXPORTING * WI_ORDER = ' ' wi_ko200 = ls_ko200 * IV_NO_STANDARD_EDITOR = ' ' iv_no_show_option = 'X' * IV_EXTERNALPS = ' ' * IV_EXTERNALID = ' ' * IV_NO_PS = ' ' IMPORTING we_order = lf_tr_order we_task = lf_tr_task we_ko200 = ls_ko200 es_tadir = ls_tadir * TABLES * WT_E071K = EXCEPTIONS cancel_edit_other_error = 01 show_only_other_error = 02 OTHERS = 99 .
RS_TEXTPOOL_READ CALL FUNCTION 'RS_TEXTPOOL_READ' EXPORTING OBJECTNAME = lf_my_name ACTION = 'READ' * AUTHORITY_CHECK = ' ' LANGUAGE = if_language TABLES TPOOL = lt_textpool EXCEPTIONS OBJECT_NOT_FOUND = 01 PERMISSION_FAILURE = 02 INVALID_PROGRAM_TYPE = 03 ERROR_OCCURED = 04 ACTION_CANCELLED = 05 OTHERS = 99 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.