SAP OPEN_FI_PERFORM_00001440_E Function Module for









OPEN_FI_PERFORM_00001440_E is a standard open fi perform 00001440 e SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 open fi perform 00001440 e FM, simply by entering the name OPEN_FI_PERFORM_00001440_E into the relevant SAP transaction such as SE37 or SE38.

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



Function OPEN_FI_PERFORM_00001440_E 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 'OPEN_FI_PERFORM_00001440_E'"
EXPORTING
I_LFA1 = "
I_LFB1 = "
I_LFA1_OLD = "
I_LFB1_OLD = "
I_LFM1 = "Purchasing Organization

TABLES
T_XLFBK = "Bank Details (new
* T_YLFLR = "
* T_XLFM2 = "
* T_YLFM2 = "
* T_XWYT1 = "
* T_YWYT1 = "
* T_XWYT1T = "
* T_YWYT1T = "
* T_XWYT3 = "Partner Functions (new)
* T_YWYT3 = "Partner Functions (old)
* T_XLFAT = "
T_XLFB5 = "Dunning Data (new)
* T_XLFBW = "
* T_YLFAT = "
* T_YLFBW = "
T_YLFBK = "Bank Details (old)
T_YLFB5 = "Dunning Data (old)
T_XLFZA = "
T_YLFZA = "
* T_XLFAS = "
* T_YLFAS = "
* T_XLFLR = "
.



IMPORTING Parameters details for OPEN_FI_PERFORM_00001440_E

I_LFA1 -

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

I_LFB1 -

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

I_LFA1_OLD -

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

I_LFB1_OLD -

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

I_LFM1 - Purchasing Organization

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

TABLES Parameters details for OPEN_FI_PERFORM_00001440_E

T_XLFBK - Bank Details (new

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

T_YLFLR -

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

T_XLFM2 -

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

T_YLFM2 -

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

T_XWYT1 -

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

T_YWYT1 -

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

T_XWYT1T -

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

T_YWYT1T -

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

T_XWYT3 - Partner Functions (new)

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

T_YWYT3 - Partner Functions (old)

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

T_XLFAT -

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

T_XLFB5 - Dunning Data (new)

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

T_XLFBW -

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

T_YLFAT -

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

T_YLFBW -

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

T_YLFBK - Bank Details (old)

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

T_YLFB5 - Dunning Data (old)

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

T_XLFZA -

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

T_YLFZA -

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

T_XLFAS -

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

T_YLFAS -

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

T_XLFLR -

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

Copy and paste ABAP code example for OPEN_FI_PERFORM_00001440_E 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_lfa1  TYPE LFA1, "   
lt_t_xlfbk  TYPE STANDARD TABLE OF FLFBK, "   
lt_t_ylflr  TYPE STANDARD TABLE OF FLFLR, "   
lt_t_xlfm2  TYPE STANDARD TABLE OF FLFM2, "   
lt_t_ylfm2  TYPE STANDARD TABLE OF FLFM2, "   
lt_t_xwyt1  TYPE STANDARD TABLE OF FWYT1, "   
lt_t_ywyt1  TYPE STANDARD TABLE OF FWYT1, "   
lt_t_xwyt1t  TYPE STANDARD TABLE OF FWYT1T, "   
lt_t_ywyt1t  TYPE STANDARD TABLE OF FWYT1T, "   
lt_t_xwyt3  TYPE STANDARD TABLE OF FWYT3, "   
lt_t_ywyt3  TYPE STANDARD TABLE OF FWYT3, "   
lt_t_xlfat  TYPE STANDARD TABLE OF FLFAT, "   
lv_i_lfb1  TYPE LFB1, "   
lt_t_xlfb5  TYPE STANDARD TABLE OF FLFB5, "   
lt_t_xlfbw  TYPE STANDARD TABLE OF FLFBW, "   
lt_t_ylfat  TYPE STANDARD TABLE OF FLFAT, "   
lt_t_ylfbw  TYPE STANDARD TABLE OF FLFBW, "   
lt_t_ylfbk  TYPE STANDARD TABLE OF FLFBK, "   
lv_i_lfa1_old  TYPE LFA1, "   
lt_t_ylfb5  TYPE STANDARD TABLE OF FLFB5, "   
lv_i_lfb1_old  TYPE LFB1, "   
lv_i_lfm1  TYPE LFM1, "   
lt_t_xlfza  TYPE STANDARD TABLE OF FLFZA, "   
lt_t_ylfza  TYPE STANDARD TABLE OF FLFZA, "   
lt_t_xlfas  TYPE STANDARD TABLE OF FLFAS, "   
lt_t_ylfas  TYPE STANDARD TABLE OF FLFAS, "   
lt_t_xlflr  TYPE STANDARD TABLE OF FLFLR. "   

  CALL FUNCTION 'OPEN_FI_PERFORM_00001440_E'  "
    EXPORTING
         I_LFA1 = lv_i_lfa1
         I_LFB1 = lv_i_lfb1
         I_LFA1_OLD = lv_i_lfa1_old
         I_LFB1_OLD = lv_i_lfb1_old
         I_LFM1 = lv_i_lfm1
    TABLES
         T_XLFBK = lt_t_xlfbk
         T_YLFLR = lt_t_ylflr
         T_XLFM2 = lt_t_xlfm2
         T_YLFM2 = lt_t_ylfm2
         T_XWYT1 = lt_t_xwyt1
         T_YWYT1 = lt_t_ywyt1
         T_XWYT1T = lt_t_xwyt1t
         T_YWYT1T = lt_t_ywyt1t
         T_XWYT3 = lt_t_xwyt3
         T_YWYT3 = lt_t_ywyt3
         T_XLFAT = lt_t_xlfat
         T_XLFB5 = lt_t_xlfb5
         T_XLFBW = lt_t_xlfbw
         T_YLFAT = lt_t_ylfat
         T_YLFBW = lt_t_ylfbw
         T_YLFBK = lt_t_ylfbk
         T_YLFB5 = lt_t_ylfb5
         T_XLFZA = lt_t_xlfza
         T_YLFZA = lt_t_ylfza
         T_XLFAS = lt_t_xlfas
         T_YLFAS = lt_t_ylfas
         T_XLFLR = lt_t_xlflr
. " OPEN_FI_PERFORM_00001440_E




ABAP code using 7.40 inline data declarations to call FM OPEN_FI_PERFORM_00001440_E

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!