SAP EXIT_SAPLFCIN_200 Function Module for Integration: User Exit for Definition of the Data Stream on Rollup









EXIT_SAPLFCIN_200 is a standard exit saplfcin 200 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Integration: User Exit for Definition of the Data Stream on Rollup processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for exit saplfcin 200 FM, simply by entering the name EXIT_SAPLFCIN_200 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XC01
Program Name: SAPLXC01
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_SAPLFCIN_200 pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'EXIT_SAPLFCIN_200'"Integration: User Exit for Definition of the Data Stream on Rollup
EXPORTING
I_ROLLUP = "Name of the Rollup to be executed

IMPORTING
E_A_TFIN000 = "Relevant Data Stream for Rollup

TABLES
I_T_TFIN000 = "Active Data Streams Table
I_T_RA_DIMEN = "Ranges-Table for Dimension from Reset-Set
I_T_RA_ITCLG = "Ranges-Table for Cons Chart from Reset-Set
I_T_RA_RVERS = "Ranges-Table for Version from Reset-set
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
FC_ACCOUNT_TO_ITEM_MAP
FC_AUTHCHECK_INTEGRATION
FC_BUNITS_PARENTS_GET
FC_BUNIT_DATATRANS_GET
FC_BUNIT_INTEGRATION_PROP
FC_CLIENT_FOR_LOGSYS_GET
FC_CURRENCY_CONVERT_INTERFACE
FC_CUST_EXIT_ORGUN_FLDNAMES
FC_CUST_EXIT_PERIV_CONS
FC_CUST_EXIT_SITEM_SFLDNAMES
FC_DIMEN_INTEGRATION_CHECK
FC_DOCUMENT_ADDINFO_COLLECT
FC_DOCUMENT_DATASTREAMS_CHECK
FC_DOCUMENT_EXISTENCE_CHECK
FC_DOCUMENT_INTERFACE_DISPLAY
FC_DOCUMENT_INTERFACE_POST1
FC_DOCUMENT_INTERFACE_PREREV1
FC_DOCUMENT_INTERFACE_PROJECT1
FC_DOCUMENT_INTERFACE_RECORD
FC_DOCUMENT_INTERFACE_REVERSE1
FC_ECCS_ITEM_MASTER_CHECK
FC_ECCS_MASTER_DATA_UPDATE
FC_ECCS_ORGUNITS_DECODE
FC_ECCS_ORGUNITS_ENCODE
FC_ECMC_VALIDATE
FC_ENCODING_INFO_READ
FC_ENCODING_RULES_CHECK
FC_EURO_RECONCILE_1
FC_EXTRACT_COMPCODES_ASSIGN
FC_EXTRACT_TO_ECMC_CONVERT
FC_GET_INFORMATION_BA
FC_GET_INFORMATION_PCA
FC_GLT0_GLT3_COMPARE
FC_GLT3_TO_EXTRACT_CONVERT
FC_GROUP_ACCOUNTS_ASSIGN_CHECK
FC_GSBER_RCOMP_ENRICH
FC_ITCLG_MAPINFO_READ
FC_ITEM_KSTAR_GET
FC_ORGUNITS_FLDNAMES_GET
FC_PARENTS_FROM_RWDOCLN_GET
FC_PERIVS_MAP
FC_POST_TFIN010
FC_RCOMP_BUKRS_LCURR_COMP
FC_RELEVANT_PERIOD_RANGE_GET
FC_ROLLUP_INITIAL_CHECK
FC_ROLLUP_STANDARD_EXITS
FC_RWBELEG_TO_MCDX_EXPORT
FC_SUBITEM_SENDFLDNAME_GET

IMPORTING Parameters details for EXIT_SAPLFCIN_200

I_ROLLUP - Name of the Rollup to be executed

Data type: FCIN_ROLLUP
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for EXIT_SAPLFCIN_200

E_A_TFIN000 - Relevant Data Stream for Rollup

Data type: FCIN_S_TFIN000
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for EXIT_SAPLFCIN_200

I_T_TFIN000 - Active Data Streams Table

Data type: FCIN_T_TFIN000
Optional: No
Call by Reference: No ( called with pass by value option)

I_T_RA_DIMEN - Ranges-Table for Dimension from Reset-Set

Data type: FC00_T_RA_DIMEN
Optional: No
Call by Reference: No ( called with pass by value option)

I_T_RA_ITCLG - Ranges-Table for Cons Chart from Reset-Set

Data type: FC00_T_RA_ITCLG
Optional: No
Call by Reference: No ( called with pass by value option)

I_T_RA_RVERS - Ranges-Table for Version from Reset-set

Data type: FC00_T_RA_RVERS
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for EXIT_SAPLFCIN_200 Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_i_rollup  TYPE FCIN_ROLLUP, "   
lv_e_a_tfin000  TYPE FCIN_S_TFIN000, "   
lt_i_t_tfin000  TYPE STANDARD TABLE OF FCIN_T_TFIN000, "   
lt_i_t_ra_dimen  TYPE STANDARD TABLE OF FC00_T_RA_DIMEN, "   
lt_i_t_ra_itclg  TYPE STANDARD TABLE OF FC00_T_RA_ITCLG, "   
lt_i_t_ra_rvers  TYPE STANDARD TABLE OF FC00_T_RA_RVERS. "   

  CALL FUNCTION 'EXIT_SAPLFCIN_200'  "Integration: User Exit for Definition of the Data Stream on Rollup
    EXPORTING
         I_ROLLUP = lv_i_rollup
    IMPORTING
         E_A_TFIN000 = lv_e_a_tfin000
    TABLES
         I_T_TFIN000 = lt_i_t_tfin000
         I_T_RA_DIMEN = lt_i_t_ra_dimen
         I_T_RA_ITCLG = lt_i_t_ra_itclg
         I_T_RA_RVERS = lt_i_t_ra_rvers
. " EXIT_SAPLFCIN_200




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLFCIN_200

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!