Purpose
Extract timezone from the result of built-in function CurrentTime().
Issue
Here below formula syntax doesn't work:
Right(CurrentTime();10)
Error returned is the following: "The expression or sub-expression at position N in the 'Right' function uses an invalid data type. (IES 10037)"
Solution
Work around found consists in encapsulating the CurrentTime() function in an user-defined variable and update syntax as:
Right([MyTime];10)
where:
MyTime = CurrentTime()