//IF TEST = 1 //{ ASSIGN MyDateTime = #"{now}" //} //asgmt -- [String expression] Converts the contents of the variable to a //date/time string formatted TO RFC 1123 which is “ddd, dd MMM yyyy HH:mm:ss gmt”. //Example: “Mon, 03 Oct 2009 13:35:14 gmt”. //[Numeric expression] Converts the contents of the variable TO an OLE //automation date/time translated TO Coordinated Universal time (utc). //The variable must contain a valid string representation of a date/time. //The source time is based on the business unit time zone OR the time zone //set through the TIMEZONE script action. ASSIGN GMTDateTimeNumeric = MyDateTime.asgmt ASSIGN GMTDateTimeString = "{GMTDateTimeNumeric.asdatetime}" //asutc -- This is a synonym for asgmt. ASSIGN UTCDateTimeNumeric = MyDateTime.asutc ASSIGN UTCDateTimeString = "{UTCDateTimeNumeric.asdatetime}"