MailItem UserProperties in OWA (Outlook Web Access)

N

nigol69

Hello,
I have developped an Outlook macro to create Support Ticket from an
email. The Support Ticket number is added as a UserProperties like
this :

Dim objMailItem As Outlook.MailItem
Dim objMyUserProperty As Outlook.UserProperty

Set objMailItem = objmyOlSel.Item(1)
Set objMyUserProperty = objMailItem.UserProperties.Add("ST", olText)
objMyUserProperty = "#12"

In outlook you can add easily the custom field in the Inbox current
view.

But in OWA (Outlook Web Access) you just have "FROM", "SUBJECT",
"RECEIVED", "SIZE" and "FLAG"

Is there a way to display this custom field in OWA ?
Thanks
 
K

Ken Slovak - [MVP - Outlook]

You'd have to write a custom OWA using JScript and install that on your IIS
server instead of the standard OWA. That means that you'd be writing new OWA
versions every time the stock OWA was updated (every new version and SP plus
many of the hot fixes).

If you want to do that I'd suggest posting in an Exchange group, that's not
an Outlook programming problem at all.
 
N

nigol69

Thanks Ken, I am going to ask in microsoft . public . exchange .
clients
regards

You'd have to write a customOWAusing JScript and install that on your IIS
server instead of the standardOWA. That means that you'd be writing newOWA
versions every time the stockOWAwas updated (every new version and SP plus
many of the hot fixes).

If you want to do that I'd suggest posting in an Exchange group, that's not
an Outlook programming problem at all.

--
Ken Slovak
[MVP - Outlook]http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Optionshttp://www.slovaktech.com/products.htm




Hello,
I have developped an Outlook macro to createSupportTicketfrom an
email. TheSupportTicketnumber is added as a UserProperties like
this :
Dim objMailItem As Outlook.MailItem
Dim objMyUserProperty As Outlook.UserProperty
Set objMailItem = objmyOlSel.Item(1)
Set objMyUserProperty = objMailItem.UserProperties.Add("ST", olText)
objMyUserProperty = "#12"
In outlook you can add easily the custom field in the Inbox current
view.
But inOWA(Outlook Web Access) you just have "FROM", "SUBJECT",
"RECEIVED", "SIZE" and "FLAG"
Is there a way to display this custom field inOWA?
Thanks- Masquer le texte des messages précédents -

- Afficher le texte des messages précédents -
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top