Sub AddContactsToAccount()
Dim olApp As Outlook.Application
Dim objNS As Outlook.NameSpace
Dim olFolders As Outlook.Folders
Dim bcmRootFolder As Outlook.Folder
Dim bcmAccountsFldr As Outlook.Folder
Dim bcmContactsFldr As Outlook.Folder
Dim newAcct As Outlook.ContactItem
Dim newContact1 As Outlook.ContactItem
Dim newContact2 As Outlook.ContactItem
Dim newContact3 As Outlook.ContactItem
Dim userProp As Outlook.UserProperty
Set olApp = CreateObject("Outlook.Application")
Set objNS = olApp.GetNamespace("MAPI")
Set olFolders = objNS.Session.Folders
Set bcmRootFolder = olFolders("Business Contact Manager")
Set bcmAccountsFldr = bcmRootFolder.Folders("Accounts")
Set newAcct = bcmAccountsFldr.Items.Add("IPM.Contact.BCM.Account")
newAcct.FullName = "World Wide Importers"
newAcct.FileAs = "World Wide Importers"
newAcct.Save
Set bcmContactsFldr = bcmRootFolder.Folders("Business Contacts")
Set newContact1 = bcmContactsFldr.Items.Add("IPM.Contact.BCM.Contact")
newContact1.FullName = "John Smith"
newContact1.FileAs = "John Smith"
If (newContact1.UserProperties("Parent Entity EntryID") Is Nothing) Then
Set userProp = newContact1.UserProperties.Add("Parent Entity EntryID", olText, False, False)
userProp.Value = newAcct.EntryID
End If
newContact1.Save
Set newContact2 = bcmContactsFldr.Items.Add("IPM.Contact.BCM.Contact")
newContact2.FullName = "Rajesh Rotti "
newContact2.FileAs = "Rajesh Rotti "
If (newContact2.UserProperties("Parent Entity EntryID") Is Nothing) Then
Set userProp = newContact2.UserProperties.Add("Parent Entity EntryID", olText, False, False)
userProp.Value = newAcct.EntryID
End If
newContact2.Save
Set newContact3 = bcmContactsFldr.Items.Add("IPM.Contact.BCM.Contact")
newContact3.FullName = "Isabel Martins"
newContact3.FileAs = "Isabel Martins"
If (newContact3.UserProperties("Parent Entity EntryID") Is Nothing) Then
Set userProp = newContact3.UserProperties.Add("Parent Entity EntryID", olText, False, False)
userProp.Value = newAcct.EntryID
End If
newContact3.Save
If (newAcct.UserProperties("PrimaryContactEntryID") Is Nothing) Then
Set userProp = newAcct.UserProperties.Add("PrimaryContactEntryID", olText, False, False)
userProp.Value = newContact3.EntryID
End If
newAcct.Save
Set newAcct = Nothing
Set newContact3 = Nothing
Set newContact2 = Nothing
Set newContact1 = Nothing
Set bcmContactsFldr = Nothing
Set bcmAccountsFldr = Nothing
Set bcmRootFolder = Nothing
Set olFolders = Nothing
Set objNS = Nothing
Set olApp = Nothing