Hi all,
I am trying an input validation to test if fields are not blank then Status will be changed to 'Committed'.
But I am getting this error 'Type conversion is not possible because 1 of the operators contains an invalid type. Text or Code'.
I have inserted my codes on After Get Record on the Item card.
Codes:
IF Description <> '' OR "Base Unit of Measure" <> '' THEN
"Warehouse Status" := "Warehouse Status"::Committed;
Thanks to respond to my query.
Liizz
0
Comments
IF (Description <> '') OR ("Base Unit of Measure" <> '') THEN
"Warehouse Status" := "Warehouse Status"::Committed;
ArcherPoint, Inc http://www.archerpoint.com
Blog: http://www.navisionworld.com
skkulla