FICPSD00 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 FICPSD00 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: PA_TOPER = D Period
Selection Text: PA_TEST = D Test Run
Selection Text: PA_RYEAR = D Fiscal Year
Selection Text: PA_RVERS = D Version
Selection Text: PA_RLDNR = D Ledger
Selection Text: PA_ITCLG = D Cons Chart of Accounts
Selection Text: PA_FRPER = D Period
Selection Text: PA_DOCTY = D Document Type
Selection Text: PA_DIMEN = D Dimension
Title: Transfer Documents Between Periods of a Fiscal Year
Text Symbol: C02 = To
Text Symbol: C01 = From
Text Symbol: B03 = Technical Settings
Text Symbol: B02 = Transfer
Text Symbol: B01 = Settings
INCLUDE FICCON00.
INCLUDE FICINC00.
INCLUDE FICPSD0S.
No SAP DATABASE tables are accessed within this REPORT code!
FC_DOCUMENT_REFRESH call function 'FC_DOCUMENT_REFRESH' exporting e_dimen = i_dimen E_RLDNR = i_rldnr e_itclg = i_itclg e_rvers = i_rvers e_ryear = i_ryear e_perid = I_frper E_DOCTY = i_docty E_DOCCT = l_docct E_ACTION = FC05_CON_DR_ACTN-sel e_type = fc05_con_dr_type-cu ET_CU = lt_bunit IMPORTING IT_DOC = lt_doc IT_DOC_ND = lt_doc_nd IT_DOC_OP = lt_doc_op.
FC_DB_DOCUMENT_POST call function 'FC_DB_DOCUMENT_POST' EXPORTING E_UPDATE_TASK = space E_DOCUMENT = space changing ct_ecmca = lt_doc_ts_upd.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'CACTT' E_DIMEN = i_dimen * E_CONGR = '' * E_BUNIT = '' E_RVERS = i_rvers E_CACTT = ls_task-cactt E_CACTI = ls_task-cacti E_ACTVT = '16' E_ITCLG = i_itclg.
FC_GET_CACGR CALL FUNCTION 'FC_GET_CACGR' EXPORTING e_dimen = i_dimen e_rvers = i_rvers e_ryear = i_ryear e_perid = i_perid IMPORTING i_cacgr1 = l_acgr1 i_cacgr2 = l_acgr2.
FC_GET_VERSIONS CALL FUNCTION 'FC_GET_VERSIONS' EXPORTING E_RVERS = i_rvers E_IND_IPIVS = con_x importing I_IPIVS = l_ipivs.
FC_GET_VERSIONS CALL FUNCTION 'FC_GET_VERSIONS' EXPORTING E_RVERS = i_rvers E_IND_rclVS = con_x importing I_IPIVS = l_rclvs.
ENQUEUE_E_ECMCA CALL FUNCTION 'ENQUEUE_E_ECMCA' EXPORTING MODE_ECMCA = 'E' RCLNT = SY-MANDT _SCOPE = '2' EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2.
ENQUEUE_E_ECMCT CALL FUNCTION 'ENQUEUE_E_ECMCT' EXPORTING MODE_ECMCT = 'E' RCLNT = SY-MANDT RLDNR = i_rldnr RRCTY = '0' RVERS = i_rvers RYEAR = i_ryear EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2.
FC_TOTALS_SELECT CALL FUNCTION 'FC_TOTALS_SELECT' EXPORTING E_DATABASE = FC00_C_TS_DATABASE-DOCUMENTS IT_SEL = ct_sel IT_FIELDS = lt_fields E_KFIG_ALL = con_x IMPORTING IT_DATA = lt_doc_info.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.