Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
changevalueobjectpropertiesscripts [2020/05/14 00:04] wikiadmin |
changevalueobjectpropertiesscripts [2020/11/29 13:08] (current) wikiadmin |
||
---|---|---|---|
Line 27: | Line 27: | ||
<code JavaScript> | <code JavaScript> | ||
//this changes the AlwaysSend of the incoming ValueObject to false | //this changes the AlwaysSend of the incoming ValueObject to false | ||
- | var ValueObjectInterface = Java.type(" | ||
vo=incomingValue; | vo=incomingValue; | ||
Line 34: | Line 33: | ||
</ | </ | ||
+ | ** Convert the timestamp of the incoming value to a SQL Date/Time ** | ||
+ | <code JavaScript> | ||
+ | new Date(incomingValue.getDate()).toISOString().slice(0, | ||
+ | </ | ||
+ | The string can then be used to build a SQL statement |