CA_TAXLOG 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 CA_TAXLOG 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_FROM_D = Start Date
Selection Text: P_FROM_T = Start Time
Selection Text: P_PROG = Program
Selection Text: P_TO_D = Finish Date
Selection Text: P_TO_T = End Time
Selection Text: P_TRAN = Transaction
Selection Text: P_USER = User
Title: Tax-Relevant Data Accesses
Text Symbol: 001 = Select.
Text Symbol: 002 = Time Restriction
Text Symbol: 003 = Log
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
APPL_LOG_READ_DB CALL FUNCTION 'APPL_LOG_READ_DB' EXPORTING OBJECT = 'ATAX' SUBOBJECT = '*' * EXTERNAL_NUMBER = ' ' DATE_FROM = P_FROM_D DATE_TO = P_TO_D TIME_FROM = P_FROM_T TIME_TO = P_TO_T * LOG_CLASS = '4'
PROGRAM_NAME = P_PROG TRANSACTION_CODE = P_TRAN USER_ID = P_USER * MODE = '+' * importing * number_of_logs = retcode TABLES HEADER_DATA = IT_BALHDR * HEADER_PARAMETERS = IT_BALHDRP * MESSAGE_PARAMETERS = IT_BALMP MESSAGES = IT_BALM
EXCEPTIONS OTHERS = 1.
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING it_fieldcat = gt_fieldcat[] I_Tabname_header = 'IT_BALHDR' i_tabname_item = 'IT_BALM' IS_KEYINFO = GS_KEYINFO IS_LAYOUT = GS_LAYOUT i_save = 'A' is_variant = ld_variant TABLES T_outtab_header = IT_BALHDR T_OUTTAB_item = IT_BALM.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
CA_TAXLOG - Tax-Relevant Data Accesses CA_TAXLOG - Tax-Relevant Data Accesses CA_SE16NCD_WRI - Archiving Change Documents SE16N: Write Program CA_SE16NCD_WRI - Archiving Change Documents SE16N: Write Program CA_SE16NCD_DEL - Archiving Flights: Deletion Program (Example ADK Archiving) CA_SE16NCD_DEL - Archiving Flights: Deletion Program (Example ADK Archiving)