MailItem UserProperties in OWA (Outlook Web Access)

  • Thread starter Thread starter nigol69
  • Start date Start date
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
 
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.
 
Back
Top