OXE_SE63_STRING_EDIT_SINGLE 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 OXE_SE63_STRING_EDIT_SINGLE 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 'OXE_SE63_STRING_EDIT_SINGLE' "
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 = " lxe_xstring
t_in = " lxe_xstring
* t_format_func = " rs38l_fnam
sel_editor = " char1
in_ttx = " lxe_xstring
ini = " xstring
* sequential = " char1
work_dir = " string
template_id = " lxetextkey
markup_type = " tmwmarkup
destination = " rfcdest
IMPORTING
ev_status = " lxestatprc
t_out = " lxe_xstring
out_ttx = " lxe_xstring
ucomm = " syucomm
CHANGING
current_textkey = " lxetextkey
ls_key = " lxe_key_st
ls_msg = " lxe_msg
. " OXE_SE63_STRING_EDIT_SINGLE
The ABAP code below is a full code listing to execute function module OXE_SE63_STRING_EDIT_SINGLE 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 | TYPE LXE_XSTRING , |
| ld_out_ttx | TYPE LXE_XSTRING , |
| ld_ucomm | TYPE SYUCOMM . |
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 , |
| ld_ls_key | TYPE LXE_KEY_ST , |
| ld_t_out | TYPE LXE_XSTRING , |
| ld_t_lang | TYPE LXEISOLANG , |
| ld_ls_msg | TYPE LXE_MSG , |
| ld_out_ttx | TYPE LXE_XSTRING , |
| 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 | TYPE LXE_XSTRING , |
| ld_t_in | TYPE LXE_XSTRING , |
| ld_t_format_func | TYPE RS38L_FNAM , |
| ld_sel_editor | TYPE CHAR1 , |
| ld_in_ttx | TYPE LXE_XSTRING , |
| ld_ini | TYPE XSTRING , |
| ld_sequential | TYPE CHAR1 , |
| ld_work_dir | TYPE STRING , |
| ld_template_id | TYPE LXETEXTKEY , |
| ld_markup_type | TYPE TMWMARKUP , |
| ld_destination | TYPE RFCDEST . |
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 OXE_SE63_STRING_EDIT_SINGLE or its description.