Sign in
Nav developer's blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.net
Basic SQL
C/AL
C/Front
Charts
Comcom
Configuration
Employee Portal
Excel
Installation
NAV 2009
NDT
OSYNCH
Outlook Integration
Performance
Report Design
RIM
SQL
Style Sheets
Transformation
undocumented
Upgrade
Web Services
XML
Zup File
Archive
Archives
October 2009
(1)
September 2009
(2)
August 2009
(3)
July 2009
(6)
June 2009
(4)
May 2009
(3)
April 2009
(3)
March 2009
(1)
February 2009
(3)
January 2009
(4)
December 2008
(3)
November 2008
(15)
October 2008
(9)
September 2008
(3)
August 2008
(4)
July 2008
(5)
June 2008
(4)
May 2008
(7)
April 2008
(6)
March 2008
(3)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Nav developer's blog
Goodbye Nav_Developer, hello NAV Team-blog
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
0
Comments
To make things just a little bit simpler, some of the NAV blogs have now been combined into the NAV Team Blog . So from now on, that is where we will blog. All content from this blog has already been migrated to the NAV Team Blog. So this post will...
Nav developer's blog
How using SQLIndex property can affect which index NAV uses
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
0
Comments
The usual rule for specifying a key in NAV is, that it will chose the first key that matches all the fields specified by SETCURRENTKEY, RunformLink, etc. Example: Table 21 "Cust. Ledger Entry" has the following keys (not all of them listed): - Entry...
Nav developer's blog
Problems in transformation forms to pages using TransformationTools
Posted
over 4 years ago
by
Gedas B
0
Comments
After Microsoft Dynamics NAV 2009 SP1 release more and more developers start using it and trying to adopt existing solutions for new 3tier environment. Most workload comes from trying to adopt current forms to new object - pages. Particularly transformation...
Nav developer's blog
Table Information including Index information (Usage, Blocks and Reads)
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
0
Comments
The query below combines these three queries into one: Index Usage Query Recent Bocking History Table Information Query It can be used to just see the number of records in each table. But also by just changing "ORDER BY", it can be used to see which...
Nav developer's blog
Troubleshooting multi-machine installations of NAV 2009
Posted
over 4 years ago
by
lalake
2
Comments
The NAV 2009 documentation walkthroughs provide step-by-step instructions for installing NAV 2009 on 2 or 3 machines. However, we have found that some of the same configuration issues come up time after time after installation. When on calls with partners...
Nav developer's blog
Translate this site using Windows Live Translator
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
0
Comments
A new translator service is now available for all whose browser is set to one of the following languages: English, German, French, Italian, Spanish, Portuguese, Netherlands Dutch, Russian, Chinese Simplified, Chinese Traditional, Japanese, Korean,...
Nav developer's blog
Index Usage Information Tool
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
0
Comments
Attached at the end of this post is a set of NAV objects that collects index usage information, and displays it in a NAV client so that you can sort tables by no. of Indexes / Index Reads / (Index) Block wait time, etc.: The tool is using these...
Nav developer's blog
Converting company names for NAV Web Services
Posted
over 4 years ago
by
Scott E. Wright
0
Comments
A few weeks ago I saw an up tick in the number of cases having problems accessing exposed web service. Some of the problem has been because the “CRONUS USA, Inc.” company name converts to an unfamiliar “CROUNS_USA_x002C__Inc”. This will be changing in...
Nav developer's blog
How to set dynamically the Key and Sort Order for the pages using NAV 2009 Web Services feature.
Posted
over 4 years ago
by
dtacconi
0
Comments
The default methods exposed when a page is published are the so-called CRUD (Create, Read, Multiple and Delete) methods. All of those does not allow to set up previously a key for sorting order nor if the records have to be ascending or descending. In...
Nav developer's blog
How to read a SQL Profiler trace file into a SQL table
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
2
Comments
Just a small tip that I use often when I have a large SQL Profiler trace. Rather than reading through trace files line by line, you can read it into a table and then query it. This syntax creates a new table in SQL Server and loads your trace file into...
Nav developer's blog
Strange errors come during change SourceExpr value in NAV report designer...
Posted
over 4 years ago
by
Gedas B
0
Comments
Our colleague raised problem: why he receives strange error during report compile, after he changed SourceExpr value for some control in report designer in NAV 2009. Error message was: Error while validating RDL content: The Value expression for...
Nav developer's blog
Where is the zup file again?
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
1
Comments
I keep forgetting where the CustomSettings.config, ClientUserSettings.Config etc files are. So I keep looking it up again in "Where is the zup file" . This time, I collected the location of these files in a NAV form so I don't have to look them up anymore...
Nav developer's blog
How to manage NAV DBCS data using C#
Posted
over 4 years ago
by
dtacconi
0
Comments
It is known that NAV CC (Classic Client) does not support natively DBCS (Double-Byte Character Set) and so does the new NAV 2009 RTC (Role Tailored Client). Due to differences in how the CC and RTC check the code page isn’t still possible to enable...
Nav developer's blog
What do SPNs actually do - NAV 2009
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
0
Comments
Three terms keep coming up when setting up NAV 2009 when NAV-server (middle tier) runs on a different machine than SQL Server: - Delegation / Impersonation - Kerberos - SPN Delegation / Impersonation is what it says it is. Kerberos is handled more...
Nav developer's blog
Setting up NAV 2009 on Three machines
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
0
Comments
Setting up delegation and SPNs for NAV 2009 on three machines (when the NAV Server and SQL Server are on two seperate machines) is described in "Walkthrough: Installing the Three Tiers on Three Computers" . But in addition to this, also be aware of the...
Nav developer's blog
SQL Query to show tables, their indexes and index usage
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
3
Comments
The SQL query below shows a list of tables sorted by the largest tables first. For each table, the indexes in the table are shown. For each index it shows when the index was last used. The query is designed to collect various pieces of information in...
Nav developer's blog
How to use WCF Performance Counters with NAV 2009 Server
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
1
Comments
NAV Server (middle tier) utilises Windows Communication Foundations (WCF), which includes a number of performance counters that you can use to monitor NAV Server performance in real-time. This example shows how to monitor "Calls Per Second" for NAV Server...
Nav developer's blog
Upgrading to Dynamics NAV 2009
Posted
over 4 years ago
by
MSDNArchive
3
Comments
Upgrade procedure to Dynamics NAV 2009 is not very different from upgrade procedures we had in previous versions, but some differences do apply, depending on what we want to achieve with the upgrade. First scenario is executables only upgrade, which...
Nav developer's blog
Running an older databases in NAV 2009 runtime
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
3
Comments
It's quite normal to upgrade the runtime (executables) to newer versions while leaving the database (application) as it is. This will enable the new runtime features such as Web Services. Recently we have seen a number of questions about whether you can...
Nav developer's blog
Dynamics NAV, customizing style sheets for export to MS Excel
Posted
over 4 years ago
by
MSDNArchive
5
Comments
A while a go we posted a blog decribing how to make some basic customizations to style sheets used for export to Excel. http://blogs.msdn.com/nav_developer/archive/2009/02/18/customizing-style-sheets-for-ms-excel.aspx This is an update to that blog...
Nav developer's blog
Beware the SQL Index property on NAV 5.0 SP1
Posted
over 4 years ago
by
lalake
4
Comments
The discussion of the changes starting with Microsoft Dynamics NAV version 5 regarding the use of Dynamic cursors has already been addressed in the article titled "Cursor Types" on the SE Blog - http://blogs.msdn.com/microsoft_dynamics_nav_sustained_engineering...
Nav developer's blog
RIM Tool on NAV 2009
Posted
over 4 years ago
by
lalake
0
Comments
With the release of 5.0 SP1, a new data type conversion routine was introduced with codeunit 5302 - Outlook Synch. Type Conversion. There are several known issues with data migration due to these changes. The previously published blog for 5.0 SP1 contains...
Nav developer's blog
The physical location of .net components
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
0
Comments
The virtual table 2000000046 "Automation Server" shows you the physical location of the automation servers (.dll file). But a .net component is not an automation server, so is not listed here. One of the main benefits of .net is exactly to be able to...
Nav developer's blog
Report Headers
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
0
Comments
In classic reports, adding a header to your report is as easy as just copying the Header section from an existing one. With reports for RTC you need to do a bit of manual work to get your report header. A standard header contains the following information...
Nav developer's blog
Labels in NAV2009 Report Design
Posted
over 4 years ago
by
Lars Lohndorf-Larsen
3
Comments
When adding fields to a report, the caption is typically added automatically or with a bit of drag and drop from the DataSet in VS Report Layout. But if you want to add additional labels, for example Report Name in the header, then there are a few more...
Page 1 of 4 (89 items)
1
2
3
4