SAP FILA_HELP_SYS_CUS_TABS_EXPORT Function Module for NOTRANSL: Importiert CRM-Leasing-Vertragsdaten
FILA_HELP_SYS_CUS_TABS_EXPORT is a standard fila help sys cus tabs export SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Importiert CRM-Leasing-Vertragsdaten 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 fila help sys cus tabs export FM, simply by entering the name FILA_HELP_SYS_CUS_TABS_EXPORT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FILAHELP
Program Name: SAPLFILAHELP
Main Program: SAPLFILAHELP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function FILA_HELP_SYS_CUS_TABS_EXPORT 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 'FILA_HELP_SYS_CUS_TABS_EXPORT'"NOTRANSL: Importiert CRM-Leasing-Vertragsdaten.
EXPORTING
* ID_MANDT = SY-MANDT "Client
* ID_COMPONENT = "Application Component
TABLES
ET_TFILA_GF_000 = "Process Mapping for Processs from External Systems
ET_TFILA_GF_001ST = "Subprocesses
ET_TFILA_GF_003 = "Value IDs and their Determination
ET_TFILA_GF_003RB = "Values/Data Required by Method
ET_TFILA_GF_003RM = "Values/Data Required by Method
ET_TFILA_GF_100 = "Assignment of Derivations for Validations/Substitutions
ET_TFILA_GF_000M = "Processes
ET_TFILA_GF_000MT = "Process Texts
ET_TFILA_GF_000P = "Process Mapping for Processs from External Systems
ET_TFILA_GF_000PT = "Assignment Subprocess -> Processing Methods
ET_TFILA_GF_001 = "Assignment Process -> Subprocess
ET_TFILA_GF_001A = "SYST: Allowed Change Events
ET_TFILA_GF_001M = "Assignment Subprocess -> Processing Methods
ET_TFILA_GF_001S = "Subprocesses
IMPORTING Parameters details for FILA_HELP_SYS_CUS_TABS_EXPORT
ID_MANDT - Client
Data type: MANDTDefault: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)
ID_COMPONENT - Application Component
Data type: FILA_COMPONENTOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FILA_HELP_SYS_CUS_TABS_EXPORT
ET_TFILA_GF_000 - Process Mapping for Processs from External Systems
Data type: TFILA_GF_000Optional: No
Call by Reference: Yes
ET_TFILA_GF_001ST - Subprocesses
Data type: TFILA_GF_001STOptional: No
Call by Reference: Yes
ET_TFILA_GF_003 - Value IDs and their Determination
Data type: TFILA_GF_003Optional: No
Call by Reference: Yes
ET_TFILA_GF_003RB - Values/Data Required by Method
Data type: TFILA_GF_003RBOptional: No
Call by Reference: Yes
ET_TFILA_GF_003RM - Values/Data Required by Method
Data type: TFILA_GF_003RMOptional: No
Call by Reference: Yes
ET_TFILA_GF_100 - Assignment of Derivations for Validations/Substitutions
Data type: TFILA_GF_100Optional: No
Call by Reference: Yes
ET_TFILA_GF_000M - Processes
Data type: TFILA_GF_000MOptional: No
Call by Reference: Yes
ET_TFILA_GF_000MT - Process Texts
Data type: TFILA_GF_000MTOptional: No
Call by Reference: Yes
ET_TFILA_GF_000P - Process Mapping for Processs from External Systems
Data type: TFILA_GF_000POptional: No
Call by Reference: Yes
ET_TFILA_GF_000PT - Assignment Subprocess -> Processing Methods
Data type: TFILA_GF_000PTOptional: No
Call by Reference: Yes
ET_TFILA_GF_001 - Assignment Process -> Subprocess
Data type: TFILA_GF_001Optional: No
Call by Reference: Yes
ET_TFILA_GF_001A - SYST: Allowed Change Events
Data type: TFILA_GF_001AOptional: No
Call by Reference: Yes
ET_TFILA_GF_001M - Assignment Subprocess -> Processing Methods
Data type: TFILA_GF_001MOptional: No
Call by Reference: Yes
ET_TFILA_GF_001S - Subprocesses
Data type: TFILA_GF_001SOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FILA_HELP_SYS_CUS_TABS_EXPORT 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_id_mandt | TYPE MANDT, " SY-MANDT | |||
| lt_et_tfila_gf_000 | TYPE STANDARD TABLE OF TFILA_GF_000, " | |||
| lt_et_tfila_gf_001st | TYPE STANDARD TABLE OF TFILA_GF_001ST, " | |||
| lt_et_tfila_gf_003 | TYPE STANDARD TABLE OF TFILA_GF_003, " | |||
| lt_et_tfila_gf_003rb | TYPE STANDARD TABLE OF TFILA_GF_003RB, " | |||
| lt_et_tfila_gf_003rm | TYPE STANDARD TABLE OF TFILA_GF_003RM, " | |||
| lt_et_tfila_gf_100 | TYPE STANDARD TABLE OF TFILA_GF_100, " | |||
| lv_id_component | TYPE FILA_COMPONENT, " | |||
| lt_et_tfila_gf_000m | TYPE STANDARD TABLE OF TFILA_GF_000M, " | |||
| lt_et_tfila_gf_000mt | TYPE STANDARD TABLE OF TFILA_GF_000MT, " | |||
| lt_et_tfila_gf_000p | TYPE STANDARD TABLE OF TFILA_GF_000P, " | |||
| lt_et_tfila_gf_000pt | TYPE STANDARD TABLE OF TFILA_GF_000PT, " | |||
| lt_et_tfila_gf_001 | TYPE STANDARD TABLE OF TFILA_GF_001, " | |||
| lt_et_tfila_gf_001a | TYPE STANDARD TABLE OF TFILA_GF_001A, " | |||
| lt_et_tfila_gf_001m | TYPE STANDARD TABLE OF TFILA_GF_001M, " | |||
| lt_et_tfila_gf_001s | TYPE STANDARD TABLE OF TFILA_GF_001S. " |
|   CALL FUNCTION 'FILA_HELP_SYS_CUS_TABS_EXPORT' "NOTRANSL: Importiert CRM-Leasing-Vertragsdaten |
| EXPORTING | ||
| ID_MANDT | = lv_id_mandt | |
| ID_COMPONENT | = lv_id_component | |
| TABLES | ||
| ET_TFILA_GF_000 | = lt_et_tfila_gf_000 | |
| ET_TFILA_GF_001ST | = lt_et_tfila_gf_001st | |
| ET_TFILA_GF_003 | = lt_et_tfila_gf_003 | |
| ET_TFILA_GF_003RB | = lt_et_tfila_gf_003rb | |
| ET_TFILA_GF_003RM | = lt_et_tfila_gf_003rm | |
| ET_TFILA_GF_100 | = lt_et_tfila_gf_100 | |
| ET_TFILA_GF_000M | = lt_et_tfila_gf_000m | |
| ET_TFILA_GF_000MT | = lt_et_tfila_gf_000mt | |
| ET_TFILA_GF_000P | = lt_et_tfila_gf_000p | |
| ET_TFILA_GF_000PT | = lt_et_tfila_gf_000pt | |
| ET_TFILA_GF_001 | = lt_et_tfila_gf_001 | |
| ET_TFILA_GF_001A | = lt_et_tfila_gf_001a | |
| ET_TFILA_GF_001M | = lt_et_tfila_gf_001m | |
| ET_TFILA_GF_001S | = lt_et_tfila_gf_001s | |
| . " FILA_HELP_SYS_CUS_TABS_EXPORT | ||
ABAP code using 7.40 inline data declarations to call FM FILA_HELP_SYS_CUS_TABS_EXPORT
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.| DATA(ld_id_mandt) | = SY-MANDT. | |||
Search for further information about these or an SAP related objects