Hi Jason,
I apologize for being a complete Java Noob.
Obviously, it's not as simple as copying and pasting your code into the Java script?
There is in fact no script currently on my form.
So I have started a new script

The script below
{
checkFrmData: function() {
ca_fd.js.displaymydate();
},
displaymydate: function() {
var etime=ca_fdGetDateFieldValueInMillis(ca_fd.formId,'date_1')
var d= new Date();
d.setTime(etime);
ca_fdGetDateFieldValueInMillis(ca_fd.formId,'date_1')
console.log('Day of week: '+d.getDay());
}
}
The function is then called displaymydate in the OnChange date field

As per below pic, now every time I change the date it gets written into the console log.
So it looks like I'm getting closer.
How would I then pass this through to ITPAM?
Is it possible to pass the value in the console log into the text field below the date every time the value of date changes?
If I hide this field from the user, Catalog will then still pass through the day number into ITPAM for further processing, after submission?
