SAP Reports / Programs

CA_TAXLOG SAP ABAP Report - Tax-Relevant Data Accesses







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT CA_TAXLOG. "Basic submit
SUBMIT CA_TAXLOG AND RETURN. "Return to original report after report execution complete
SUBMIT CA_TAXLOG VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT CA_TAXLOG

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name CA_TAXLOG or its description.