SAP Function Modules

O_LXE_SE63_STRING_EDIT SAP Function module







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


Pattern for FM O_LXE_SE63_STRING_EDIT - O LXE SE63 STRING EDIT





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

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

DATA:
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 .

DATA(ld_current_textkey) = '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_tab) = 'Check type of data required'.
DATA(ld_t_in_tab) = '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'.

"populate fields of struture and append to itab
append wa_ktab to it_ktab. . CALL FUNCTION 'O_LXE_SE63_STRING_EDIT' 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_tab = ld_s_in_tab t_in_tab = ld_t_in_tab * 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 IMPORTING ev_status = ld_ev_status t_out_tab = ld_t_out_tab out_ttx = ld_out_ttx ucomm = ld_ucomm * TABLES * ktab = it_ktab CHANGING current_textkey = ld_current_textkey . " O_LXE_SE63_STRING_EDIT
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 ,
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 .

ld_current_textkey = 'Check type of data required'.
ld_vwo = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_ktab to it_ktab.
ld_t_lang = '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_tab = 'Check type of data required'.
ld_t_in_tab = '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'.

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 O_LXE_SE63_STRING_EDIT or its description.