Multidomain MDM
- Multidomain MDM 10.4 HotFix 3
- All Products
Parameter | Description |
---|---|
SiperianObjectUid | Name and type of the package or base object to be restored. |
XrefKey | Key to uniquely identify the record to be restored. |
SystemName | Name of the system for which the record must be restored. |
SourceKey | Source key of the record that must be restored. |
Parameter | Description |
---|---|
PeriodStartDate | This parameter is used to specify the period start date for timeline-enabled objects. |
PeriodEndDate | This parameter is used to specify the period end date for timeline-enabled base objects. |
RestoreRequest request = new RestoreRequest(); 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 RestoreResponse response = (RestoreResponse) sipClient.process(request);