SAP LXE_TMW_ADMIN_CREATE_TM Function Module for Create TMW Translation Memory
LXE_TMW_ADMIN_CREATE_TM is a standard lxe tmw admin create tm SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Create TMW Translation Memory 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 tmw admin create tm FM, simply by entering the name LXE_TMW_ADMIN_CREATE_TM into the relevant SAP transaction such as SE37 or SE38.
Function Group: LXE_TMW_ADMINISTRATION
Program Name: SAPLLXE_TMW_ADMINISTRATION
Main Program: SAPLLXE_TMW_ADMINISTRATION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LXE_TMW_ADMIN_CREATE_TM 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_TMW_ADMIN_CREATE_TM'"Create TMW Translation Memory.
EXPORTING
* DESTINATION = 'TMW_NET' "Logical Destination (Specified in Function Call)
I_SOURCE_LCID = "Locale ID
I_TARGET_LCID = "Locale ID
I_DB_SERVER = "Translation Middleware Parameter (Previously CHAR255)
I_DB_CONTAINER = "Translation Middleware Parameter (Previously CHAR255)
I_TM_SERVER = "Translation Middleware Parameter (Previously CHAR255)
I_TM_NAME = "Translation Middleware Parameter (Previously CHAR255)
I_TM_INTERNAL_ID = "Translation Middleware Parameter (Previously CHAR255)
I_TM_TEMPLATE = "Translation Middleware Parameter (Previously CHAR255)
IMPORTING
E_STATUS = "Process Status
IMPORTING Parameters details for LXE_TMW_ADMIN_CREATE_TM
DESTINATION - Logical Destination (Specified in Function Call)
Data type: RFCDESTDefault: 'TMW_NET'
Optional: No
Call by Reference: Yes
I_SOURCE_LCID - Locale ID
Data type: LXETMWARELCIDOptional: No
Call by Reference: Yes
I_TARGET_LCID - Locale ID
Data type: LXETMWARELCIDOptional: No
Call by Reference: Yes
I_DB_SERVER - Translation Middleware Parameter (Previously CHAR255)
Data type: TMWPARAMOptional: No
Call by Reference: Yes
I_DB_CONTAINER - Translation Middleware Parameter (Previously CHAR255)
Data type: TMWPARAMOptional: No
Call by Reference: Yes
I_TM_SERVER - Translation Middleware Parameter (Previously CHAR255)
Data type: TMWPARAMOptional: No
Call by Reference: Yes
I_TM_NAME - Translation Middleware Parameter (Previously CHAR255)
Data type: TMWPARAMOptional: No
Call by Reference: Yes
I_TM_INTERNAL_ID - Translation Middleware Parameter (Previously CHAR255)
Data type: TMWPARAMOptional: No
Call by Reference: Yes
I_TM_TEMPLATE - Translation Middleware Parameter (Previously CHAR255)
Data type: TMWPARAMOptional: No
Call by Reference: Yes
EXPORTING Parameters details for LXE_TMW_ADMIN_CREATE_TM
E_STATUS - Process Status
Data type: LXESTATPRCOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for LXE_TMW_ADMIN_CREATE_TM 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_e_status | TYPE LXESTATPRC, " | |||
| lv_destination | TYPE RFCDEST, " 'TMW_NET' | |||
| lv_i_source_lcid | TYPE LXETMWARELCID, " | |||
| lv_i_target_lcid | TYPE LXETMWARELCID, " | |||
| lv_i_db_server | TYPE TMWPARAM, " | |||
| lv_i_db_container | TYPE TMWPARAM, " | |||
| lv_i_tm_server | TYPE TMWPARAM, " | |||
| lv_i_tm_name | TYPE TMWPARAM, " | |||
| lv_i_tm_internal_id | TYPE TMWPARAM, " | |||
| lv_i_tm_template | TYPE TMWPARAM. " |
|   CALL FUNCTION 'LXE_TMW_ADMIN_CREATE_TM' "Create TMW Translation Memory |
| EXPORTING | ||
| DESTINATION | = lv_destination | |
| I_SOURCE_LCID | = lv_i_source_lcid | |
| I_TARGET_LCID | = lv_i_target_lcid | |
| I_DB_SERVER | = lv_i_db_server | |
| I_DB_CONTAINER | = lv_i_db_container | |
| I_TM_SERVER | = lv_i_tm_server | |
| I_TM_NAME | = lv_i_tm_name | |
| I_TM_INTERNAL_ID | = lv_i_tm_internal_id | |
| I_TM_TEMPLATE | = lv_i_tm_template | |
| IMPORTING | ||
| E_STATUS | = lv_e_status | |
| . " LXE_TMW_ADMIN_CREATE_TM | ||
ABAP code using 7.40 inline data declarations to call FM LXE_TMW_ADMIN_CREATE_TM
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_destination) | = 'TMW_NET'. | |||
Search for further information about these or an SAP related objects