In Row-Update I am trying to set a timestamp.
I have my UserID from “{actionResult.UserID}”.
How do I see any date column that is available from actionResult?
Or do I switch to Expression for current date or system date?
Would that be something like Now() ?
If you open the debugger you can see what is in your dataview, like actionResult.
But there is also a Constant dataview you can utilize if it is not a previously stored value from a query, etc.
If you’re looking to just set today’s date, you can use Constant.Today
If you’re looking for a time stamp… you can also use Constant.CurrentTime… but it will return an integer you may have to convert to a time stamp.
2 Likes
Thank you!
I think Constant.Today is what I’m looking for.
1 Like