I have a custom form to be transformed to a page.
I did it, after transforming it shows the error:
Microsoft Dynamics NAV Classic
You have specified an unknown variable.
PostingButton
Define the variable under 'Global C/AL symbols'.
OK
In form it refers to Posting Button, by using F5 i can't find the PostingButton on the Page, but is present in Form.
I have tried creating a variable both in global and local.
0
Comments
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
I have got the solution.The code was CurrPage.PostingButton.Enabled(False);
So i have created a Global Boolean Variable Named PostingButtonVisible and replaced the code as
//CurrPage.PostingButton.Enabled(False);
PostingButtonVisible :=False;
and then placed the PostingButtonVisible Boolean in the Enable property and it works now.
Thanx for ur time.
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav