SAP FILA_ITEM_FIELDS_MAP_TERM Function Module for NOTRANSL: Feldmapping für einenLease Accounting Beendigungsvorgang
FILA_ITEM_FIELDS_MAP_TERM is a standard fila item fields map term 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: Feldmapping für einenLease Accounting Beendigungsvorgang 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 item fields map term FM, simply by entering the name FILA_ITEM_FIELDS_MAP_TERM into the relevant SAP transaction such as SE37 or SE38.
Function Group: FILA
Program Name: SAPLFILA
Main Program: SAPLFILA
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FILA_ITEM_FIELDS_MAP_TERM 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_ITEM_FIELDS_MAP_TERM'"NOTRANSL: Feldmapping für einenLease Accounting Beendigungsvorgang.
EXPORTING
IT_CONTRACT_ITEMS = "Contract Items
* IT_CONDITIONS = "Contract Conditions
* IT_BILLING = "Payment Plan
* IT_CONTRACT_CLASS = "UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
* IT_CONTRACT_PRODS = "Product Information
* ID_TIMESTAMP = "UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
CHANGING
CT_RETURN = "Return Table
TABLES
* ET_LAEITEM = "LAE: Contract Items
* ET_LAECOND = "Lease-Accounting-Relevant Conditions
* ET_LAEBILL = "Payment Plan
* ET_LAECLASS = "
* ET_LAEPROD = "Product Information
IT_LAELNK = "
IT_LAEHEADER = "
IT_LAEITEM = "LAE: Contract Items
IMPORTING Parameters details for FILA_ITEM_FIELDS_MAP_TERM
IT_CONTRACT_ITEMS - Contract Items
Data type: FILAGF_CONT_ITEM_TABOptional: No
Call by Reference: Yes
IT_CONDITIONS - Contract Conditions
Data type: FILAGF_CONDITION_TABOptional: Yes
Call by Reference: Yes
IT_BILLING - Payment Plan
Data type: FILAGF_CONT_BILL_TABOptional: Yes
Call by Reference: Yes
IT_CONTRACT_CLASS - UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
Data type: FILAGF_CONT_CLASS_TABOptional: Yes
Call by Reference: Yes
IT_CONTRACT_PRODS - Product Information
Data type: FILAGF_CONT_PROD_TABOptional: Yes
Call by Reference: Yes
ID_TIMESTAMP - UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
Data type: TIMESTAMPOptional: Yes
Call by Reference: Yes
CHANGING Parameters details for FILA_ITEM_FIELDS_MAP_TERM
CT_RETURN - Return Table
Data type: BAPIRET2_TOptional: No
Call by Reference: Yes
TABLES Parameters details for FILA_ITEM_FIELDS_MAP_TERM
ET_LAEITEM - LAE: Contract Items
Data type: LAE_CRM_ITEMSOptional: Yes
Call by Reference: Yes
ET_LAECOND - Lease-Accounting-Relevant Conditions
Data type: LAE_CRM_CONDSOptional: Yes
Call by Reference: Yes
ET_LAEBILL - Payment Plan
Data type: LAE_CRM_BILLPLANOptional: Yes
Call by Reference: Yes
ET_LAECLASS -
Data type: FILA_TB_LAE_CRM_CLASSOptional: Yes
Call by Reference: Yes
ET_LAEPROD - Product Information
Data type: LAE_CRM_PRODSOptional: Yes
Call by Reference: Yes
IT_LAELNK -
Data type: LAE_CRM_LNKOptional: No
Call by Reference: Yes
IT_LAEHEADER -
Data type: LAE_CRM_HEADEROptional: No
Call by Reference: Yes
IT_LAEITEM - LAE: Contract Items
Data type: LAE_CRM_ITEMSOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FILA_ITEM_FIELDS_MAP_TERM 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_ct_return | TYPE BAPIRET2_T, " | |||
| lt_et_laeitem | TYPE STANDARD TABLE OF LAE_CRM_ITEMS, " | |||
| lv_it_contract_items | TYPE FILAGF_CONT_ITEM_TAB, " | |||
| lt_et_laecond | TYPE STANDARD TABLE OF LAE_CRM_CONDS, " | |||
| lv_it_conditions | TYPE FILAGF_CONDITION_TAB, " | |||
| lt_et_laebill | TYPE STANDARD TABLE OF LAE_CRM_BILLPLAN, " | |||
| lv_it_billing | TYPE FILAGF_CONT_BILL_TAB, " | |||
| lt_et_laeclass | TYPE STANDARD TABLE OF FILA_TB_LAE_CRM_CLASS, " | |||
| lv_it_contract_class | TYPE FILAGF_CONT_CLASS_TAB, " | |||
| lt_et_laeprod | TYPE STANDARD TABLE OF LAE_CRM_PRODS, " | |||
| lv_it_contract_prods | TYPE FILAGF_CONT_PROD_TAB, " | |||
| lt_it_laelnk | TYPE STANDARD TABLE OF LAE_CRM_LNK, " | |||
| lv_id_timestamp | TYPE TIMESTAMP, " | |||
| lt_it_laeheader | TYPE STANDARD TABLE OF LAE_CRM_HEADER, " | |||
| lt_it_laeitem | TYPE STANDARD TABLE OF LAE_CRM_ITEMS. " |
|   CALL FUNCTION 'FILA_ITEM_FIELDS_MAP_TERM' "NOTRANSL: Feldmapping für einenLease Accounting Beendigungsvorgang |
| EXPORTING | ||
| IT_CONTRACT_ITEMS | = lv_it_contract_items | |
| IT_CONDITIONS | = lv_it_conditions | |
| IT_BILLING | = lv_it_billing | |
| IT_CONTRACT_CLASS | = lv_it_contract_class | |
| IT_CONTRACT_PRODS | = lv_it_contract_prods | |
| ID_TIMESTAMP | = lv_id_timestamp | |
| CHANGING | ||
| CT_RETURN | = lv_ct_return | |
| TABLES | ||
| ET_LAEITEM | = lt_et_laeitem | |
| ET_LAECOND | = lt_et_laecond | |
| ET_LAEBILL | = lt_et_laebill | |
| ET_LAECLASS | = lt_et_laeclass | |
| ET_LAEPROD | = lt_et_laeprod | |
| IT_LAELNK | = lt_it_laelnk | |
| IT_LAEHEADER | = lt_it_laeheader | |
| IT_LAEITEM | = lt_it_laeitem | |
| . " FILA_ITEM_FIELDS_MAP_TERM | ||
ABAP code using 7.40 inline data declarations to call FM FILA_ITEM_FIELDS_MAP_TERM
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