SAP OPEN_FI_PERFORM_00004000_E Function Module for
OPEN_FI_PERFORM_00004000_E is a standard open fi perform 00004000 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 00004000 e FM, simply by entering the name OPEN_FI_PERFORM_00004000_E into the relevant SAP transaction such as SE37 or SE38.
Function Group: CLOPFI
Program Name: SAPLCLOPFI
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OPEN_FI_PERFORM_00004000_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_00004000_E'".
EXPORTING
I_ACTIVITY_TYPE = "Change Type (U, I, E, D)
TABLES
* I_CHARACT_TAB = "
* I_CHARACT_DESCR_TAB = "
* I_VALUE_TAB = "Allowed Values
* I_VALUE_DESCR_TAB = "Characteristic Value Descriptions
* I_RESTRICTIONS_TAB = "
* I_REFERENCES_TAB = "
* I_ECM_NO = "Engineering Change Management Help Structure
IMPORTING Parameters details for OPEN_FI_PERFORM_00004000_E
I_ACTIVITY_TYPE - Change Type (U, I, E, D)
Data type: CDPOS-CHNGINDOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for OPEN_FI_PERFORM_00004000_E
I_CHARACT_TAB -
Data type: CABNOptional: Yes
Call by Reference: No ( called with pass by value option)
I_CHARACT_DESCR_TAB -
Data type: CABNTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_VALUE_TAB - Allowed Values
Data type: CAWNOptional: Yes
Call by Reference: No ( called with pass by value option)
I_VALUE_DESCR_TAB - Characteristic Value Descriptions
Data type: CAWNTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RESTRICTIONS_TAB -
Data type: TCMEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_REFERENCES_TAB -
Data type: CABNZOptional: Yes
Call by Reference: No ( called with pass by value option)
I_ECM_NO - Engineering Change Management Help Structure
Data type: RCTAEOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for OPEN_FI_PERFORM_00004000_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: | ||||
| lt_i_charact_tab | TYPE STANDARD TABLE OF CABN, " | |||
| lv_i_activity_type | TYPE CDPOS-CHNGIND, " | |||
| lt_i_charact_descr_tab | TYPE STANDARD TABLE OF CABNT, " | |||
| lt_i_value_tab | TYPE STANDARD TABLE OF CAWN, " | |||
| lt_i_value_descr_tab | TYPE STANDARD TABLE OF CAWNT, " | |||
| lt_i_restrictions_tab | TYPE STANDARD TABLE OF TCME, " | |||
| lt_i_references_tab | TYPE STANDARD TABLE OF CABNZ, " | |||
| lt_i_ecm_no | TYPE STANDARD TABLE OF RCTAE. " |
|   CALL FUNCTION 'OPEN_FI_PERFORM_00004000_E' " |
| EXPORTING | ||
| I_ACTIVITY_TYPE | = lv_i_activity_type | |
| TABLES | ||
| I_CHARACT_TAB | = lt_i_charact_tab | |
| I_CHARACT_DESCR_TAB | = lt_i_charact_descr_tab | |
| I_VALUE_TAB | = lt_i_value_tab | |
| I_VALUE_DESCR_TAB | = lt_i_value_descr_tab | |
| I_RESTRICTIONS_TAB | = lt_i_restrictions_tab | |
| I_REFERENCES_TAB | = lt_i_references_tab | |
| I_ECM_NO | = lt_i_ecm_no | |
| . " OPEN_FI_PERFORM_00004000_E | ||
ABAP code using 7.40 inline data declarations to call FM OPEN_FI_PERFORM_00004000_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.| "SELECT single CHNGIND FROM CDPOS INTO @DATA(ld_i_activity_type). | ||||
Search for further information about these or an SAP related objects