cancel
Showing results for 
Search instead for 
Did you mean: 

Table or FM Related to SLT Connection

anjanban
Explorer
0 Kudos

Hi All,

Is there any table or function module which returns SLT connection details from where we can fetch the RFC or DB connection name of a specific SLT connection.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member182465
Active Participant
0 Kudos

Hi Anjana,

You can use what Francesco suggested or other option is

we can go to LTRC , click on configuration name or MT id and then click on Administration tab. In this we can see source RFC name and target hana connection if SAP to HANA connection.

This is should be repeated for each configuration. ( I have used second option as I have very less configurations used at my client system).

Hoping it answers your question. Please let me know if any info is needed.

Thanks

Abilash

francesco_alborghetti
Active Participant
0 Kudos

Hi Anjana,

Tables should be:

DMC_RFC_SETTINGS for RFC connections

IUUC_REPL_CONPAR for DB Connection


RFC connection is linked to mass transfer ID of you replication configuration.

Access to table IUUC_REPL_HDR via schema name (SCHEMA_NAME) = <your configuration>

From IUUC_REPL_HDR you can get mass transfer id using table IUUC_REPL_MAP (field MT_ID):

IUUC_REPL_MAP-CONFIG_GUID = IUUC_REPL_HDR-CONFIG_GUID

The mass transfer id is assigned to a DMC subproject in table DMC_MT_HEADER, field SUBPROJECT.

RFC Destinations are defined in table DMC_RFC_SETTINGS for the subproject:

DMC_RFC_SETTINGS-ORGUNIT = 2 (Subproject)

DMC_RFC_ORGIDENT = DMC_MT_HEADER-SUBPROJECT

In case of DB Connection, these parameters are stored in table IUUC_REPL_CONPAR:

IUUC_REPL_CONPAR-CONFIG_GUID = IUUC_REPL_HDR-CONFIG_GUID