SAP Function Modules

OXE_SE63_STRING_EDIT_SINGLE SAP Function module







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
Normal function module settings


Pattern for FM OXE_SE63_STRING_EDIT_SINGLE - OXE SE63 STRING EDIT SINGLE





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

ABAP code example for Function Module 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).

DATA:
ld_ev_status  TYPE LXESTATPRC ,
ld_t_out  TYPE LXE_XSTRING ,
ld_out_ttx  TYPE LXE_XSTRING ,
ld_ucomm  TYPE SYUCOMM .

DATA(ld_current_textkey) = 'Check type of data required'.
DATA(ld_ls_key) = 'Check type of data required'.
DATA(ld_ls_msg) = 'Check type of data required'.
DATA(ld_vwo) = 'Check type of data required'.
DATA(ld_t_lang) = 'Check type of data required'.
DATA(ld_s_lang) = 'Check type of data required'.
DATA(ld_o_lang) = 'Check type of data required'.
DATA(ld_t_codepage) = 'Check type of data required'.
DATA(ld_s_codepage) = 'Check type of data required'.
DATA(ld_custmnr) = 'Check type of data required'.
DATA(ld_objtype) = 'Check type of data required'.
DATA(ld_objname) = 'Check type of data required'.
DATA(ld_colltyp) = 'Check type of data required'.
DATA(ld_collnam) = 'Check type of data required'.
DATA(ld_domatyp) = 'Check type of data required'.
DATA(ld_domanam) = 'Check type of data required'.
DATA(ld_s_in) = 'Check type of data required'.
DATA(ld_t_in) = 'Check type of data required'.
DATA(ld_t_format_func) = 'Check type of data required'.
DATA(ld_sel_editor) = 'Check type of data required'.
DATA(ld_in_ttx) = 'Check type of data required'.
DATA(ld_ini) = 'Check type of data required'.
DATA(ld_sequential) = 'Check type of data required'.
DATA(ld_work_dir) = 'Check type of data required'.
DATA(ld_template_id) = 'Check type of data required'.
DATA(ld_markup_type) = 'Check type of data required'.
DATA(ld_destination) = 'Check type of data required'. . CALL FUNCTION 'OXE_SE63_STRING_EDIT_SINGLE' EXPORTING * vwo = ld_vwo t_lang = ld_t_lang s_lang = ld_s_lang o_lang = ld_o_lang t_codepage = ld_t_codepage s_codepage = ld_s_codepage custmnr = ld_custmnr objtype = ld_objtype objname = ld_objname colltyp = ld_colltyp collnam = ld_collnam domatyp = ld_domatyp domanam = ld_domanam s_in = ld_s_in t_in = ld_t_in * t_format_func = ld_t_format_func sel_editor = ld_sel_editor in_ttx = ld_in_ttx ini = ld_ini * sequential = ld_sequential work_dir = ld_work_dir template_id = ld_template_id markup_type = ld_markup_type destination = ld_destination IMPORTING ev_status = ld_ev_status t_out = ld_t_out out_ttx = ld_out_ttx ucomm = ld_ucomm CHANGING current_textkey = ld_current_textkey ls_key = ld_ls_key ls_msg = ld_ls_msg . " OXE_SE63_STRING_EDIT_SINGLE
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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 .

ld_current_textkey = 'Check type of data required'.
ld_vwo = 'Check type of data required'.
ld_ls_key = 'Check type of data required'.
ld_t_lang = 'Check type of data required'.
ld_ls_msg = 'Check type of data required'.
ld_s_lang = 'Check type of data required'.
ld_o_lang = 'Check type of data required'.
ld_t_codepage = 'Check type of data required'.
ld_s_codepage = 'Check type of data required'.
ld_custmnr = 'Check type of data required'.
ld_objtype = 'Check type of data required'.
ld_objname = 'Check type of data required'.
ld_colltyp = 'Check type of data required'.
ld_collnam = 'Check type of data required'.
ld_domatyp = 'Check type of data required'.
ld_domanam = 'Check type of data required'.
ld_s_in = 'Check type of data required'.
ld_t_in = 'Check type of data required'.
ld_t_format_func = 'Check type of data required'.
ld_sel_editor = 'Check type of data required'.
ld_in_ttx = 'Check type of data required'.
ld_ini = 'Check type of data required'.
ld_sequential = 'Check type of data required'.
ld_work_dir = 'Check type of data required'.
ld_template_id = 'Check type of data required'.
ld_markup_type = 'Check type of data required'.
ld_destination = 'Check type of data required'.

Contribute (Add Comments)

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.