O_LXE_SE63_STRING_EDIT is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name O_LXE_SE63_STRING_EDIT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
LXE_OBSOLETE
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'O_LXE_SE63_STRING_EDIT' "
EXPORTING
* vwo = SPACE " char1
t_lang = " lxeisolang
s_lang = " lxeisolang
o_lang = " lxeisolang
t_codepage = " cpcodepage
s_codepage = " cpcodepage
custmnr = " lxecustmnr
objtype = " lxeobjtype
objname = " lxeobjname
colltyp = " lxecolltyp
collnam = " lxecollnam
domatyp = " lxedomatyp
domanam = " lxedomanam
s_in_tab = " lxe_text_tabx
t_in_tab = " lxe_text_tabx
* t_format_func = " rs38l_fnam
sel_editor = " char1
in_ttx = " lxe_text_tabx
ini = " xstring
* sequential = " char1
work_dir = " string
template_id = " lxetextkey
IMPORTING
ev_status = " lxestatprc
t_out_tab = " lxe_text_tabx
out_ttx = " lxe_text_tabx
ucomm = " syucomm
* TABLES
* ktab = " lxe_key_st
CHANGING
current_textkey = " lxetextkey
. " O_LXE_SE63_STRING_EDIT
The ABAP code below is a full code listing to execute function module O_LXE_SE63_STRING_EDIT including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_ev_status | TYPE LXESTATPRC , |
| ld_t_out_tab | TYPE LXE_TEXT_TABX , |
| ld_out_ttx | TYPE LXE_TEXT_TABX , |
| ld_ucomm | TYPE SYUCOMM , |
| it_ktab | TYPE STANDARD TABLE OF LXE_KEY_ST,"TABLES PARAM |
| wa_ktab | LIKE LINE OF it_ktab . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_current_textkey | TYPE LXETEXTKEY , |
| ld_ev_status | TYPE LXESTATPRC , |
| ld_vwo | TYPE CHAR1 , |
| it_ktab | TYPE STANDARD TABLE OF LXE_KEY_ST , |
| wa_ktab | LIKE LINE OF it_ktab, |
| ld_t_out_tab | TYPE LXE_TEXT_TABX , |
| ld_t_lang | TYPE LXEISOLANG , |
| ld_out_ttx | TYPE LXE_TEXT_TABX , |
| ld_s_lang | TYPE LXEISOLANG , |
| ld_ucomm | TYPE SYUCOMM , |
| ld_o_lang | TYPE LXEISOLANG , |
| ld_t_codepage | TYPE CPCODEPAGE , |
| ld_s_codepage | TYPE CPCODEPAGE , |
| ld_custmnr | TYPE LXECUSTMNR , |
| ld_objtype | TYPE LXEOBJTYPE , |
| ld_objname | TYPE LXEOBJNAME , |
| ld_colltyp | TYPE LXECOLLTYP , |
| ld_collnam | TYPE LXECOLLNAM , |
| ld_domatyp | TYPE LXEDOMATYP , |
| ld_domanam | TYPE LXEDOMANAM , |
| ld_s_in_tab | TYPE LXE_TEXT_TABX , |
| ld_t_in_tab | TYPE LXE_TEXT_TABX , |
| ld_t_format_func | TYPE RS38L_FNAM , |
| ld_sel_editor | TYPE CHAR1 , |
| ld_in_ttx | TYPE LXE_TEXT_TABX , |
| ld_ini | TYPE XSTRING , |
| ld_sequential | TYPE CHAR1 , |
| ld_work_dir | TYPE STRING , |
| ld_template_id | TYPE LXETEXTKEY . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name O_LXE_SE63_STRING_EDIT or its description.