Question
new
Hi All,
I am getting this error, "Interface Definition: Expression evaluation error at function a!dateField: Cannot compare incompatible operands of type CS_Vehicle and type Date with Timezone."
here is my code,
a!dateField(
label: "Date of Manufacturing :",
required: true(),
value: local!manDate,
saveInto: {local!manDate,a!save(ri!Vehicle.ManufacturingDate,save!value)},
helpTooltip: "It will be present on the Registartion details",
validations: if(
local!manDate >= today(),
"Manufacuted date should not be Today or Future",
{}
)
)
Thanks In Advance.
