Page 1 of 1

System Date as a CAPI text

Posted: July 24th, 2024, 6:06 am
by Shalani
Hi,
Can you please tell me how to put the system date into CAPI text.
Thanks

Re: System Date as a CAPI text

Posted: July 25th, 2024, 9:46 am
by justinlakier
Hello,

You can find the date using SysDate(). Timestamp() can be used instead or in combination, as shown in the connected documentation. You can include a function or variable with the date in the CAPI question text by putting ~~ on either side of it, like so

Code: Select all

The date is ~~edit("9999-99-99",sysdate("YYYYDDMM"))~~
Hope this helps,
Justin

Re: System Date as a CAPI text

Posted: July 25th, 2024, 9:31 pm
by Shalani
Thanks lot