OPENWEBF02 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 OPENWEBF02 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!
ME_DISPLAY_PURCHASE_DOCUMENT CALL FUNCTION 'ME_DISPLAY_PURCHASE_DOCUMENT' EXPORTING I_EBELN = is_WEB_RELEASE-EBELN I_EBELP = is_WEB_RELEASE-EBELP I_ENJOY = c_signx EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
ME_SIMULATE_SCHEDULE_DOC CALL FUNCTION 'ME_SIMULATE_SCHEDULE_DOC' EXPORTING I_EBELN = ls_EKPO-EBELN I_EBELP = ls_EKPO-EBELP I_EKKO = ls_EKKO I_ABART = '2' I_SIMDT = sy-datlo TABLES I_EKET = lt_EKET I_EKEK = lt_IEKEK I_EKEH = lt_IEKEH EXCEPTIONS NO_OUTPUTMESSAGE_FOUND = 1 ERROR_NO_LPHIS = 2 OTHERS = 3.
ME_SIMULATE_SCHEDULE_DOC CALL FUNCTION 'ME_SIMULATE_SCHEDULE_DOC' EXPORTING I_EBELN = ls_EKPO-EBELN I_EBELP = ls_EKPO-EBELP I_EKKO = ls_EKKO I_ABART = '1' I_SIMDT = sy-datlo TABLES I_EKET = lt_EKET I_EKEK = lt_IEKEK I_EKEH = lt_IEKEH EXCEPTIONS NO_OUTPUTMESSAGE_FOUND = 1 ERROR_NO_LPHIS = 2 OTHERS = 3.
ME_LIST_SCHEDULE_DOC CALL FUNCTION 'ME_LIST_SCHEDULE_DOC' EXPORTING I_EKKO = ls_EKKO I_EKPO = ls_EKPO I_TEKE = EKEK I_TRTYP = 'V' TABLES I_EKEK = lt_ekek I_EKEH = lt_ekeh I_EKET = lt_eket.
FI_VENDOR_CHECK CALL FUNCTION 'FI_VENDOR_CHECK' EXPORTING I_BUKRS = ls_flaber-bukrs I_LIFNR = ls_flaber-LIFNR EXCEPTIONS OTHERS = 1.
VENDOR_MASTER_DATA_SELECT_12 CALL FUNCTION 'VENDOR_MASTER_DATA_SELECT_12' EXPORTING PI_LIFNR = ls_flaber-LIFNR PI_EKORG = ls_flaber-EKORG EXCEPTIONS OTHERS = 2.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING titel = text-008 textline1 = LF_CHAR1 textline2 = LF_CHAR2 cancel_display = space IMPORTING answer = lf_answer.
ISAUTO_SICSR_CONF_WEB_RELEASES CALL FUNCTION 'ISAUTO_SICSR_CONF_WEB_RELEASES' EXPORTING IT_EKEK = lt_ekek[].
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.