Catalog Variables of Time Type
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2022 02:51 AM
I would like to create a variable in the record producer that allows me to enter only the time.
Is this possible?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2022 03:07 AM
Hi,
There is no variable for only time,. I guess you can create 3 drop downs, one to store Hour, One for Minutes and one for seconds.
Check this out, might help
-Anurag
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2022 03:10 AM
Hello,
There are no Time variable on Record Producer. But you can create Date/time Variable abd then just get the time from that variable using the below script:-
var dateTimeStr = g_form.getValue('u_date_time');
var timeArr = dateTimeStr.split(' ');
var time = timeArr[1];
Please mark answer correct/helpful based on Impact.
Thanks.