RAAPPLOG 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 RAAPPLOG 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: Routines for Writing an Application Log for FI-AA
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
APPL_LOG_INIT CALL FUNCTION 'APPL_LOG_INIT' EXPORTING OBJECT = CON_APP-OBJECT SUBOBJECT = V_SUBOBJ.
APPL_LOG_WRITE_HEADER CALL FUNCTION 'APPL_LOG_WRITE_HEADER' EXPORTING HEADER = L_HEADER.
APPL_LOG_WRITE_DB CALL FUNCTION 'APPL_LOG_WRITE_DB' EXPORTING OBJECT = CON_APP-OBJECT SUBOBJECT = V_SUBOBJ TABLES OBJECT_WITH_LOGNUMBER = L_DUMMY.
APPL_LOG_WRITE_MESSAGES CALL FUNCTION 'APPL_LOG_WRITE_MESSAGES' EXPORTING OBJECT = CON_APP-OBJECT SUBOBJECT = V_SUBOBJ UPDATE_OR_INSERT = 'U' TABLES MESSAGES = MSG.
SAVE_LIST CALL FUNCTION 'SAVE_LIST' EXPORTING LIST_INDEX = SY-LSIND TABLES LISTOBJECT = LIST 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.