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.
 

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