![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
We're using an Exchange public folder to store contact records for prospects.
Each employee can contribute contacts to this folder but we want to keep track of who created them. If a user creates a contact in their personal contact folder and then drags the contact to the public folder, the "from" field is properly set to their name. Somehow, one employee created a large group of contacts in the public folder that have no "From" field. When we open the contact, this field cannot be set. Is there any way to fix these or will they all have to be re-created? |
Ads |
#2
|
|||
|
|||
![]()
Maybe have that person move them out and then copy them back in. Copying creates new items.
-- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Sequoya" wrote in message ... We're using an Exchange public folder to store contact records for prospects. Each employee can contribute contacts to this folder but we want to keep track of who created them. If a user creates a contact in their personal contact folder and then drags the contact to the public folder, the "from" field is properly set to their name. Somehow, one employee created a large group of contacts in the public folder that have no "From" field. When we open the contact, this field cannot be set. Is there any way to fix these or will they all have to be re-created? |
#3
|
|||
|
|||
![]()
That's what I thought too. I've tried copying/moving them out and back in
several times but the "from" field doesn't get updated. "Sue Mosher [MVP-Outlook]" wrote: Maybe have that person move them out and then copy them back in. Copying creates new items. -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Sequoya" wrote in message ... We're using an Exchange public folder to store contact records for prospects. Each employee can contribute contacts to this folder but we want to keep track of who created them. If a user creates a contact in their personal contact folder and then drags the contact to the public folder, the "from" field is properly set to their name. Somehow, one employee created a large group of contacts in the public folder that have no "From" field. When we open the contact, this field cannot be set. Is there any way to fix these or will they all have to be re-created? |
#4
|
|||
|
|||
![]()
I now know that the contacts in question (without a "from" field) were
created by importing them into Outlook. I've also done some experimenting and it appears that the only time this field is set by Outlook is when a contact is created interactively through the New Contact dialog. We still have a large number of contacts with a blank "from" field that we need to correct. I have not found a way to fix this without 1) re-creating them by hand, or 2) saving each as a vCard and "re-creating" them by opening and saving the vCards as contacts. Needless to say, both of these methods are cumbersome for a large number of contacts. Since the "from" field is just another database field there has to be a way to correct this. Since I'm a programmer, I've even looked through my docs on the Outlook object model to see if there's a way to set this programmatically. It appears the field is set by the Post() method but I don't see a way to re-set it after the fact. Any ideas out there? Thanks! "Sequoya" wrote: We're using an Exchange public folder to store contact records for prospects. Each employee can contribute contacts to this folder but we want to keep track of who created them. If a user creates a contact in their personal contact folder and then drags the contact to the public folder, the "from" field is properly set to their name. Somehow, one employee created a large group of contacts in the public folder that have no "From" field. When we open the contact, this field cannot be set. Is there any way to fix these or will they all have to be re-created? |
#5
|
|||
|
|||
![]()
I am having the same issue with one of my users. Any idea on how to
change these entries would be greatly appreciated. Sequoya wrote: I now know that the contacts in question (without a "from" field) were created by importing them into Outlook. I've also done some experimenting and it appears that the only time this field is set by Outlook is when a contact is created interactively through the New Contact dialog. We still have a large number of contacts with a blank "from" field that we need to correct. I have not found a way to fix this without 1) re-creating them by hand, or 2) saving each as a vCard and "re-creating" them by opening and saving the vCards as contacts. Needless to say, both of these methods are cumbersome for a large number of contacts. Since the "from" field is just another database field there has to be a way to correct this. Since I'm a programmer, I've even looked through my docs on the Outlook object model to see if there's a way to set this programmatically. It appears the field is set by the Post() method but I don't see a way to re-set it after the fact. Any ideas out there? Thanks! "Sequoya" wrote: We're using an Exchange public folder to store contact records for prospects. Each employee can contribute contacts to this folder but we want to keep track of who created them. If a user creates a contact in their personal contact folder and then drags the contact to the public folder, the "from" field is properly set to their name. Somehow, one employee created a large group of contacts in the public folder that have no "From" field. When we open the contact, this field cannot be set. Is there any way to fix these or will they all have to be re-created? |
#6
|
|||
|
|||
![]()
Two possible programmatic solutions:
1) Use the Copy method to create a copy of the item, then save it and discard the original. 2) Use Redemption or CDO to set the MAPI property that holds the informaton -- PR_SENDER_NAME (0x0C1A001E). -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Sequoya" wrote in message ... I now know that the contacts in question (without a "from" field) were created by importing them into Outlook. I've also done some experimenting and it appears that the only time this field is set by Outlook is when a contact is created interactively through the New Contact dialog. We still have a large number of contacts with a blank "from" field that we need to correct. I have not found a way to fix this without 1) re-creating them by hand, or 2) saving each as a vCard and "re-creating" them by opening and saving the vCards as contacts. Needless to say, both of these methods are cumbersome for a large number of contacts. Since the "from" field is just another database field there has to be a way to correct this. Since I'm a programmer, I've even looked through my docs on the Outlook object model to see if there's a way to set this programmatically. It appears the field is set by the Post() method but I don't see a way to re-set it after the fact. Any ideas out there? Thanks! "Sequoya" wrote: We're using an Exchange public folder to store contact records for prospects. Each employee can contribute contacts to this folder but we want to keep track of who created them. If a user creates a contact in their personal contact folder and then drags the contact to the public folder, the "from" field is properly set to their name. Somehow, one employee created a large group of contacts in the public folder that have no "From" field. When we open the contact, this field cannot be set. Is there any way to fix these or will they all have to be re-created? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to set holidays as "Out of office" in "Show time as" field? | TFS | Outlook - Calandaring | 0 | May 22nd 06 03:40 PM |
Removing unwanted "Auto Complete" addresses from the "To:" field? | Pilgrim | Outlook - General Queries | 1 | May 1st 06 07:15 PM |
Want Company Name to appear in "Contact" field when linked w/conta | Kelli in Venice | Outlook - Using Contacts | 1 | April 9th 06 07:57 PM |
"Notes" field on contact form | kleivakat | Outlook - Using Contacts | 0 | February 20th 06 02:58 PM |
how do I set the "show time as" field in the Outlook holiday file | Robert Garrucho | Outlook - Calandaring | 3 | January 27th 06 04:11 PM |