SAP LXE_SE63_STRING_EDIT_SINGLE Function Module for LXE_SE63_STRING_EDIT_SINGLE
LXE_SE63_STRING_EDIT_SINGLE is a standard lxe se63 string edit single SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for LXE_SE63_STRING_EDIT_SINGLE 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 se63 string edit single FM, simply by entering the name LXE_SE63_STRING_EDIT_SINGLE into the relevant SAP transaction such as SE37 or SE38.
Function Group: LXE_SE63_SSC_EDITOR
Program Name: SAPLLXE_SE63_SSC_EDITOR
Main Program: SAPLLXE_SE63_SSC_EDITOR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LXE_SE63_STRING_EDIT_SINGLE 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_SE63_STRING_EDIT_SINGLE'"LXE_SE63_STRING_EDIT_SINGLE.
EXPORTING
* VWO = ' ' "Single-Character Flag
COLLTYP = "Collection Type
COLLNAM = "Collection Name
DOMATYP = "Domain Type
DOMANAM = "Domain Name
S_IN = "Text Line
T_IN = "Text Line
* T_FORMAT_FUNC = "Name of Function Module
SEL_EDITOR = "Single-Character Flag
IN_TTX = "Text Line
INI = "Predefined Type
T_LANG = "Translation Language
ININAME = "Name
* SEQUENTIAL = "Single-Character Flag
WORK_DIR = "Predefined Type
TEMPLATE_ID = "Text Key
MARKUP_TYPE = "Translation Memory Middleware Markup
DESTINATION = "Logical Destination (Specified in Function Call)
* PRIO = "Priority of an SAP Note
S_LANG = "Translation Language
O_LANG = "Translation Language
T_CODEPAGE = "SAP Character Set ID
S_CODEPAGE = "SAP Character Set ID
CUSTMNR = "Translation Area
OBJTYPE = "Type of Translation Object
OBJNAME = "Name of Translation Object
IMPORTING
EV_STATUS = "Process Status
T_OUT = "Text Line
OUT_TTX = "Text Line
UCOMM = "Function Code
CHANGING
CURRENT_TEXTKEY = "Text Key
LS_KEY = "Status
LS_MSG = "Error Messages
IMPORTING Parameters details for LXE_SE63_STRING_EDIT_SINGLE
VWO - Single-Character Flag
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
COLLTYP - Collection Type
Data type: LXECOLLTYPOptional: No
Call by Reference: Yes
COLLNAM - Collection Name
Data type: LXECOLLNAMOptional: No
Call by Reference: Yes
DOMATYP - Domain Type
Data type: LXEDOMATYPOptional: No
Call by Reference: Yes
DOMANAM - Domain Name
Data type: LXEDOMANAMOptional: No
Call by Reference: Yes
S_IN - Text Line
Data type: LXE_XSTRINGOptional: No
Call by Reference: Yes
T_IN - Text Line
Data type: LXE_XSTRINGOptional: No
Call by Reference: Yes
T_FORMAT_FUNC - Name of Function Module
Data type: RS38L_FNAMOptional: Yes
Call by Reference: Yes
SEL_EDITOR - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
IN_TTX - Text Line
Data type: LXE_XSTRINGOptional: No
Call by Reference: Yes
INI - Predefined Type
Data type: XSTRINGOptional: No
Call by Reference: Yes
T_LANG - Translation Language
Data type: LXEISOLANGOptional: No
Call by Reference: Yes
ININAME - Name
Data type: LXEININAMEOptional: No
Call by Reference: Yes
SEQUENTIAL - Single-Character Flag
Data type: CHAR1Optional: Yes
Call by Reference: No ( called with pass by value option)
WORK_DIR - Predefined Type
Data type: STRINGOptional: No
Call by Reference: Yes
TEMPLATE_ID - Text Key
Data type: LXETEXTKEYOptional: No
Call by Reference: Yes
MARKUP_TYPE - Translation Memory Middleware Markup
Data type: TMWMARKUPOptional: No
Call by Reference: Yes
DESTINATION - Logical Destination (Specified in Function Call)
Data type: RFCDESTOptional: No
Call by Reference: Yes
PRIO - Priority of an SAP Note
Data type: LXE_SNO_DE_PRIORITYOptional: Yes
Call by Reference: Yes
S_LANG - Translation Language
Data type: LXEISOLANGOptional: No
Call by Reference: Yes
O_LANG - Translation Language
Data type: LXEISOLANGOptional: No
Call by Reference: Yes
T_CODEPAGE - SAP Character Set ID
Data type: CPCODEPAGEOptional: No
Call by Reference: Yes
S_CODEPAGE - SAP Character Set ID
Data type: CPCODEPAGEOptional: No
Call by Reference: Yes
CUSTMNR - Translation Area
Data type: LXECUSTMNROptional: No
Call by Reference: Yes
OBJTYPE - Type of Translation Object
Data type: LXEOBJTYPEOptional: No
Call by Reference: Yes
OBJNAME - Name of Translation Object
Data type: LXEOBJNAMEOptional: No
Call by Reference: Yes
EXPORTING Parameters details for LXE_SE63_STRING_EDIT_SINGLE
EV_STATUS - Process Status
Data type: LXESTATPRCOptional: No
Call by Reference: Yes
T_OUT - Text Line
Data type: LXE_XSTRINGOptional: No
Call by Reference: Yes
OUT_TTX - Text Line
Data type: LXE_XSTRINGOptional: No
Call by Reference: Yes
UCOMM - Function Code
Data type: SYUCOMMOptional: No
Call by Reference: Yes
CHANGING Parameters details for LXE_SE63_STRING_EDIT_SINGLE
CURRENT_TEXTKEY - Text Key
Data type: LXETEXTKEYOptional: No
Call by Reference: Yes
LS_KEY - Status
Data type: LXE_KEY_STOptional: No
Call by Reference: Yes
LS_MSG - Error Messages
Data type: LXE_MSGOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for LXE_SE63_STRING_EDIT_SINGLE 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_vwo | TYPE CHAR1, " SPACE | |||
| lv_ev_status | TYPE LXESTATPRC, " | |||
| lv_current_textkey | TYPE LXETEXTKEY, " | |||
| lv_colltyp | TYPE LXECOLLTYP, " | |||
| lv_collnam | TYPE LXECOLLNAM, " | |||
| lv_domatyp | TYPE LXEDOMATYP, " | |||
| lv_domanam | TYPE LXEDOMANAM, " | |||
| lv_s_in | TYPE LXE_XSTRING, " | |||
| lv_t_in | TYPE LXE_XSTRING, " | |||
| lv_t_format_func | TYPE RS38L_FNAM, " | |||
| lv_sel_editor | TYPE CHAR1, " | |||
| lv_in_ttx | TYPE LXE_XSTRING, " | |||
| lv_ini | TYPE XSTRING, " | |||
| lv_t_out | TYPE LXE_XSTRING, " | |||
| lv_ls_key | TYPE LXE_KEY_ST, " | |||
| lv_t_lang | TYPE LXEISOLANG, " | |||
| lv_ininame | TYPE LXEININAME, " | |||
| lv_sequential | TYPE CHAR1, " | |||
| lv_work_dir | TYPE STRING, " | |||
| lv_template_id | TYPE LXETEXTKEY, " | |||
| lv_markup_type | TYPE TMWMARKUP, " | |||
| lv_destination | TYPE RFCDEST, " | |||
| lv_prio | TYPE LXE_SNO_DE_PRIORITY, " | |||
| lv_ls_msg | TYPE LXE_MSG, " | |||
| lv_s_lang | TYPE LXEISOLANG, " | |||
| lv_out_ttx | TYPE LXE_XSTRING, " | |||
| lv_ucomm | TYPE SYUCOMM, " | |||
| lv_o_lang | TYPE LXEISOLANG, " | |||
| lv_t_codepage | TYPE CPCODEPAGE, " | |||
| lv_s_codepage | TYPE CPCODEPAGE, " | |||
| lv_custmnr | TYPE LXECUSTMNR, " | |||
| lv_objtype | TYPE LXEOBJTYPE, " | |||
| lv_objname | TYPE LXEOBJNAME. " |
|   CALL FUNCTION 'LXE_SE63_STRING_EDIT_SINGLE' "LXE_SE63_STRING_EDIT_SINGLE |
| EXPORTING | ||
| VWO | = lv_vwo | |
| COLLTYP | = lv_colltyp | |
| COLLNAM | = lv_collnam | |
| DOMATYP | = lv_domatyp | |
| DOMANAM | = lv_domanam | |
| S_IN | = lv_s_in | |
| T_IN | = lv_t_in | |
| T_FORMAT_FUNC | = lv_t_format_func | |
| SEL_EDITOR | = lv_sel_editor | |
| IN_TTX | = lv_in_ttx | |
| INI | = lv_ini | |
| T_LANG | = lv_t_lang | |
| ININAME | = lv_ininame | |
| SEQUENTIAL | = lv_sequential | |
| WORK_DIR | = lv_work_dir | |
| TEMPLATE_ID | = lv_template_id | |
| MARKUP_TYPE | = lv_markup_type | |
| DESTINATION | = lv_destination | |
| PRIO | = lv_prio | |
| S_LANG | = lv_s_lang | |
| O_LANG | = lv_o_lang | |
| T_CODEPAGE | = lv_t_codepage | |
| S_CODEPAGE | = lv_s_codepage | |
| CUSTMNR | = lv_custmnr | |
| OBJTYPE | = lv_objtype | |
| OBJNAME | = lv_objname | |
| IMPORTING | ||
| EV_STATUS | = lv_ev_status | |
| T_OUT | = lv_t_out | |
| OUT_TTX | = lv_out_ttx | |
| UCOMM | = lv_ucomm | |
| CHANGING | ||
| CURRENT_TEXTKEY | = lv_current_textkey | |
| LS_KEY | = lv_ls_key | |
| LS_MSG | = lv_ls_msg | |
| . " LXE_SE63_STRING_EDIT_SINGLE | ||
ABAP code using 7.40 inline data declarations to call FM LXE_SE63_STRING_EDIT_SINGLE
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_vwo) | = ' '. | |||
Search for further information about these or an SAP related objects