SAP CELL_PARAMETER_DISPLAY Function Module for









CELL_PARAMETER_DISPLAY is a standard cell parameter display 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 cell parameter display FM, simply by entering the name CELL_PARAMETER_DISPLAY into the relevant SAP transaction such as SE37 or SE38.

Function Group: KYRE
Program Name: SAPLKYRE
Main Program: SAPLKYRE
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CELL_PARAMETER_DISPLAY 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 'CELL_PARAMETER_DISPLAY'"
EXPORTING
I_SEIG_WA = "
* I_TS_CURRENCY = "
* I_TS_CURRENCY_KE = "
* I_TH_CURR_UNIT = "
* I_TH_CURR_UNIT_KE = "
* I_T_SEL = "
I_RKB1D = "
I_RKB1F = "
I_S_CURSOR = "
* I_TERM_TAB = "
I_FORMTAB_CELL = "
* I_T_SELOPT = "
* I_BTEXT = "
* I_TEXT_WA = "

TABLES
I_ZWERT = "
I_SEIG = "
I_KOPF = "
I_FIELD_TAB = "
I_FDEP_TAB = "
I_PRINT = "
I_FORM_TAB = "
I_T_VAR = "
.



IMPORTING Parameters details for CELL_PARAMETER_DISPLAY

I_SEIG_WA -

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

I_TS_CURRENCY -

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

I_TS_CURRENCY_KE -

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

I_TH_CURR_UNIT -

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

I_TH_CURR_UNIT_KE -

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

I_T_SEL -

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

I_RKB1D -

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

I_RKB1F -

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

I_S_CURSOR -

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

I_TERM_TAB -

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

I_FORMTAB_CELL -

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

I_T_SELOPT -

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

I_BTEXT -

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

I_TEXT_WA -

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

TABLES Parameters details for CELL_PARAMETER_DISPLAY

I_ZWERT -

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

I_SEIG -

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

I_KOPF -

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

I_FIELD_TAB -

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

I_FDEP_TAB -

Data type: CDIDEP
Optional: No
Call by Reference: Yes

I_PRINT -

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

I_FORM_TAB -

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

I_T_VAR -

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

Copy and paste ABAP code example for CELL_PARAMETER_DISPLAY 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_zwert  TYPE STANDARD TABLE OF RKD_T_ZWERT, "   
lv_i_seig_wa  TYPE RKD_S_SEIG, "   
lv_i_ts_currency  TYPE CFB_TS_CURRENCY, "   
lv_i_ts_currency_ke  TYPE CFB_TS_CURRENCY_KE, "   
lv_i_th_curr_unit  TYPE CFB_TH_CURR, "   
lv_i_th_curr_unit_ke  TYPE CFB_TH_CURR_KE, "   
lv_i_t_sel  TYPE RKD_T_SEL, "   
lt_i_seig  TYPE STANDARD TABLE OF RKD_T_SEIG, "   
lv_i_rkb1d  TYPE RKB1D, "   
lt_i_kopf  TYPE STANDARD TABLE OF RKD6_T_KOPF, "   
lv_i_rkb1f  TYPE RKB1F, "   
lv_i_s_cursor  TYPE RKD10_S_POS, "   
lt_i_field_tab  TYPE STANDARD TABLE OF RKD_T_FIELD, "   
lt_i_fdep_tab  TYPE STANDARD TABLE OF CDIDEP, "   
lv_i_term_tab  TYPE RKD10_T_TERM, "   
lt_i_print  TYPE STANDARD TABLE OF RKD_T_PRINT, "   
lv_i_formtab_cell  TYPE RKD_T_FORM, "   
lt_i_form_tab  TYPE STANDARD TABLE OF RKD_T_FORM, "   
lv_i_t_selopt  TYPE RKD0_T_VRANGE, "   
lv_i_btext  TYPE RKD6_S_BTEXT, "   
lt_i_t_var  TYPE STANDARD TABLE OF RKD_T_VAR, "   
lv_i_text_wa  TYPE EIS_DATATX. "   

  CALL FUNCTION 'CELL_PARAMETER_DISPLAY'  "
    EXPORTING
         I_SEIG_WA = lv_i_seig_wa
         I_TS_CURRENCY = lv_i_ts_currency
         I_TS_CURRENCY_KE = lv_i_ts_currency_ke
         I_TH_CURR_UNIT = lv_i_th_curr_unit
         I_TH_CURR_UNIT_KE = lv_i_th_curr_unit_ke
         I_T_SEL = lv_i_t_sel
         I_RKB1D = lv_i_rkb1d
         I_RKB1F = lv_i_rkb1f
         I_S_CURSOR = lv_i_s_cursor
         I_TERM_TAB = lv_i_term_tab
         I_FORMTAB_CELL = lv_i_formtab_cell
         I_T_SELOPT = lv_i_t_selopt
         I_BTEXT = lv_i_btext
         I_TEXT_WA = lv_i_text_wa
    TABLES
         I_ZWERT = lt_i_zwert
         I_SEIG = lt_i_seig
         I_KOPF = lt_i_kopf
         I_FIELD_TAB = lt_i_field_tab
         I_FDEP_TAB = lt_i_fdep_tab
         I_PRINT = lt_i_print
         I_FORM_TAB = lt_i_form_tab
         I_T_VAR = lt_i_t_var
. " CELL_PARAMETER_DISPLAY




ABAP code using 7.40 inline data declarations to call FM CELL_PARAMETER_DISPLAY

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!