SAP TMS_CE_CONFIG_UPDATE Function Module for
TMS_CE_CONFIG_UPDATE is a standard tms ce config update SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 tms ce config update FM, simply by entering the name TMS_CE_CONFIG_UPDATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: TMSE
Program Name: SAPLTMSE
Main Program: SAPLTMSE
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TMS_CE_CONFIG_UPDATE 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 'TMS_CE_CONFIG_UPDATE'".
EXPORTING
* IV_FORCE = ' ' "
* IT_LAYTEXT = "
* IT_SYSTEXT = "
* IT_CLIENTC = "
* IT_VERTEXT = "
* IT_DPLTARGETS = "
* IV_MONITOR = 'X' "
* IV_ALL_SYSTEMS = ' ' "
* IV_ACTIVATE = ' ' "
* IT_SYSTEM = "
* IT_TRLAYER = "
* IT_RELEASE = "
* IT_DELIVER = "
* IT_TARGET = "
* IT_TARTEXT = "
IMPORTING
EV_OKCNT = "
ET_RC = "
ET_CORRLOG = "
ES_EXCEPTION = "TMS CI: Alert Structure
CHANGING
* CS_VERSION = "
* CT_SYSLIST = "
* CT_SELSYS = "TMS Internal: System Table with Alert ID (TMSCSYSTEM)
EXCEPTIONS
NO_AUTHORITY_FOR_CONTROL = 1 TMS_NOT_CONFIGURED = 2 TMS_IS_NOT_ACTIVE = 3 TCE_CONFIGURATION_NOT_FOUND = 4 TCE_CONFIGURATION_EMPTY = 5 TCE_INTERNAL_ERROR = 6 TCE_NOTHING_TO_DO = 7 ALERT = 8
IMPORTING Parameters details for TMS_CE_CONFIG_UPDATE
IV_FORCE -
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
IT_LAYTEXT -
Data type: TRIWB_T_LAYTEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_SYSTEXT -
Data type: TRIWB_T_SYSTEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_CLIENTC -
Data type: TRIWB_T_CLIENTCOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_VERTEXT -
Data type: TRIWB_T_VERTEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_DPLTARGETS -
Data type: TRIWB_T_DPLTARGOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_MONITOR -
Data type: STMS_FLAGDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IV_ALL_SYSTEMS -
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
IV_ACTIVATE -
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
IT_SYSTEM -
Data type: TRIWB_T_SYSTEMOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_TRLAYER -
Data type: TRIWB_T_TRLAYEROptional: Yes
Call by Reference: No ( called with pass by value option)
IT_RELEASE -
Data type: TRIWB_T_RELEASEOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_DELIVER -
Data type: TRIWB_T_DELIVEROptional: Yes
Call by Reference: No ( called with pass by value option)
IT_TARGET -
Data type: TRIWB_T_TARGETOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_TARTEXT -
Data type: TRIWB_T_TARTEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for TMS_CE_CONFIG_UPDATE
EV_OKCNT -
Data type: IOptional: No
Call by Reference: Yes
ET_RC -
Data type: TCEWBOERROptional: No
Call by Reference: Yes
ET_CORRLOG -
Data type: SPROT_U_TABOptional: No
Call by Reference: Yes
ES_EXCEPTION - TMS CI: Alert Structure
Data type: STMSCALERTOptional: No
Call by Reference: Yes
CHANGING Parameters details for TMS_CE_CONFIG_UPDATE
CS_VERSION -
Data type: TRIWB_S_VERSIONOptional: Yes
Call by Reference: Yes
CT_SYSLIST -
Data type: TRIWB_T_STATESOptional: Yes
Call by Reference: Yes
CT_SELSYS - TMS Internal: System Table with Alert ID (TMSCSYSTEM)
Data type: TMSCSYSTABOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NO_AUTHORITY_FOR_CONTROL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TMS_NOT_CONFIGURED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TMS_IS_NOT_ACTIVE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TCE_CONFIGURATION_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TCE_CONFIGURATION_EMPTY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TCE_INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TCE_NOTHING_TO_DO -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ALERT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for TMS_CE_CONFIG_UPDATE 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_ev_okcnt | TYPE I, " | |||
| lv_iv_force | TYPE C, " ' ' | |||
| lv_cs_version | TYPE TRIWB_S_VERSION, " | |||
| lv_no_authority_for_control | TYPE TRIWB_S_VERSION, " | |||
| lv_it_laytext | TYPE TRIWB_T_LAYTEXT, " | |||
| lv_it_systext | TYPE TRIWB_T_SYSTEXT, " | |||
| lv_it_clientc | TYPE TRIWB_T_CLIENTC, " | |||
| lv_it_vertext | TYPE TRIWB_T_VERTEXT, " | |||
| lv_it_dpltargets | TYPE TRIWB_T_DPLTARG, " | |||
| lv_iv_monitor | TYPE STMS_FLAG, " 'X' | |||
| lv_et_rc | TYPE TCEWBOERR, " | |||
| lv_ct_syslist | TYPE TRIWB_T_STATES, " | |||
| lv_iv_all_systems | TYPE C, " ' ' | |||
| lv_tms_not_configured | TYPE C, " | |||
| lv_ct_selsys | TYPE TMSCSYSTAB, " | |||
| lv_et_corrlog | TYPE SPROT_U_TAB, " | |||
| lv_iv_activate | TYPE C, " ' ' | |||
| lv_tms_is_not_active | TYPE C, " | |||
| lv_it_system | TYPE TRIWB_T_SYSTEM, " | |||
| lv_es_exception | TYPE STMSCALERT, " | |||
| lv_tce_configuration_not_found | TYPE STMSCALERT, " | |||
| lv_it_trlayer | TYPE TRIWB_T_TRLAYER, " | |||
| lv_tce_configuration_empty | TYPE TRIWB_T_TRLAYER, " | |||
| lv_it_release | TYPE TRIWB_T_RELEASE, " | |||
| lv_tce_internal_error | TYPE TRIWB_T_RELEASE, " | |||
| lv_it_deliver | TYPE TRIWB_T_DELIVER, " | |||
| lv_tce_nothing_to_do | TYPE TRIWB_T_DELIVER, " | |||
| lv_alert | TYPE TRIWB_T_DELIVER, " | |||
| lv_it_target | TYPE TRIWB_T_TARGET, " | |||
| lv_it_tartext | TYPE TRIWB_T_TARTEXT. " |
|   CALL FUNCTION 'TMS_CE_CONFIG_UPDATE' " |
| EXPORTING | ||
| IV_FORCE | = lv_iv_force | |
| IT_LAYTEXT | = lv_it_laytext | |
| IT_SYSTEXT | = lv_it_systext | |
| IT_CLIENTC | = lv_it_clientc | |
| IT_VERTEXT | = lv_it_vertext | |
| IT_DPLTARGETS | = lv_it_dpltargets | |
| IV_MONITOR | = lv_iv_monitor | |
| IV_ALL_SYSTEMS | = lv_iv_all_systems | |
| IV_ACTIVATE | = lv_iv_activate | |
| IT_SYSTEM | = lv_it_system | |
| IT_TRLAYER | = lv_it_trlayer | |
| IT_RELEASE | = lv_it_release | |
| IT_DELIVER | = lv_it_deliver | |
| IT_TARGET | = lv_it_target | |
| IT_TARTEXT | = lv_it_tartext | |
| IMPORTING | ||
| EV_OKCNT | = lv_ev_okcnt | |
| ET_RC | = lv_et_rc | |
| ET_CORRLOG | = lv_et_corrlog | |
| ES_EXCEPTION | = lv_es_exception | |
| CHANGING | ||
| CS_VERSION | = lv_cs_version | |
| CT_SYSLIST | = lv_ct_syslist | |
| CT_SELSYS | = lv_ct_selsys | |
| EXCEPTIONS | ||
| NO_AUTHORITY_FOR_CONTROL = 1 | ||
| TMS_NOT_CONFIGURED = 2 | ||
| TMS_IS_NOT_ACTIVE = 3 | ||
| TCE_CONFIGURATION_NOT_FOUND = 4 | ||
| TCE_CONFIGURATION_EMPTY = 5 | ||
| TCE_INTERNAL_ERROR = 6 | ||
| TCE_NOTHING_TO_DO = 7 | ||
| ALERT = 8 | ||
| . " TMS_CE_CONFIG_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM TMS_CE_CONFIG_UPDATE
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_iv_force) | = ' '. | |||
| DATA(ld_iv_monitor) | = 'X'. | |||
| DATA(ld_iv_all_systems) | = ' '. | |||
| DATA(ld_iv_activate) | = ' '. | |||
Search for further information about these or an SAP related objects