You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi I want to set CET time in a interface xml file which I generate in my current gel script, the current code in which timestamp must be is added is below .
<gel:script xmlns:core="jelly:core" xmlns:email="jelly:email" xmlns:file="jelly:com.niku.union.gel.FileTagLibrary"
xmlns:gel="jelly:com.niku.union.gel.GELTagLibrary" xmlns:soap="jelly:com.niku.union.gel.SOAPTagLibrary"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sql="jelly:sql" xmlns:xog="http://www.niku.com/xog"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="jelly:util">
!--Parameters passed here--
<core:set var="TS">
<gel:formatDate format="'D'ddMMyy.'T'hhmmss"/>
</core:set>
<core:set var="todayDate" >
<gel:formatDate format="ddMMyy"/>
</core:set>
<core:set var="logPath" value="/fs0/clarity1/share/Clarity/NE/toCmp/log/BI_LOG_MESSAGES.${todayDate}.log"/>
<core:set var="errorLogPath" value="/fs0/clarity1/share/Clarity/NE/toCmp/log/BI_LOG_ERROR.${todayDate}.log"/>
<core:file append="true" trim="false" omitXmlDeclaration="true" name="${logPath}">
My requirement is the file generated here must have the CET time.
Thank you in advance.
Regards