SAP LXE_SE63_X_TRANSLATION_CALL Function Module for LXE_SE63_X_TRANSLATION_CALL









LXE_SE63_X_TRANSLATION_CALL is a standard lxe se63 x translation call 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_X_TRANSLATION_CALL 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 x translation call FM, simply by entering the name LXE_SE63_X_TRANSLATION_CALL into the relevant SAP transaction such as SE37 or SE38.

Function Group: LXE_SE63_X
Program Name: SAPLLXE_SE63_X
Main Program: SAPLLXE_SE63_X
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function LXE_SE63_X_TRANSLATION_CALL 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_X_TRANSLATION_CALL'"LXE_SE63_X_TRANSLATION_CALL
EXPORTING
* VWO = ' ' "
* SEQUENTIAL = ' ' "
* NO_LONGTEXT = ' ' "
* AUTHORITY_CHECK = ' ' "
* ENQUEUE_CHECK = 'X' "
* ADMINIST_MODE = '0' "
SEL_LIMIT_FOR_TABLES = 0 "
* SEARCH_DATA = "

IMPORTING
UCOMM = "Screens, Function Code Triggered by PAI

TABLES
TLXEWRKOB = "Object lists for worklists
* TLXEWRKKEY = "Key for Worklists
* TSELTBKY = "
* TWHRTBKY = "Dynamic selections: Reference table - WHERE clauses
* ADD_WLIST = "

EXCEPTIONS
TEXT_PRE_EDIT_ERROR = 1 TEXT_EDIT_ERROR = 2 TEXT_POST_EDIT_ERROR = 3 TEXT_PUT_ERROR = 4 ENQUEUE_ERROR = 5
.



IMPORTING Parameters details for LXE_SE63_X_TRANSLATION_CALL

VWO -

Data type: C
Default: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)

SEQUENTIAL -

Data type: C
Default: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)

NO_LONGTEXT -

Data type: C
Default: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)

AUTHORITY_CHECK -

Data type: C
Default: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)

ENQUEUE_CHECK -

Data type: C
Default: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)

ADMINIST_MODE -

Data type: N
Default: '0'
Optional: No
Call by Reference: No ( called with pass by value option)

SEL_LIMIT_FOR_TABLES -

Data type: I
Optional: No
Call by Reference: No ( called with pass by value option)

SEARCH_DATA -

Data type: LXE_SE63_SHTXT_SEARCH_STRUCT
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for LXE_SE63_X_TRANSLATION_CALL

UCOMM - Screens, Function Code Triggered by PAI

Data type: SY-UCOMM
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for LXE_SE63_X_TRANSLATION_CALL

TLXEWRKOB - Object lists for worklists

Data type: LXE_WRKOB
Optional: No
Call by Reference: Yes

TLXEWRKKEY - Key for Worklists

Data type: LXE_WRKKEY
Optional: Yes
Call by Reference: Yes

TSELTBKY -

Data type: LXE_TABLE_SEL_KEY
Optional: Yes
Call by Reference: Yes

TWHRTBKY - Dynamic selections: Reference table - WHERE clauses

Data type: RSDSWHERE
Optional: Yes
Call by Reference: Yes

ADD_WLIST -

Data type: LXE_WRKOB
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

TEXT_PRE_EDIT_ERROR -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

TEXT_EDIT_ERROR -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

TEXT_POST_EDIT_ERROR -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

TEXT_PUT_ERROR -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ENQUEUE_ERROR -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for LXE_SE63_X_TRANSLATION_CALL 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 C, "   SPACE
lv_ucomm  TYPE SY-UCOMM, "   
lt_tlxewrkob  TYPE STANDARD TABLE OF LXE_WRKOB, "   
lv_text_pre_edit_error  TYPE LXE_WRKOB, "   
lv_sequential  TYPE C, "   SPACE
lt_tlxewrkkey  TYPE STANDARD TABLE OF LXE_WRKKEY, "   
lv_text_edit_error  TYPE LXE_WRKKEY, "   
lt_tseltbky  TYPE STANDARD TABLE OF LXE_TABLE_SEL_KEY, "   
lv_no_longtext  TYPE C, "   SPACE
lv_text_post_edit_error  TYPE C, "   
lt_twhrtbky  TYPE STANDARD TABLE OF RSDSWHERE, "   
lv_text_put_error  TYPE RSDSWHERE, "   
lv_authority_check  TYPE C, "   SPACE
lt_add_wlist  TYPE STANDARD TABLE OF LXE_WRKOB, "   
lv_enqueue_check  TYPE C, "   'X'
lv_enqueue_error  TYPE C, "   
lv_administ_mode  TYPE N, "   '0'
lv_sel_limit_for_tables  TYPE I, "   0
lv_search_data  TYPE LXE_SE63_SHTXT_SEARCH_STRUCT. "   

  CALL FUNCTION 'LXE_SE63_X_TRANSLATION_CALL'  "LXE_SE63_X_TRANSLATION_CALL
    EXPORTING
         VWO = lv_vwo
         SEQUENTIAL = lv_sequential
         NO_LONGTEXT = lv_no_longtext
         AUTHORITY_CHECK = lv_authority_check
         ENQUEUE_CHECK = lv_enqueue_check
         ADMINIST_MODE = lv_administ_mode
         SEL_LIMIT_FOR_TABLES = lv_sel_limit_for_tables
         SEARCH_DATA = lv_search_data
    IMPORTING
         UCOMM = lv_ucomm
    TABLES
         TLXEWRKOB = lt_tlxewrkob
         TLXEWRKKEY = lt_tlxewrkkey
         TSELTBKY = lt_tseltbky
         TWHRTBKY = lt_twhrtbky
         ADD_WLIST = lt_add_wlist
    EXCEPTIONS
        TEXT_PRE_EDIT_ERROR = 1
        TEXT_EDIT_ERROR = 2
        TEXT_POST_EDIT_ERROR = 3
        TEXT_PUT_ERROR = 4
        ENQUEUE_ERROR = 5
. " LXE_SE63_X_TRANSLATION_CALL




ABAP code using 7.40 inline data declarations to call FM LXE_SE63_X_TRANSLATION_CALL

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) = ' '.
 
"SELECT single UCOMM FROM SY INTO @DATA(ld_ucomm).
 
 
 
DATA(ld_sequential) = ' '.
 
 
 
 
DATA(ld_no_longtext) = ' '.
 
 
 
 
DATA(ld_authority_check) = ' '.
 
 
DATA(ld_enqueue_check) = 'X'.
 
 
DATA(ld_administ_mode) = '0'.
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!