MF62VF90 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 MF62VF90 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!
NUMBER_CHECK CALL FUNCTION 'NUMBER_CHECK' EXPORTING NR_RANGE_NR = '01' NUMBER = VIOB01-SWENR OBJECT = NRK_OBJECT SUBOBJECT = BUKRS IMPORTING RETURNCODE = R_CODE EXCEPTIONS INTERVAL_NOT_FOUND = 1 NUMBER_RANGE_NOT_EXTERN = 2 OBJECT_NOT_FOUND = 3.
NUMBER_GET_INFO CALL FUNCTION 'NUMBER_GET_INFO' EXPORTING NR_RANGE_NR = '01' OBJECT = NRK_OBJECT SUBOBJECT = BUKRS IMPORTING INTERVAL = IV_INFO EXCEPTIONS INTERVAL_NOT_FOUND = 1 OBJECT_NOT_FOUND = 2.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING TITEL = TEXT-102 DIAGNOSETEXT1 = TEXTLINE TEXTLINE1 = TEXT-122 TEXTLINE2 = TEXT-123 IMPORTING ANSWER = ANTWORT.
NUMBER_GET_NEXT CALL FUNCTION 'NUMBER_GET_NEXT' EXPORTING NR_RANGE_NR = '01' OBJECT = NRK_OBJECT SUBOBJECT = BUKRS IMPORTING NUMBER = VIOB01-SWENR RETURNCODE = RET_CODE EXCEPTIONS INTERVAL_NOT_FOUND = 1 NUMBER_RANGE_NOT_INTERN = 2 OBJECT_NOT_FOUND = 3 QUANTITY_IS_0 = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.