Where to Find the EntryID in BCM SQL Database

  • Thread starter Thread starter Patrick Pohlmann
  • Start date Start date
P

Patrick Pohlmann

Hi,

while linking a contact to a company, BCM will add the ParentEntryID to the
Database in the Table "ContactMainTable".

But I can´t find the EntryID of a record in any table. Is there any table on
the SQL Database where I can find the EntryID related to the
ContactServiceID? The mainly used primery key seems to be "ContactServiceID"
not the EntryID.

Thank you for your help.

Regards

Patrick!
 
EntryGUID's can be accessed with the public views of Accounts and Contacts,
but not for other entities. EntryGUID cannot be accessed thru the Object
Model.

-Sat
 
EntryGUID's can be accessed with the public views of Accounts and Contacts,
but not for other entities. EntryGUID cannot be accessed thru the Object
Model.

-Sat








- Show quoted text -

Outlook uses an entryid to identify objects that is a combination of
the entry's type (or folder) and the entry's unique id, a guid.

The entry's record in a BCM database also has an integer id that's
used for relationships between the records in different tables. Using
an integer for that is much faster than using guid or entryids.

You can look into the database's views definitions and procedures to
see how the relationships are used.
 
Back
Top