CONTEXT3 is a standard Module pool for a dialog screen ABAP Program 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 CONTEXT3 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: Contexts: Checks
INCLUDE: CONTEXTI, CONTEXTJ.
INCLUDE: CONTEXTI, CONTEXTJ.
No SAP DATABASE tables are accessed within this REPORT code!
RS_CHARACTER_CHECK CALL FUNCTION 'RS_CHARACTER_CHECK' EXPORTING OBJECTNAME = CONTEXT_ID EXCEPTIONS INVALID_LENGTH = 1 DELIMITER_ERROR = 2 INVALID_CHARACTER = 3 OBJECTNAME_MISSING = 4 OTHERS = 5.
CONTEXT_SOURCE_CHECK CALL FUNCTION 'CONTEXT_SOURCE_CHECK' EXPORTING CONTEXT = CONTEXT APPEND = 'X' IMPORTING MESSAGES = MSGTAB EXCEPTIONS MSG_I = 1 MSG_W = 2 MSG_E = 3 OTHERS = 4.
RS_CORR_INSERT CALL FUNCTION 'RS_CORR_INSERT' EXPORTING OBJECT = P_CONTEXT_ID OBJECT_CLASS = 'CNTX' MODE = P_ACCESS_MODE GLOBAL_LOCK = 'X' MASTER_LANGUAGE = L_MA_LANGU KORRNUM = L_REQUEST DEVCLASS = L_DEVCLASS EXCEPTIONS CANCELLED = 1 PERMISSION_FAILURE = 2 UNKNOWN_OBJECTCLASS = 3 OTHERS = 4.
WB_TREE_ACTUALIZE CALL FUNCTION 'WB_TREE_ACTUALIZE' EXPORTING TREE_NAME = L_XPROG WITHOUT_TREE = 'X' IMPORTING SYNTAX_ERROR = L_SYNTAX_ERROR.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.