FICLINFC 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 FICLINFC 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: View cluster maintenance: User Exit Routines
Text Symbol: T01 = Company
Text Symbol: T02 = Business area
Text Symbol: T03 = Controlling area
Text Symbol: T04 = Profit center
Text Symbol: T06 = Rules for Allocation of New ID
Text Symbol: T07 = Assign G/L chart and Cons chart of accounts
Text Symbol: T08 = Data Streams
INCLUDE LSVCMCOD.
INCLUDE FICINC00.
No SAP DATABASE tables are accessed within this REPORT code!
FC_ENCODING_RULES_CHECK CALL FUNCTION 'FC_ENCODING_RULES_CHECK' EXPORTING I_MSG_INIT = 'X' I_ACTIONS_SKIP = CON_ACTIONS_SKIP IMPORTING E_ERROR = LD_FLG_ERR TABLES I_T_V_TFIN002 = IT_V_TFIN002_TOTAL I_T_V_TFIN001 = IT_V_TFIN001_TOTAL I_T_DD01L = IT_DD01L EXCEPTIONS ERRORS_OR_WARNINGS = 1 "wms34388 OTHERS = 2. "wms34388
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXPORTING OBJECT = TEXT-T06 SHOW_LINNO = ' ' EXCEPTIONS INCONSISTENT_RANGE = 1 NO_MESSAGES = 2 OTHERS = 3.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE' EXCEPTIONS OTHERS = 1.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING ARBGB = CON_ARBGB_INT MSGTY = CON_MSGTYP_ERR MSGV1 = LD_A_V_TFIN000_TOTAL-ITCLG TXTNR = '376' EXCEPTIONS OTHERS = 1.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXPORTING OBJECT = TEXT-T08 SHOW_LINNO = ' ' EXCEPTIONS INCONSISTENT_RANGE = 1 NO_MESSAGES = 2 OTHERS = 3.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE' EXCEPTIONS OTHERS = 1.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' "wms51454 EXPORTING "wms51454 ARBGB = CON_ARBGB_INT "wms51454 MSGTY = CON_MSGTYP_ERR "wms51454 MSGV1 = LD_A_V_TFIN200_TOTAL-KTOPL "wms51454 MSGV2 = LD_A_V_TFIN200_TOTAL-ITCLG "wms51454 TXTNR = '375' "wms51454 EXCEPTIONS "wms51454 OTHERS = 1. "wms51454
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXPORTING OBJECT = TEXT-T07 SHOW_LINNO = ' ' 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.