SAP TMS_DLS_DOMLINK_MODIFICATION Function Module for
TMS_DLS_DOMLINK_MODIFICATION is a standard tms dls domlink modification 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 dls domlink modification FM, simply by entering the name TMS_DLS_DOMLINK_MODIFICATION into the relevant SAP transaction such as SE37 or SE38.
Function Group: TMS_DLS
Program Name: SAPLTMS_DLS
Main Program:
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TMS_DLS_DOMLINK_MODIFICATION 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_DLS_DOMLINK_MODIFICATION'".
EXPORTING
IV_CONTROLLER = "General Flag
* IT_FOREIGN_DOM = "TMS CI: Transport Domains
* IT_FOREIGN_DOMT = "TMS CI: Transport Domains (Texts)
* IT_FOREIGN_DEST = "TMS CI: Destinations
* IT_FOREIGN_SYS = "TMS CI: Systems
* IT_FOREIGN_SYST = "TMS CI: Systems (Texts)
* IT_FOREIGN_NFS = "TMS CI: Transport Groups
* IT_FOREIGN_NFST = "TMS CI: NFS Groups (Texts)
* IT_FOREIGN_PCONF = "TMS tp Profile Manager: Configuration
* IT_FOREIGN_PVERS = "TMS tp Profile Manager: Version Information
* IT_FOREIGN_SRV = "TMS SRV: Description of General Server Systems
IS_CONF = "TMS Manager: Configuration
* IT_FOREIGN_SRVT = "TMS SRV: Texts for TMSSRV
* IT_FOREIGN_CONFIRM = "TMS Table of QA Systems
IV_SRCDOMAIN = "TMS: Transport Domain
IV_SRCSYSTEM = "TMS: System Name
* IV_CI_CONF = 'X' "
* IV_TP_CONF = 'X' "
* IV_SRV_CONF = 'X' "
* IV_CHUSER = "SAP System, User Logon Name
* IS_FOREIGN_CONF = "TMS Manager: Configuration
IMPORTING
ES_EXCEPTION = "
EXCEPTIONS
ALERT = 1
IMPORTING Parameters details for TMS_DLS_DOMLINK_MODIFICATION
IV_CONTROLLER - General Flag
Data type: FLAGOptional: No
Call by Reference: Yes
IT_FOREIGN_DOM - TMS CI: Transport Domains
Data type: TMSCDOMSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_FOREIGN_DOMT - TMS CI: Transport Domains (Texts)
Data type: TMSCDOMTSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_FOREIGN_DEST - TMS CI: Destinations
Data type: TMSCDESSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_FOREIGN_SYS - TMS CI: Systems
Data type: TMSCSYSSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_FOREIGN_SYST - TMS CI: Systems (Texts)
Data type: TMSCSYSTSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_FOREIGN_NFS - TMS CI: Transport Groups
Data type: TMSCNFSSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_FOREIGN_NFST - TMS CI: NFS Groups (Texts)
Data type: TMSCNFSTSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_FOREIGN_PCONF - TMS tp Profile Manager: Configuration
Data type: TMSPCONFSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_FOREIGN_PVERS - TMS tp Profile Manager: Version Information
Data type: TMSPVERSSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_FOREIGN_SRV - TMS SRV: Description of General Server Systems
Data type: TMSSRVSOptional: Yes
Call by Reference: No ( called with pass by value option)
IS_CONF - TMS Manager: Configuration
Data type: TMSMCONFOptional: No
Call by Reference: Yes
IT_FOREIGN_SRVT - TMS SRV: Texts for TMSSRV
Data type: TMSSRVTSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_FOREIGN_CONFIRM - TMS Table of QA Systems
Data type: TMSQCONFIRMSOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_SRCDOMAIN - TMS: Transport Domain
Data type: TMSCSYS-DOMNAMOptional: No
Call by Reference: No ( called with pass by value option)
IV_SRCSYSTEM - TMS: System Name
Data type: TMSCSYS-SYSNAMOptional: No
Call by Reference: No ( called with pass by value option)
IV_CI_CONF -
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IV_TP_CONF -
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IV_SRV_CONF -
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IV_CHUSER - SAP System, User Logon Name
Data type: SYUNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
IS_FOREIGN_CONF - TMS Manager: Configuration
Data type: TMSMCONFOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for TMS_DLS_DOMLINK_MODIFICATION
ES_EXCEPTION -
Data type: STMSCALERTOptional: No
Call by Reference: Yes
EXCEPTIONS details
ALERT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for TMS_DLS_DOMLINK_MODIFICATION 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_alert | TYPE STRING, " | |||
| lv_es_exception | TYPE STMSCALERT, " | |||
| lv_iv_controller | TYPE FLAG, " | |||
| lv_it_foreign_dom | TYPE TMSCDOMS, " | |||
| lv_it_foreign_domt | TYPE TMSCDOMTS, " | |||
| lv_it_foreign_dest | TYPE TMSCDESS, " | |||
| lv_it_foreign_sys | TYPE TMSCSYSS, " | |||
| lv_it_foreign_syst | TYPE TMSCSYSTS, " | |||
| lv_it_foreign_nfs | TYPE TMSCNFSS, " | |||
| lv_it_foreign_nfst | TYPE TMSCNFSTS, " | |||
| lv_it_foreign_pconf | TYPE TMSPCONFS, " | |||
| lv_it_foreign_pvers | TYPE TMSPVERSS, " | |||
| lv_it_foreign_srv | TYPE TMSSRVS, " | |||
| lv_is_conf | TYPE TMSMCONF, " | |||
| lv_it_foreign_srvt | TYPE TMSSRVTS, " | |||
| lv_it_foreign_confirm | TYPE TMSQCONFIRMS, " | |||
| lv_iv_srcdomain | TYPE TMSCSYS-DOMNAM, " | |||
| lv_iv_srcsystem | TYPE TMSCSYS-SYSNAM, " | |||
| lv_iv_ci_conf | TYPE C, " 'X' | |||
| lv_iv_tp_conf | TYPE C, " 'X' | |||
| lv_iv_srv_conf | TYPE C, " 'X' | |||
| lv_iv_chuser | TYPE SYUNAME, " | |||
| lv_is_foreign_conf | TYPE TMSMCONF. " |
|   CALL FUNCTION 'TMS_DLS_DOMLINK_MODIFICATION' " |
| EXPORTING | ||
| IV_CONTROLLER | = lv_iv_controller | |
| IT_FOREIGN_DOM | = lv_it_foreign_dom | |
| IT_FOREIGN_DOMT | = lv_it_foreign_domt | |
| IT_FOREIGN_DEST | = lv_it_foreign_dest | |
| IT_FOREIGN_SYS | = lv_it_foreign_sys | |
| IT_FOREIGN_SYST | = lv_it_foreign_syst | |
| IT_FOREIGN_NFS | = lv_it_foreign_nfs | |
| IT_FOREIGN_NFST | = lv_it_foreign_nfst | |
| IT_FOREIGN_PCONF | = lv_it_foreign_pconf | |
| IT_FOREIGN_PVERS | = lv_it_foreign_pvers | |
| IT_FOREIGN_SRV | = lv_it_foreign_srv | |
| IS_CONF | = lv_is_conf | |
| IT_FOREIGN_SRVT | = lv_it_foreign_srvt | |
| IT_FOREIGN_CONFIRM | = lv_it_foreign_confirm | |
| IV_SRCDOMAIN | = lv_iv_srcdomain | |
| IV_SRCSYSTEM | = lv_iv_srcsystem | |
| IV_CI_CONF | = lv_iv_ci_conf | |
| IV_TP_CONF | = lv_iv_tp_conf | |
| IV_SRV_CONF | = lv_iv_srv_conf | |
| IV_CHUSER | = lv_iv_chuser | |
| IS_FOREIGN_CONF | = lv_is_foreign_conf | |
| IMPORTING | ||
| ES_EXCEPTION | = lv_es_exception | |
| EXCEPTIONS | ||
| ALERT = 1 | ||
| . " TMS_DLS_DOMLINK_MODIFICATION | ||
ABAP code using 7.40 inline data declarations to call FM TMS_DLS_DOMLINK_MODIFICATION
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.| "SELECT single DOMNAM FROM TMSCSYS INTO @DATA(ld_iv_srcdomain). | ||||
| "SELECT single SYSNAM FROM TMSCSYS INTO @DATA(ld_iv_srcsystem). | ||||
| DATA(ld_iv_ci_conf) | = 'X'. | |||
| DATA(ld_iv_tp_conf) | = 'X'. | |||
| DATA(ld_iv_srv_conf) | = 'X'. | |||
Search for further information about these or an SAP related objects