SAP FKK_POPUP_LIST_SEARCH Function Module for









FKK_POPUP_LIST_SEARCH is a standard fkk popup list search 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 fkk popup list search FM, simply by entering the name FKK_POPUP_LIST_SEARCH into the relevant SAP transaction such as SE37 or SE38.

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



Function FKK_POPUP_LIST_SEARCH 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 'FKK_POPUP_LIST_SEARCH'"
EXPORTING
I_EVENT = "
* I_XODER = ' ' "
* I_WAERS = '2' "
* I_XVALU = ' ' "
* I_XCORR = ' ' "
* I_XUSSL = ' ' "
* I_XSELK = ' ' "
* I_XODER_FUN = ' ' "
I_TABNAME = "Table Name
* I_XABSO_FUN = ' ' "

IMPORTING
E_XODER = "
E_XABSO = "

TABLES
T_SEFTAB = "
T_SELTAB = "

EXCEPTIONS
NOT_FOUND_IN_TABLE = 1
.



IMPORTING Parameters details for FKK_POPUP_LIST_SEARCH

I_EVENT -

Data type: RFKL0-EVENT
Optional: No
Call by Reference: No ( called with pass by value option)

I_XODER -

Data type: RFKL0-XODER
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_WAERS -

Data type: RFKL0-CUKWT
Default: '2'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_XVALU -

Data type: RFKL0-XVALU
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_XCORR -

Data type: RFKL0-XCORR
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_XUSSL -

Data type: RFKL0-XUSSL
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_XSELK -

Data type: RFKL0-XSELK
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_XODER_FUN -

Data type: RFKL0-XODER_FUN
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TABNAME - Table Name

Data type: RFKL0-TABNAME
Optional: No
Call by Reference: No ( called with pass by value option)

I_XABSO_FUN -

Data type: RFKL0-XABSO_FUN
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FKK_POPUP_LIST_SEARCH

E_XODER -

Data type: RFKL0-XODER
Optional: No
Call by Reference: No ( called with pass by value option)

E_XABSO -

Data type: RFKL0-XABSO
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for FKK_POPUP_LIST_SEARCH

T_SEFTAB -

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

T_SELTAB -

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

EXCEPTIONS details

NOT_FOUND_IN_TABLE -

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

Copy and paste ABAP code example for FKK_POPUP_LIST_SEARCH 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_e_xoder  TYPE RFKL0-XODER, "   
lv_i_event  TYPE RFKL0-EVENT, "   
lt_t_seftab  TYPE STANDARD TABLE OF FKL0_SEF, "   
lv_not_found_in_table  TYPE FKL0_SEF, "   
lv_i_xoder  TYPE RFKL0-XODER, "   SPACE
lv_e_xabso  TYPE RFKL0-XABSO, "   
lv_i_waers  TYPE RFKL0-CUKWT, "   '2'
lt_t_seltab  TYPE STANDARD TABLE OF FKL0_SEL, "   
lv_i_xvalu  TYPE RFKL0-XVALU, "   SPACE
lv_i_xcorr  TYPE RFKL0-XCORR, "   SPACE
lv_i_xussl  TYPE RFKL0-XUSSL, "   SPACE
lv_i_xselk  TYPE RFKL0-XSELK, "   SPACE
lv_i_xoder_fun  TYPE RFKL0-XODER_FUN, "   SPACE
lv_i_tabname  TYPE RFKL0-TABNAME, "   
lv_i_xabso_fun  TYPE RFKL0-XABSO_FUN. "   SPACE

  CALL FUNCTION 'FKK_POPUP_LIST_SEARCH'  "
    EXPORTING
         I_EVENT = lv_i_event
         I_XODER = lv_i_xoder
         I_WAERS = lv_i_waers
         I_XVALU = lv_i_xvalu
         I_XCORR = lv_i_xcorr
         I_XUSSL = lv_i_xussl
         I_XSELK = lv_i_xselk
         I_XODER_FUN = lv_i_xoder_fun
         I_TABNAME = lv_i_tabname
         I_XABSO_FUN = lv_i_xabso_fun
    IMPORTING
         E_XODER = lv_e_xoder
         E_XABSO = lv_e_xabso
    TABLES
         T_SEFTAB = lt_t_seftab
         T_SELTAB = lt_t_seltab
    EXCEPTIONS
        NOT_FOUND_IN_TABLE = 1
. " FKK_POPUP_LIST_SEARCH




ABAP code using 7.40 inline data declarations to call FM FKK_POPUP_LIST_SEARCH

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 XODER FROM RFKL0 INTO @DATA(ld_e_xoder).
 
"SELECT single EVENT FROM RFKL0 INTO @DATA(ld_i_event).
 
 
 
"SELECT single XODER FROM RFKL0 INTO @DATA(ld_i_xoder).
DATA(ld_i_xoder) = ' '.
 
"SELECT single XABSO FROM RFKL0 INTO @DATA(ld_e_xabso).
 
"SELECT single CUKWT FROM RFKL0 INTO @DATA(ld_i_waers).
DATA(ld_i_waers) = '2'.
 
 
"SELECT single XVALU FROM RFKL0 INTO @DATA(ld_i_xvalu).
DATA(ld_i_xvalu) = ' '.
 
"SELECT single XCORR FROM RFKL0 INTO @DATA(ld_i_xcorr).
DATA(ld_i_xcorr) = ' '.
 
"SELECT single XUSSL FROM RFKL0 INTO @DATA(ld_i_xussl).
DATA(ld_i_xussl) = ' '.
 
"SELECT single XSELK FROM RFKL0 INTO @DATA(ld_i_xselk).
DATA(ld_i_xselk) = ' '.
 
"SELECT single XODER_FUN FROM RFKL0 INTO @DATA(ld_i_xoder_fun).
DATA(ld_i_xoder_fun) = ' '.
 
"SELECT single TABNAME FROM RFKL0 INTO @DATA(ld_i_tabname).
 
"SELECT single XABSO_FUN FROM RFKL0 INTO @DATA(ld_i_xabso_fun).
DATA(ld_i_xabso_fun) = ' '.
 


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!