So I'm trying to format the current date using the inline functions, to do this I'm using build string action. However, the build string action is not functioning properly.
When I use the common variables or the workflow variables, it returns the same input...
Input: fn-FormatDate({Common:CurrentDate}, {textstart}yyyy-MM-ddT{textend})
output: fn-FormatDate({Common:CurrentDate}, {textstart}yyyy-MM-ddT{endtext})
However, when I enter today's date manually, it works perfectly.
Input: fn-FormatDate(5/24/2015,{textstart}yyyy-MM-ddT{textend})
output:2015-05-24T
Why the workflow variables value is not showing as expected??