RTC menu does not appear new items
bill
Member Posts: 100
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?
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
-
What is the Menusuite ID?0
-
It is the 10800
-
make sure you are connecting to correct database..0
-
I am sure.
The only i can see is that when i inserted the chart generator fob. Another menu was created the 1090.0 -
So you will see the highest ID menusuite always..
for time being you can delete 1090 and try..0 -
Thank you very much for your help, it worked.
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 ?0 -
Did you set Default Role Center of Order processing profile to true or not?
also make sure that no other profile is assigned to you in user Personalisation..0 -
Excellent, there profile id in user personalization table had a value. Thank you very much.
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.0 -
I dont think so..
Can you show us the code?0 -
Of course:
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.0 -
Try to loop through the records and modify each..
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); IF VendLedgEntry.FINDSET THEN REPEAT VendLedgEntry.Open := OpenFlag; VendLedgEntry.MODIFY; UNTIL VendLedgEntry.NEXT = 0;0 -
I have already done this, i tried everything. My business code works only when the first method is completed. The design of this method is that i call a codeunit, the codeunit sefilter some records from vendor ledger entry and the opens a runmodal form with those entries. Then the user is selecting some records (setselectionfilter method). Then the code is proceeding with some business logic. In this business logic code, is executed the piece of code you saw before.0
-
Hi
are you passing the record by Variable, to edit it inside your codeunit?0 -
Yes, i am passing the record by variable0
Categories
- All Categories
- 75 General
- 75 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 610 NAV Courses, Exams & Certification
- 1.9K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 251 Dynamics CRM
- 103 Dynamics GP
- 6 Dynamics SL
- 1.5K Other
- 991 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 28 Design Patterns (General & Best Practices)
- Architectural Patterns
- 9 Design Patterns
- 4 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1K General Chat
- 1.6K Website
- 77 Testing
- 1.2K Download section
- 23 How Tos section
- 249 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions
