Dynamics NAV

Showing posts with label RTC. Show all posts
Showing posts with label RTC. Show all posts

Wednesday, 14 January 2015

One or more filters are not valid and will be ignored Message in NAVISION RTC

Today I tried to run (Preview) a Report with Date Filter and I got below confirmation message


Microsoft Dynamics NAV
---------------------------
One or more filters are not valid and will be ignored. Do you want to continue?
---------------------------
No   Yes
---------------------------




























Then I found that this is because of Wrong date format entered in Birth Date filter.
Date format in My system is set to DDMMYY and I entered as MMDDYY.

But this behavior is different in Classic Client (NAV2009R2).

I tried to enter same MMDDYY format in classic client Birth Date filed.

But It gives an error message as shown below
---------------------------
Microsoft Dynamics NAV Classic
---------------------------
'013150' is not a valid date.
---------------------------
OK 
---------------------------



How to Disable Personalization in NAV2013 RTC

In general to Customize/Personalize NAV2013 RTC, 

"Choose Column" and "Customize This Page" as shown below 





But we can stop disable these Custimizations/Personalizations using a setup in NAV2013 RTC

Go to Profiles page as below
CRONUS /Departments/Administration/Application Setup/RoleTailored Client/Profiles

Select Profile for which you want to disable personalization
Click on Edit
Set TRUE in "Disable Personalization Field".

Close RTC and Reopen

Now the above options are not available you have a look in the below screenshot for your reference.




Thursday, 25 December 2014

How to Debug RTC Pages in NAV2009

Debugging RTC Pages in NAV2009


   1.      Go to C:->Program Data-> Microsoft->Dynamics Nav->60->Server->Microsoft  Dynamics Nav Server->Source -> Codeunit. Here you can find the source of the pages DLL files written in C#, if the    pages are generated successfully.

   2.      Go to C:\Program Files (x86)\Microsoft Dynamics NAV\60\Service. Give full control to                      CustomSettings.config file.

   3.      Opne CustomSettings.config file. Make the enable debugging key to true by editing the following            settings for making the RTC page debugging possible :

 <add key="EnableDebugging" value="True"></add>

   4.      Run Visual Studio as Administrator.

    5.      Open the RTC page DLL file.

    6.      Go to Tools->Attach Process. Place check mark in Show Process from All Users check box.
    7.      Select the Nav Server process .

    8.      In the Page, put breakpoints wherever required.

    9.      Run RTC page in Nav. Then in Visual studio the code execution will be stopped at the break point.



               This way, you can make the RTC pages debugging possible.



                                                       ***Thank you very much***