Hello,
I Have reviewd the Doc http://communities.quest.com/docs/DOC-10367 which details Customizing Notification Message in ActiveRoles Server 6.x ; in particular the point in which you can localise the time from "RequestTime"
Now we can simply use .NET DateTime.ToLocalTime method to convert value of current DateTime object to local time.
<%=(Operation.RequestTme.HasValue) ? Operation.RequestTime.Value.ToLocalTime().ToString() : String.Empty%>
This is great! ...
BUT..
How do I do this for a custom VA that uses GeneralizedTime
example:
Operation.Target.["edsvaCustomTimeStamp"]
Thanks in Advance!
Phil