Multidomain MDM
- Multidomain MDM 10.4 HotFix 1
- All Products
Parameter | Description |
---|---|
SiperianObjectUid | Name and type of the package or base object to be promoted. |
XrefKey | Key to uniquely identify the record to be promoted. |
SystemName | Name of system for which XREF must be promoted. |
SourceKey | Source key of the cross-reference record that must be promoted. |
Parameter | Description |
---|---|
ColumnNames | Names of columns that must be promoted to the ACTIVE state. Data is lost after promotion, in case of columns that are not specified. This parameter is only available for online promotion and is ignored when the FlagForPromote parameter is set to true. |
FlagForPromote | Flags records for promote when set to true. The records are promoted when the batch process is executed in the MDM Hub. |
PeriodStartDate | This parameter is used to specify the period start date for timeline-enabled base objects. |
PeriodEndDate | This parameter is used to specify the period end date for timeline-enabled base objects. |
PromotePendingXrefsRequest request = new PromotePendingXrefsRequest(); ArrayList columnNames = new ArrayList(); columnNames.add("FIRST_NAME"); columnNames.add("LAST_NAME"); request.setColumnNames(columnNames); // Optional XrefKey xrefKey = new XrefKey(); xrefKey.setSourceKey("1234"); xrefKey.setSystemName("CRM"); ArrayList xrefKeys = new ArrayList(); xrefKeys.add(xrefKey); request.setXrefKeys(xrefKeys); // Required request.setSiperianObjectUID("PACKAGE.CUSTOMER_UPDATE"); //Required PromotePendingXrefsResponse response = (PromotePendingXrefsResponse) sipClient.process(request);
PromotePendingXrefsRequest request = new PromotePendingXrefsRequest(); XrefKey xrefKey = new XrefKey(); xrefKey.setSourceKey("1234"); xrefKey.setSystemName("CRM"); ArrayList xrefKeys = new ArrayList(); xrefKeys.add(xrefKey); request.setFlagForPromote(true); // Optional request.setXrefKeys(xrefKeys); // Required request.setSiperianObjectUID("PACKAGE.CUSTOMER_UPDATE"); //Required PromotePendingXrefsResponse response = (PromotePendingXrefsResponse) sipClient.process(request);