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
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