Hi Guys,
I am currently working on a list page where i have to make the field editable/non-editable based on the changes of two other fields conditionally.
I have declared a global variable of boolean type(isEditable) and tried to set the value using a condition and it is not worked. I have used the below trigger on the field which is supposed to change editable/non-editable based on condition
trigger OnValidate()
begin
if rec.field1=value1 and rec.field2=value2 then
isEditable:=false;
end;
Is there any other way to make this work?
Any help on this would be much appreciated.
Thanks,
Tamilarasu Arunachalam