FICLPROT 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 FICLPROT into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CXLP1 - Display Archived Audit Trail
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: PA_BUNIT = D Consolidation unit
Selection Text: PA_CACTI = D Task
Selection Text: PA_DIMEN = D Dimension
Selection Text: PA_ITCLG = D Cons chart of accounts
Selection Text: PA_PERID = D Period
Selection Text: PA_RLDNR = D Ledger
Selection Text: PA_RVERS = D Version
Selection Text: PA_RYEAR = D Fiscal year
Title: Display Archived Audit Trail
Text Symbol: B01 = Global parameters
Text Symbol: B02 = List selection
Text Symbol: BS0 = Items already exist
Text Symbol: BS1 = Overwrite these?
Text Symbol: BS2 = Item master data already exists
Text Symbol: BS3 = OK
Text Symbol: BS4 = Cancel
INCLUDE FICLPROS.
INCLUDE SAPFF20B_CL_GP.
INCLUDE SAPFF20B_CL_TFBASE.
INCLUDE SAPFF20B_CL_TF189_2.
No SAP DATABASE tables are accessed within this REPORT code!
FCLP_LIST_BUFFER_IMPORT CALL FUNCTION 'FCLP_LIST_BUFFER_IMPORT' EXPORTING e_mcdxid = ld_mcdxid e_uzeit = tf080-time e_datum = tf080-datum e_protid = tf080-protid EXCEPTIONS exc_failure = 1 OTHERS = 2.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING e_id = 'CACTT' e_dimen = pa_dimen e_congr = pa_bunit e_rvers = pa_rvers e_cactt = tf540-cactt e_cacti = pa_cacti e_actvt = '03'.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING e_id = 'CACTT' e_dimen = pa_dimen e_bunit = pa_bunit e_rvers = pa_rvers e_cactt = tf540-cactt e_cacti = pa_cacti e_actvt = '03'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.