SAP LXE_OBJ_SEARCH_TEXT_SE63 Function Module for Find by Objects
LXE_OBJ_SEARCH_TEXT_SE63 is a standard lxe obj search text se63 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Find by Objects processing and below is the pattern details for this FM, 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 lxe obj search text se63 FM, simply by entering the name LXE_OBJ_SEARCH_TEXT_SE63 into the relevant SAP transaction such as SE37 or SE38.
Function Group: LXE_OBJ_MAIN
Program Name: SAPLLXE_OBJ_MAIN
Main Program: SAPLLXE_OBJ_MAIN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LXE_OBJ_SEARCH_TEXT_SE63 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 'LXE_OBJ_SEARCH_TEXT_SE63'"Find by Objects.
EXPORTING
* T_LANG = '' "
* S_LANG = '' "
* T_TEXT = '*' "
* S_TEXT = '*' "
* T_NO_CASE = '' "
* S_NO_CASE = '' "
* CREATE_VIRT = 'X' "
IMPORTING
TOT_SEARCHED = "
TOT_FOUND = "
TABLES
IN_COLOB = "
* EX_COLOB = "
* EX_PCX_S1 = "
* EX_WRKOB = "
IMPORTING Parameters details for LXE_OBJ_SEARCH_TEXT_SE63
T_LANG -
Data type: LXEISOLANGDefault: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)
S_LANG -
Data type: LXEISOLANGDefault: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)
T_TEXT -
Data type: LXEUNITLINDefault: '*'
Optional: Yes
Call by Reference: Yes
S_TEXT -
Data type: LXEUNITLINDefault: '*'
Optional: Yes
Call by Reference: Yes
T_NO_CASE -
Data type: CHAR1Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)
S_NO_CASE -
Data type: CHAR1Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)
CREATE_VIRT -
Data type: CHAR1Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for LXE_OBJ_SEARCH_TEXT_SE63
TOT_SEARCHED -
Data type: IOptional: No
Call by Reference: Yes
TOT_FOUND -
Data type: IOptional: No
Call by Reference: Yes
TABLES Parameters details for LXE_OBJ_SEARCH_TEXT_SE63
IN_COLOB -
Data type: LXE_COLOBOptional: No
Call by Reference: Yes
EX_COLOB -
Data type: LXE_COLOBOptional: Yes
Call by Reference: Yes
EX_PCX_S1 -
Data type: LXE_PCX_S1Optional: Yes
Call by Reference: Yes
EX_WRKOB -
Data type: LXE_WRKOBOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for LXE_OBJ_SEARCH_TEXT_SE63 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_t_lang | TYPE LXEISOLANG, " '' | |||
| lt_in_colob | TYPE STANDARD TABLE OF LXE_COLOB, " | |||
| lv_tot_searched | TYPE I, " | |||
| lv_s_lang | TYPE LXEISOLANG, " '' | |||
| lt_ex_colob | TYPE STANDARD TABLE OF LXE_COLOB, " | |||
| lv_tot_found | TYPE I, " | |||
| lv_t_text | TYPE LXEUNITLIN, " '*' | |||
| lt_ex_pcx_s1 | TYPE STANDARD TABLE OF LXE_PCX_S1, " | |||
| lv_s_text | TYPE LXEUNITLIN, " '*' | |||
| lt_ex_wrkob | TYPE STANDARD TABLE OF LXE_WRKOB, " | |||
| lv_t_no_case | TYPE CHAR1, " '' | |||
| lv_s_no_case | TYPE CHAR1, " '' | |||
| lv_create_virt | TYPE CHAR1. " 'X' |
|   CALL FUNCTION 'LXE_OBJ_SEARCH_TEXT_SE63' "Find by Objects |
| EXPORTING | ||
| T_LANG | = lv_t_lang | |
| S_LANG | = lv_s_lang | |
| T_TEXT | = lv_t_text | |
| S_TEXT | = lv_s_text | |
| T_NO_CASE | = lv_t_no_case | |
| S_NO_CASE | = lv_s_no_case | |
| CREATE_VIRT | = lv_create_virt | |
| IMPORTING | ||
| TOT_SEARCHED | = lv_tot_searched | |
| TOT_FOUND | = lv_tot_found | |
| TABLES | ||
| IN_COLOB | = lt_in_colob | |
| EX_COLOB | = lt_ex_colob | |
| EX_PCX_S1 | = lt_ex_pcx_s1 | |
| EX_WRKOB | = lt_ex_wrkob | |
| . " LXE_OBJ_SEARCH_TEXT_SE63 | ||
ABAP code using 7.40 inline data declarations to call FM LXE_OBJ_SEARCH_TEXT_SE63
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_t_lang) | = ''. | |||
| DATA(ld_s_lang) | = ''. | |||
| DATA(ld_t_text) | = '*'. | |||
| DATA(ld_s_text) | = '*'. | |||
| DATA(ld_t_no_case) | = ''. | |||
| DATA(ld_s_no_case) | = ''. | |||
| DATA(ld_create_virt) | = 'X'. | |||
Search for further information about these or an SAP related objects