Hi,
Can you please tell me how to put the system date into CAPI text.
Thanks
System Date as a CAPI text
-
justinlakier
- Posts: 238
- Joined: November 21st, 2022, 4:41 pm
Re: System Date as a CAPI text
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
Hope this helps,
Justin
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"))~~
Justin