Multidomain MDM
- Multidomain MDM 10.4 HotFix 3
- All Products
Parameter | Description |
---|---|
objectUid | Each object defined in Informatica MDM Hub has a unique identifier of the form < , for example, objectType >.<objectName >PACKAGE.CUSTOMER_READ . ObjectUid specifies which object's metadata is returned in the DescribeSiperianObjects response. Use the objectUid MATCH_KEY. <base_object_name> to request the match key of a base object. For a list of valid object types, see SiperianObjectUID. |
Field | Type | Description |
---|---|---|
objects | List | A list of returned metadata for the objects specified in the request. |
Field | Type | Description |
---|---|---|
fuzzyColumn | Boolean | The value is true if the match column is a fuzzy column. |
columns | List | The list of UIDs for the columns that make up this match column. UIDs are formed as COLUMN.< base_object_name >|<column_name >. |
DescribeSiperianObjectRequest request = new DescribeSiperianObjectRequest(); request.setOrsId("orcl-VER_IDD"); ArrayList objectUids = new ArrayList(); objectUids.add(SiperianObjectType.BASE_OBJECT.makeUid("C_PARTY")); objectUids.add(SiperianObjectType.BASE_OBJECT.makeUid("C_ADDRESS")); request.setUids(objectUids); DescribeSiperianObjectResponse response = (DescribeSiperianObjectResponse)sipClient.process(request);