Multidomain MDM
- Multidomain MDM 10.3 HotFix 1
- All Products
Parameter
| Description
|
---|---|
SiperianObjectUid
| Name and type of base object or package for which you must get the XREF for a specified effective date.
|
RecordKey
| Key to uniquely identify the record for which you must get the XREF for a specified effective date.
|
SystemNames
| Names of systems for which XREF and XREF history must be retrieved.
|
EffectiveDate
| The date for which you must retrieve values of the base object.
EffectiveDate must be used only for timeline-enabled base objects.
|
Parameter
| Description
|
---|---|
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 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.
|
OtherPeriods
| Periods that do not encompass the specified effective date. If set to
true , XREF records are retrieved for all periods that do not encompass the specified effective date. The default is
false and the GetXrefForEffectiveDate API retrieves XREF records for periods that encompass the specified effective date.
|
RecordStates
| System state of the XREF record. The record can be in ACTIVE, PENDING, or DELETED state.
|
DataFilter
| Used by IDD to apply security filter.
|
GetXrefForEffectiveDateRequest req=new GetXrefForEffectiveDateRequest(); req.setUsername("admin"); Password passwd=new Password(); passwd.setPassword("admin"); passwd.setEncrypted(false); req.setOrsId("orcl.informatica.com-cmx_ors"); RecordKey rec=new RecordKey(); rec.setRowid("28"); req.setRecordKey(rec); req.setSiperianObjectUid("BASE_OBJECT.C_BO"); Date date=new Date(2011, 10, 10); req.setEffectiveDate(date); GetXrefForEffectiveDateResponse response = (GetXrefForEffectiveDateResponse)client.process(req);