Hi,
I have a client who has a custom Navision Form that needs to be redone as a page. This form sets fields and labels as Visible = true or visible = false depending on the type of record you are viewing.
Can I do this with FIELDS in a (card type) page? I was able to do something similar with a filter in a different (list type) page by using set Range then currPage.update; but in this Page every time I put in currPage.update it says:
Microsoft Dynamics NAV
You cannot make any changes in the database until a transaction has been started.
Page View - Barter Item Card must close.
OK
Any ideas would be appreciated. Thanks!
0
Comments
try with CurrPage.UPDATE(FALSE)
Create a boolean variable that will serve as the value of whether or not a field will display. Set the IncludeInDataset property of it to Yes. Change the visibility of the boxes to be YourVariable or NOT YourVariable accordingly.