Dynamics 365

Search the Dynamics community

Filter blog posts

Card view List view
  • Relevance
  • Most recent
  • Most liked

Filter blog posts

LikeLike (0)
Bootcamp Notes: Debugging

Didn’t we all wait for an easy way to debug the RTC? In NAV 2013 this is finally possible. This post won’t be to big, as most of the things can be mentioned pretty quickly. Debugging can be started out of the development client by goi...

Community Member
LikeLike (0)
Exporting in NAV2009: The object file cannot be used with this version of the program

Today, I tried to export a fob file from a 2009R2 but strangely I got the following error: The reason of this error was pretty fast figured out for me by accident. But if anybody gets this as well, here is the reason. (I am using build 32012 by ...

Community Member
LikeLike (0)
Add attachment stream on SMTP not always working

Last week I was developing a framework which needs the SMTP Mail in NAV2013. I noticed a new function on the variable (which is now a DotNet assembly) which allows you to add an attachment from a stream. Which is useful when you are storing your a...

Community Member
LikeLike (0)
Bootcamp Notes: SQL Optimization

I’m back again with one of my Bootcamp notes. This time a few points about optimizing for SQL Server. There have been a lot of changes on SQL Server. It is no longer using cursors through OLE DB to connect, but MARS (Multiple Access Result S...

Community Member
LikeLike (0)
Bootcamp Notes: Reporting

Here I am again with the last post of my bootcamp notes. You will notice a lot of changes have taken place, going from design in the development client to new RDLC functionality. Development Environment The most obvious change will be the differen...

Community Member
LikeLike (0)
Letter Counter

Today I needed a function that counts in letters. Basically saying 1 equals A, 2 equals B, 26 equals Z, 27 equals AA, … Here it is in case anyone ever needs this Function LetterCounter(Number : Integer) Result : Text IF Number <= 0 THE...

Community Member
LikeLike (0)
NAV2013 Reporting: Things to be careful about

Let me start by excusing myself for an absence of posting lately. It has been very busy recently in my private life. Becoming a father certainly makes you more prone to setting priorities Lately I have been making several NAV2013 reports, so mayb...

Community Member
LikeLike (0)
NAV2013 Session List Changes

In this post just a few tips and tricks I did myself, which might just interest you In the old days we got a few debugger/session options from NAV. We could even move some parts of the debugger to our liking. Today, this is a completely different...

Community Member
LikeLike (0)
HTML 2 Image

A while ago, I was working on reporting and was very happy with the new HTML options on the RDLC. But, as you might know, these are actually quite limited… According to Microsoft, these are the supported tags: <A>, <FONT>, <H{n}>...

Community Member