MJK07F02 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 MJK07F02 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!
COUNTRY_CODE_SAP_TO_ISO CALL FUNCTION 'COUNTRY_CODE_SAP_TO_ISO' EXPORTING SAP_CODE = JGTSADR-LAND1 IMPORTING ISO_CODE = LV_ISO_LAND EXCEPTIONS NOT_FOUND = 1.
TELECOMMUNICATION_NUMBER_CHECK CALL FUNCTION 'TELECOMMUNICATION_NUMBER_CHECK' EXPORTING COUNTRY = LV_COUNTRY "jgtsadr-land1 NUMBER = TELEFAX_NUMMER SERVICE = 'TELEFAX' EXCEPTIONS SERVER_NOT_FOUND = 0 NUMBER_NOT_LEGAL = 4 OTHERS = 2.
TELECOMMUNICATION_NUMBER_CHECK CALL FUNCTION 'TELECOMMUNICATION_NUMBER_CHECK' EXPORTING COUNTRY = JGTSADR-LAND1 NUMBER = JGTSADR-TELX1 SERVICE = 'TELEX' EXCEPTIONS SERVER_NOT_FOUND = 0 NUMBER_NOT_LEGAL = 4 OTHERS = 2.
TELECOMMUNICATION_NUMBER_CHECK CALL FUNCTION 'TELECOMMUNICATION_NUMBER_CHECK' EXPORTING COUNTRY = JGTSADR-LAND1 NUMBER = JGTSADR-TELTX SERVICE = 'TELETEX' EXCEPTIONS SERVER_NOT_FOUND = 0 NUMBER_NOT_LEGAL = 4 OTHERS = 2.
SX_INTERNET_ADDRESS_TO_NORMAL CALL FUNCTION 'SX_INTERNET_ADDRESS_TO_NORMAL' EXPORTING ADDRESS_UNSTRUCT = LS_ADDRESS EXCEPTIONS ERROR_ADDRESS_TYPE = 1 ERROR_ADDRESS = 2 ERROR_GROUP_ADDRESS = 3 OTHERS = 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.