OPENWEBF01 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 OPENWEBF01 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.
Title: Include OPENWEBF01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISAUTO_SICSR_GET_WEB_RELEASES CALL FUNCTION 'ISAUTO_SICSR_GET_WEB_RELEASES' EXPORTING IT_PDOC_DATA = it_PDOC_DATA IMPORTING ET_WEB_RELEASES = ct_WEB_RELEASE.
START_TIME_DETERMINE CALL FUNCTION 'START_TIME_DETERMINE' EXPORTING DURATION = PA_opens UNIT = 'H' * FACTORY_CALENDAR = IMPORTING START_DATE = lf_startdate START_TIME = lf_starttime CHANGING END_DATE = lf_endDATE END_TIME = lf_endTIME EXCEPTIONS FACTORY_CALENDAR_NOT_FOUND = 1 DATE_OUT_OF_CALENDAR_RANGE = 2 DATE_NOT_VALID = 3 UNIT_CONVERSION_ERROR = 4 SI_UNIT_MISSING = 5 PARAMETERS_NOT_VALID = 6 OTHERS = 7.
GET_TEXT_DOMVALUE CALL FUNCTION 'GET_TEXT_DOMVALUE' EXPORTING DOMNAME = 'RUSKZ' DOMVALUE = LF_VALUE LANGU = SY-LANGU IMPORTING TXT = ls_WEB_RELEASE-RUSKZ_TEXT EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING I_INTERFACE_CHECK = ' ' I_BUFFER_ACTIVE = c_signx I_CALLBACK_PROGRAM = GF_REPID I_CALLBACK_PF_STATUS_SET = C_PF_STATUS_SET I_CALLBACK_USER_COMMAND = C_USER_COMMAND * i_structure_name = '' IS_LAYOUT = LS_LAYOUT IT_FIELDCAT = GT_FIELDCAT[] * IT_EXCLUDING = * it_special_groups = gt_sp_group[] IT_SORT = GT_SORT[] * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = c_signx I_SAVE = c_signa IS_VARIANT = GS_VARIANT IT_EVENTS = GT_EVENTS[] IT_EVENT_EXIT = GT_EVENT_EXIT[] * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES T_OUTTAB = IT_WEB_RELEASE EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.