SAP RKE_READ_COST_CE4_CE1_CE2_OPEN Function Module for
RKE_READ_COST_CE4_CE1_CE2_OPEN is a standard rke read cost ce4 ce1 ce2 open 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 rke read cost ce4 ce1 ce2 open FM, simply by entering the name RKE_READ_COST_CE4_CE1_CE2_OPEN into the relevant SAP transaction such as SE37 or SE38.
Function Group: KED1_READ_COST
Program Name: SAPLKED1_READ_COST
Main Program:
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RKE_READ_COST_CE4_CE1_CE2_OPEN 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 'RKE_READ_COST_CE4_CE1_CE2_OPEN'".
EXPORTING
I_ERKRS = "
I_T_SEL = "
I_T_SF = "
* I_T_ORDER_BY = "
* I_DB_AGGREGATION = 'X' "
* I_WITH_HOLD = ' ' "
* I_FILTER_PALEDGER_VRGAR = ' ' "
IMPORTING
E_HANDLE = "
IMPORTING Parameters details for RKE_READ_COST_CE4_CE1_CE2_OPEN
I_ERKRS -
Data type: ERKRSOptional: No
Call by Reference: No ( called with pass by value option)
I_T_SEL -
Data type: KED1_T_SELOptional: No
Call by Reference: No ( called with pass by value option)
I_T_SF -
Data type: KED1_T_SFOptional: No
Call by Reference: No ( called with pass by value option)
I_T_ORDER_BY -
Data type: KED1_T_ORDER_BYOptional: Yes
Call by Reference: No ( called with pass by value option)
I_DB_AGGREGATION -
Data type: FLAGDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_WITH_HOLD -
Data type: FLAGDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FILTER_PALEDGER_VRGAR -
Data type: FLAGDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for RKE_READ_COST_CE4_CE1_CE2_OPEN
E_HANDLE -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RKE_READ_COST_CE4_CE1_CE2_OPEN 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_erkrs | TYPE ERKRS, " | |||
| lv_e_handle | TYPE I, " | |||
| lv_i_t_sel | TYPE KED1_T_SEL, " | |||
| lv_i_t_sf | TYPE KED1_T_SF, " | |||
| lv_i_t_order_by | TYPE KED1_T_ORDER_BY, " | |||
| lv_i_db_aggregation | TYPE FLAG, " 'X' | |||
| lv_i_with_hold | TYPE FLAG, " ' ' | |||
| lv_i_filter_paledger_vrgar | TYPE FLAG. " ' ' |
|   CALL FUNCTION 'RKE_READ_COST_CE4_CE1_CE2_OPEN' " |
| EXPORTING | ||
| I_ERKRS | = lv_i_erkrs | |
| I_T_SEL | = lv_i_t_sel | |
| I_T_SF | = lv_i_t_sf | |
| I_T_ORDER_BY | = lv_i_t_order_by | |
| I_DB_AGGREGATION | = lv_i_db_aggregation | |
| I_WITH_HOLD | = lv_i_with_hold | |
| I_FILTER_PALEDGER_VRGAR | = lv_i_filter_paledger_vrgar | |
| IMPORTING | ||
| E_HANDLE | = lv_e_handle | |
| . " RKE_READ_COST_CE4_CE1_CE2_OPEN | ||
ABAP code using 7.40 inline data declarations to call FM RKE_READ_COST_CE4_CE1_CE2_OPEN
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_i_db_aggregation) | = 'X'. | |||
| DATA(ld_i_with_hold) | = ' '. | |||
| DATA(ld_i_filter_paledger_vrgar) | = ' '. | |||
Search for further information about these or an SAP related objects