MJBD6FPO 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 MJBD6FPO 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!
ISB_STOCKS_CHECK_INIT CALL FUNCTION 'ISB_STOCKS_CHECK_INIT' TABLES TP_JBIUBST = WRK_JBIUBST EXCEPTIONS ERROR_FOUND = 1 OTHERS = 2.
ISB_STOCKS_CHECK CALL FUNCTION 'ISB_STOCKS_CHECK' EXPORTING CHECK = CON_SCHECK_ALL ONLINE = 'X' TABLES ERROR_ITAB = WRK_SPROT T_JBIUBST = WRK_JBIUBST MK_STEU = WRK_MK_STEU EXCEPTIONS OTHERS = 1.
POPUP_TO_CONFIRM_LOSS_OF_DATA CALL FUNCTION 'POPUP_TO_CONFIRM_LOSS_OF_DATA' EXPORTING TEXTLINE1 = SAV_TEXT1 TEXTLINE2 = SAV_TEXT2 TITEL = SAV_TEXT3 * START_COLUMN = 25 * START_ROW = 6 IMPORTING ANSWER = SAV_ANSWER EXCEPTIONS OTHERS = 1.
POPUP_TO_CONFIRM_LOSS_OF_DATA CALL FUNCTION 'POPUP_TO_CONFIRM_LOSS_OF_DATA' EXPORTING TEXTLINE1 = SAV_TEXT1 TEXTLINE2 = SAV_TEXT2 TITEL = SAV_TEXT3 * START_COLUMN = 25 * START_ROW = 6 IMPORTING ANSWER = SAV_ANSWER EXCEPTIONS OTHERS = 1.
HELP_VALUES_GET_WITH_VALUE CALL FUNCTION 'HELP_VALUES_GET_WITH_VALUE' EXPORTING * CUCOL = 0 * CUROW = 0 * DISPLAY = ' ' FIELDNAME = 'GSART' TABNAME = 'V_TZPA' GIVEN_VALUE = WRK_VALUE * SHOW_ALL_VALUES_AT_FIRST_TIME = ' ' IMPORTING SELECT_VALUE = WRK_VALUE TABLES FIELDS = WRK_HELP_VALUE VALUETAB = WRK_VALUETAB EXCEPTIONS FIELD_NOT_IN_DDIC = 1 MORE_THEN_ONE_SELECTFIELD = 2 NO_SELECTFIELD = 3 OTHERS = 4.
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING tabname = 'AFW_SSIGN' fieldname = '' * SEARCHHELP = ' ' * SHLPPARAM = ' ' * DYNPPROG = ' ' * DYNPNR = ' ' * DYNPROFIELD = ' ' * STEPL = 0 * VALUE = ' ' * MULTIPLE_CHOICE = ' ' * DISPLAY = ' ' * SUPPRESS_RECORDLIST = ' ' * CALLBACK_PROGRAM = ' ' * CALLBACK_FORM = ' ' * SELECTION_SCREEN = ' ' TABLES RETURN_TAB = l_tab_return EXCEPTIONS * FIELD_NOT_FOUND = 1 * NO_HELP_FOR_FIELD = 2 * INCONSISTENT_HELP = 3 * NO_VALUES_FOUND = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.