Hi there!
I am searching for a date object that contains the current system date. Once I have this, I want to subtract 30 days and get therefore get another date. Does anybody know how I can access the system date in the ARIS scripting language? And are there possiblities to format the date (e.g. DD.MM.YY) to compare it with other dates from user defined attributes?
Thanks in advance!
Markus
Charles Tarel on
Hello Markus,
you can use the standard Date() object in javascript to achieve that:
If you prefer a more precise time you can use today.getTime(), that will return the number of millisecond since 01/01/1970. I hope it helps.