SAP FILA_BUS_TRANSACTION_RECEIVE Function Module for NOTRANSL: Übernahme eines Lease Accounting Geschäftsvorgangs









FILA_BUS_TRANSACTION_RECEIVE is a standard fila bus transaction receive 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: Übernahme eines Lease Accounting Geschäftsvorgangs 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 bus transaction receive FM, simply by entering the name FILA_BUS_TRANSACTION_RECEIVE 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): Remote-Enabled
Update:



Function FILA_BUS_TRANSACTION_RECEIVE 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_BUS_TRANSACTION_RECEIVE'"NOTRANSL: Übernahme eines Lease Accounting Geschäftsvorgangs
EXPORTING
IT_CONTRACT_HEADER = "Contract Header
IT_CONTRACT_ITEMS = "Contract Items
IT_CONDITIONS = "Contract Conditions
IT_BILLING = "Payment Plan
* IT_CONTRACT_CLASS = "Contract Classification
* IT_CONTRACT_PRODS = "Product Information
* IV_SYNC_MODE = "Synchronous Processing Mode

IMPORTING
ET_RETURN = "Return Table
.



IMPORTING Parameters details for FILA_BUS_TRANSACTION_RECEIVE

IT_CONTRACT_HEADER - Contract Header

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

IT_CONTRACT_ITEMS - Contract Items

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

IT_CONDITIONS - Contract Conditions

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

IT_BILLING - Payment Plan

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

IT_CONTRACT_CLASS - Contract Classification

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

IT_CONTRACT_PRODS - Product Information

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

IV_SYNC_MODE - Synchronous Processing Mode

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

EXPORTING Parameters details for FILA_BUS_TRANSACTION_RECEIVE

ET_RETURN - Return Table

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

Copy and paste ABAP code example for FILA_BUS_TRANSACTION_RECEIVE 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_et_return  TYPE BAPIRET2_T, "   
lv_it_contract_header  TYPE FILAGF_CONT_HEADER_TAB, "   
lv_it_contract_items  TYPE FILAGF_CONT_ITEM_TAB, "   
lv_it_conditions  TYPE FILAGF_CONDITION_TAB, "   
lv_it_billing  TYPE FILAGF_CONT_BILL_TAB, "   
lv_it_contract_class  TYPE FILAGF_CONT_CLASS_TAB, "   
lv_it_contract_prods  TYPE FILAGF_CONT_PROD_TAB, "   
lv_iv_sync_mode  TYPE FILA_SYNC_MODE. "   

  CALL FUNCTION 'FILA_BUS_TRANSACTION_RECEIVE'  "NOTRANSL: Übernahme eines Lease Accounting Geschäftsvorgangs
    EXPORTING
         IT_CONTRACT_HEADER = lv_it_contract_header
         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
         IV_SYNC_MODE = lv_iv_sync_mode
    IMPORTING
         ET_RETURN = lv_et_return
. " FILA_BUS_TRANSACTION_RECEIVE




ABAP code using 7.40 inline data declarations to call FM FILA_BUS_TRANSACTION_RECEIVE

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!