MJS10FOP 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 MJS10FOP 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: IS-M: CUA Forms (Sample PGM)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISP_COUNTRY_VERSION_GET * CALL FUNCTION 'ISP_COUNTRY_VERSION_GET' * IMPORTING * OUT_COUNTRY = land.
ISP_POSTAL_CODE_CHECK CALL FUNCTION 'ISP_POSTAL_CODE_CHECK' EXPORTING * COUNTRY = land COUNTRY = JSTPLZPRO-LAND1 POSTAL_CODE = JSTPLZPRO-PLZNEU EXCEPTIONS NOT_VALID = 1 OTHERS = 2.
ISP_JSTAENDER_CHECK CALL FUNCTION 'ISP_JSTAENDER_CHECK' EXPORTING AENDNR = JSTAENDER-AENDNR AKTION = CON_AKTION_PRUEFUNG IMPORTING OUT_MESSAGE = MELDUNG AENDERUNGSNR = JSTAENDER.
POPUP_TO_DECIDE_LIST CALL FUNCTION 'POPUP_TO_DECIDE_LIST' EXPORTING CURSORLINE = 1 MARK_FLAG = ' ' " leer = radio button * MARK_MAX = 1 START_COL = 0 START_ROW = 0 TEXTLINE1 = TEXT-004 * 'Bitte wählen Sie eine PLZ aus' TEXTLINE2 = TEXT-005 * ' Postleitzahl Gültigbis' * TEXTLINE3 = ' ' TITEL = TITLE IMPORTING ANSWER = ANS TABLES T_SPOPLI = IT_POPUP EXCEPTIONS NOT_ENOUGH_ANSWERS = 1 TOO_MUCH_ANSWERS = 2 TOO_MUCH_MARKS = 3 OTHERS = 4.
ISP_POP_UP_AENDER_ANZEIGE CALL FUNCTION 'ISP_POP_UP_AENDER_ANZEIGE' EXPORTING AENDERUNGSNR = JSTAENDER-AENDNR.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.