Hi all,
i have an issue. I had created a menu in Navision 2009 for rtc concerning my solution. I had folders and subfolders with my pages etc. Now i want to insert a new Folder with reports and pages in my custom menu but i can see nothing when i run the role tailored client. I restart the services, synchronized the logins but nothing.
Any idea?
0
Comments
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
The only i can see is that when i inserted the chart generator fob. Another menu was created the 1090.
for time being you can delete 1090 and try..
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
Now i have another issue. I had created my own user profile with id 50009. Yesterday i was testing it and updated it as default in order to view the changes. When i was updated again to default = false the standard role tailored client profile was appeared. Now the Role tailored client is appearing always with my own profile either it is updated to true or false. How can i return to RTC original profile.
Any idea ?
also make sure that no other profile is assigned to you in user Personalisation..
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
I have noticed something very strange, i don't know if this happens to your business code.
I have a process that opens in run modal a page and after a user selection with setselectionfilter method, the code in codeunits is proceeding with some modifications in Vendor ledger entry table. Actually the modification code is searching the vendor ledger entry and is modifying the Open flag.
In classic client everything is ok but in RTC when the Modify is executed it is also modify and some other fields like document no to blank.
What do you think? I searched here and find out that there is a problem with modification procedures.
Can you show us the code?
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
VendLedgEntry variable is the Vendor ledger entry table
VendLedgEntry.SETCURRENTKEY("Document No.","Document Type","Vendor No.");
VendLedgEntry.SETRANGE("Document No.", DocumentNo);
VendLedgEntry.SETRANGE("Document Type", DocumentType);
VendLedgEntry.SETRANGE("Vendor No.", VendorNo);
IF EntryNo <> 0 THEN
VendLedgEntry.SETRANGE("Entry No.",EntryNo);
VendLedgEntry.MODIFYALL(Open,OpenFlag);
This code for some reason when executed if makes blank and other fields like document no. The code is located in a codeunit.
In classic client i don't have an issue but in rtc i have the aforementioned issue.
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
are you passing the record by Variable, to edit it inside your codeunit?