Hi guys,
I would like to use JavaScript to update a record in the recipient table.
I use the session.Write-function. How can I insert the current time into the date field "lastUpdate" in the schema for recipient "12345"?
xtk.session.Write(<recipient _operation="update" _key="@id" lastUpdate={getDate()} id="12345" xtkschema="nms:recipient"/>);
getDate does not work.
Thanks for your help in advance.
Greetings,
Tim
Solved! Go to Solution.
Hi Tim,
This works well.
var modifiedDate = formatDate(new Date(), "%4Y-%2M-%2D %02H:%02N:%02S")
xtk.session.Write(<recipient _operation="update" _key="@id" lastUpdate={modifiedDate} id="12345" xtkschema="nms:recipient"/>);
Hello Tim,
Please use getCurrentDate() in pure Javascript code, not GetDate().
GetDate() is used in:
But there is an attribute lastModified in the schema nms:recipient (sql table column: NmsRecipient.tsLastModified), so I wonder what is LastUpdate field ?
Or is it new field of ACS ? (I use Adobe Campaign v6.1.1).
Regards
J-Serge
Hi Tim,
This works well.
var modifiedDate = formatDate(new Date(), "%4Y-%2M-%2D %02H:%02N:%02S")
xtk.session.Write(<recipient _operation="update" _key="@id" lastUpdate={modifiedDate} id="12345" xtkschema="nms:recipient"/>);
Views
Likes
Replies