CONTEXT5 is a standard Executable ABAP Report 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 CONTEXT5 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.
Selection Text: P_ID = Module| Tab. | Context
Selection Text: P_SID = | Field| Field
Selection Text: P_STYPE = DEF | DEF | USE
Selection Text: P_TYPE = MOD | FLD | FLD
Title: Contexts: Display Analysis
INCLUDE CONTEXTI.
No SAP DATABASE tables are accessed within this REPORT code!
RS_TOOL_ACCESS CALL FUNCTION 'RS_TOOL_ACCESS' EXPORTING OPERATION = 'SHOW' OBJECT_NAME = P_SID OBJECT_TYPE = 'DT' EXCEPTIONS OTHERS = 1.
RS_TOOL_ACCESS CALL FUNCTION 'RS_TOOL_ACCESS' EXPORTING OPERATION = 'SHOW' OBJECT_NAME = P_SID OBJECT_TYPE = 'FF' EXCEPTIONS OTHERS = 1.
RS_TOOL_ACCESS CALL FUNCTION 'RS_TOOL_ACCESS' EXPORTING OPERATION = 'SHOW' ENCLOSING_OBJECT = P_ID OBJECT_NAME = P_SID OBJECT_TYPE = OBJECT_TYPE EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.