Table of Contents

Search

  1. Preface
  2. Introduction to Services Integration Framework
  3. Setting Up the SIF SDK
  4. Request and Response Objects
  5. Transactions and Exception Handling
  6. ORS-Specific SIF API
  7. Asynchronous SIF Requests
  8. ORS-Specific JMS Event Messages
  9. Using Security Access Manager
  10. Using Dynamic Data Masking
  11. SIF API Reference
  12. Troubleshooting
  13. Appendix A: Identifiers
  14. Appendix B: Frequently Asked Questions

Services Integration Framework Guide

Services Integration Framework Guide

RecordKey

RecordKey

A RecordKey uniquely identifies a record in the MDM Hub. A record is a collection of fields that include a list of names and values. Each name in the record must be unique.
You can use a combination of the following parameters to identify a record:
  • rowid. The ROWID_OBJECT column value of the record.
  • systemName. Name of the system to which the record belongs.
  • sourceKey. The PKEY_SRC_OBJECT column value of the record.
  • GBID. Global Business Identifier of an object. You can use one or more GBIDs.
The following sample code uses the
PutRequest
object to insert a record based on the
recordKey
identifier:
… RecordKey recordKey = new RecordKey(); recordKey.setSystemName( systemName ); recordKey.setSourceKey( sourceKey ); … putRequest.setRecordKey(recordKey ); …

0 COMMENTS

We’d like to hear from you!