Page Visibility Issue

LambaLamba Member Posts: 260
edited 2013-01-04 in NAV Three Tier
On transforming a form, code like:
CurrPage."Variant Filter".VISIBLE(TableSecurity."Variant Filter" IN [0,1,3,4]);
doesn't supports on page.
So, to make it work on page we make a variable say VariantFilterVisible(Boolean) and
assign it as true on On Init trigger on page initially and replace above code as

VariantFilterVisible :=TableSecurity."Variant Filter" IN [0,1,3,4];

and pass the VariantFilterVisible variable on the visible property of the field.
On compiling and running the page, it shows the error as:
The identifier "VariantFilterVisible" could not be found.

??

Comments

Sign In or Register to comment.