SAP DMC_MDS_SET_IDENTS_BASIC_INFO Function Module for Set Idents and Basic Info
DMC_MDS_SET_IDENTS_BASIC_INFO is a standard dmc mds set idents basic info SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Set Idents and Basic Info 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 dmc mds set idents basic info FM, simply by entering the name DMC_MDS_SET_IDENTS_BASIC_INFO into the relevant SAP transaction such as SE37 or SE38.
Function Group: DMC_MDS_ANALYSIS_TOOLS
Program Name: SAPLDMC_MDS_ANALYSIS_TOOLS
Main Program: SAPLDMC_MDS_ANALYSIS_TOOLS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DMC_MDS_SET_IDENTS_BASIC_INFO 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 'DMC_MDS_SET_IDENTS_BASIC_INFO'"Set Idents and Basic Info.
EXPORTING
I_RFCSND = "Logical Destination (Specified in Function Call)
I_RFCRCV = "Logical Destination (Specified in Function Call)
I_OBJ_GUID = "DMC: Globally Unique Key (22 Characters)
I_TABNAME = "Table Name
I_LOG_TABNAME = "Table Name
I_RSDATE = "Date and Time, Current (Application Server) Date
I_RSTIME = "Date and Time, Current Application Server Time
I_MT_ID = "DMC: Indicator for Mass Transfer
I_REPTY = "Compare data: Report Type
CHANGING
X_OK = "boolean variable (X=true, -=false, space=unknown)
XS_COMPARE = "Table for compare result for table
IMPORTING Parameters details for DMC_MDS_SET_IDENTS_BASIC_INFO
I_RFCSND - Logical Destination (Specified in Function Call)
Data type: RFCDESTOptional: No
Call by Reference: Yes
I_RFCRCV - Logical Destination (Specified in Function Call)
Data type: RFCDESTOptional: No
Call by Reference: Yes
I_OBJ_GUID - DMC: Globally Unique Key (22 Characters)
Data type: DMC_GUIDOptional: No
Call by Reference: Yes
I_TABNAME - Table Name
Data type: TABNAMEOptional: No
Call by Reference: Yes
I_LOG_TABNAME - Table Name
Data type: TABNAMEOptional: No
Call by Reference: Yes
I_RSDATE - Date and Time, Current (Application Server) Date
Data type: SYDATUMOptional: No
Call by Reference: Yes
I_RSTIME - Date and Time, Current Application Server Time
Data type: SYUZEITOptional: No
Call by Reference: Yes
I_MT_ID - DMC: Indicator for Mass Transfer
Data type: DMC_MT_IDENTIFIEROptional: No
Call by Reference: Yes
I_REPTY - Compare data: Report Type
Data type: DMC_COMPARE-REPORT_TYPEOptional: No
Call by Reference: Yes
CHANGING Parameters details for DMC_MDS_SET_IDENTS_BASIC_INFO
X_OK - boolean variable (X=true, -=false, space=unknown)
Data type: BOOLEANOptional: No
Call by Reference: Yes
XS_COMPARE - Table for compare result for table
Data type: DMC_COMPAREOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for DMC_MDS_SET_IDENTS_BASIC_INFO 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_x_ok | TYPE BOOLEAN, " | |||
| lv_i_rfcsnd | TYPE RFCDEST, " | |||
| lv_i_rfcrcv | TYPE RFCDEST, " | |||
| lv_xs_compare | TYPE DMC_COMPARE, " | |||
| lv_i_obj_guid | TYPE DMC_GUID, " | |||
| lv_i_tabname | TYPE TABNAME, " | |||
| lv_i_log_tabname | TYPE TABNAME, " | |||
| lv_i_rsdate | TYPE SYDATUM, " | |||
| lv_i_rstime | TYPE SYUZEIT, " | |||
| lv_i_mt_id | TYPE DMC_MT_IDENTIFIER, " | |||
| lv_i_repty | TYPE DMC_COMPARE-REPORT_TYPE. " |
|   CALL FUNCTION 'DMC_MDS_SET_IDENTS_BASIC_INFO' "Set Idents and Basic Info |
| EXPORTING | ||
| I_RFCSND | = lv_i_rfcsnd | |
| I_RFCRCV | = lv_i_rfcrcv | |
| I_OBJ_GUID | = lv_i_obj_guid | |
| I_TABNAME | = lv_i_tabname | |
| I_LOG_TABNAME | = lv_i_log_tabname | |
| I_RSDATE | = lv_i_rsdate | |
| I_RSTIME | = lv_i_rstime | |
| I_MT_ID | = lv_i_mt_id | |
| I_REPTY | = lv_i_repty | |
| CHANGING | ||
| X_OK | = lv_x_ok | |
| XS_COMPARE | = lv_xs_compare | |
| . " DMC_MDS_SET_IDENTS_BASIC_INFO | ||
ABAP code using 7.40 inline data declarations to call FM DMC_MDS_SET_IDENTS_BASIC_INFO
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 REPORT_TYPE FROM DMC_COMPARE INTO @DATA(ld_i_repty). | ||||
Search for further information about these or an SAP related objects