Multidomain MDM
- Multidomain MDM 10.3 HotFix 1
- All Products
Parameter
| Description
|
---|---|
SiperianObjectUid
| Name and type of the package or base object to be queried.
|
RecordKey
| Key to uniquely identify the record for which BVT must be retrieved.
|
Parameter
| Description
|
---|---|
EffectiveDate
| The date for which you must retrieve values of the base object.
EffectiveDate must be used only for timeline-enabled base objects.
|
HistoryDate
| The date for which you retrieve base object data that is effective at the specified point in time. If HistoryDate is equal to or earlier than HIST_CREATE_DATE, no records are returned.
For Oracle environments, milliseconds for the HistoryDate are truncated. If HistoryDate is later than HIST_CREATE_DATE by less than a second, no records are returned. If you have Daylight Saving Time (DST) enabled for the operating system and HistoryDate is later than HIST_CREATE_DATE by less than one hour during DST, no records are returned.
HistoryDate must be used only for timeline-enabled base objects.
|
IncludePending
| If set to
true , it includes pending records in BVT calculation. The default is
false.
|
GetBvtRequest getBvtRequest = new GetBvtRequest(); getBvtRequest.setSiperianObjectUid(SiperianObjectType.PACKAGE.makeUid("ADDRESS_UPDATE") ); RecordKey recordKey = new RecordKey(); recordKey.setRowid("21"); getBvtRequest.setRecordKey(recordKey); getBvtRequest.setIncludePending(false); GetBvtResponse getBvtResponse = sipClient.process (getBvtRequest);