Multidomain MDM
- Multidomain MDM 10.4 HotFix 3
- All Products
Parameter
| Description
|
---|---|
SiperianObjectUid
| Name and type of the package or base object to be deleted.
|
SystemName
| Name of the system for which the record must be deleted.
|
RecordKey
| Key to uniquely identify the record to be deleted.
|
SourceKey
| Source key of the record that must be deleted.
|
Parameter
| Description
|
---|---|
deleteBORecord
| If
true , the record is deleted at the base object level. The Delete API deletes the base object record and all its cross-reference records. You must have delete privileges for the base object or the parent base object.
If
false , the Delete API deletes the record specified by the RecordKey and SourceKey parameters.
|
deleteAsSMOS
| If
true , the hub state of the record is set to deleted by the state management override system, and this takes precedence over active records from other source systems. Default is false.
|
DeleteRequest request = new DeleteRequest(); RecordKey recordKey = new RecordKey(); recordKey.setSourceKey("1234"); recordKey.setSystemName("CRM"); ArrayList recordKeys = new ArrayList(); recordKeys.add(recordKey); request.setRecordKeys(recordKeys); // Required request.setSiperianObjectUID("PACKAGE.CUSTOMER_UPDATE"); //Required DeleteResponse response = (DeleteResponse) sipClient.process(request);