Is there a way to set default field value in Blaise language?
I'm trying to create a DATE field with the initial value set to the current date, but if I do this in the rules section DEP doesn't allow me to change the value.
Fields
mydate: DATETYPE
amt : integer
Rules
mydate := SYSDATE
mydate.ASK
amt.ASK
{doing like this Blaise resets mydate to SYSDATE as soon as I set the focus on amt.
I want to have initial value set to SYSDATE but being able to change the value to anything I want}
