Quantcast
Channel: Dynamics 365 Business Central/NAV User Group
Browsing all 11285 articles
Browse latest View live

Forum Post: RE: NAV and SQL license

Hi Phil, If you need to purchase user CAL's for SQL or not, that depends on your SQL license. The NAV CAL license NEVER takes care of that! If your SQL license is the special "NAV SQL" server license,...

View Article


Forum Post: RE: Group total fields not working in sale report

i changed from :- CurrReport.SHOWOUTPUT := CurrReport.TOTALSCAUSEDBY="Sales Invoice Line".FIELDNO("Sell-to Customer No."); To :- CurrReport.SHOWOUTPUT := CurrReport.TOTALSCAUSEDBY="Sales Invoice...

View Article


Forum Post: RE: how to get vendor payment details in Payment voucher?

Hello, I don't understand the problem exactly. You want to filter it out? Then use <>0. "<>0" means different from 0. best regards,

View Article

Forum Post: RE: how to get vendor payment details in Payment voucher?

Hi Mandeep You need to check the vendor ledger entry and check for outstanding invoices where remaining amount is not equal to zero Based on Vendor selected in Payment voucher you can display the...

View Article

Blog Post: Decoupling dependencies in C/AL

Directions US 2016 (yes, 2016, sorry y’all who got the 2017 link in your mailbox) was quite an event. As Directions always is, a lot of people, enthusiastic about this market we strive to thrive in,...

View Article


Blog Post: Design Pattern: Security – Masked Text

Aliases: Masking out Context: In the user interface (UI) of a software system, the user enters protected information such as a password, an access key, a credit card number etc. Problem: The entered...

View Article

Forum Post: RE: copy startdate and enddate to other line

I try it like this: SetDates(Rec, StartDate2, EndDate2, Regelkorting); StartDate2.COPY(StartDate2);

View Article

Forum Post: RE: copy startdate and enddate to other line

and this is my form: Documentation() Form - OnInit() Form - OnOpenForm() Form - OnCloseForm() Form - OnQueryCloseForm() : Boolean Form - OnActivateForm() Form - OnDeactivateForm() Form -...

View Article


Forum Post: RE: environ(),input(),import(),export() method are obsolete for...

Use TEMPORARYPATH or DotNet variable System.Environment.'mscorlib instead of Environ Use DotNet variable Microsoft.VisualBasic.Interaction.'Microsoft.VisualBasic instead of Input Use Codeunit 419...

View Article


Forum Post: RE: environ(),input(),import(),export() method are obsolete for...

Ok.thanks.i will try with this

View Article

Forum Post: RE: Find duplicate startdate on a Form

I triied on the beginDate-onvalidate, like this: BeginDate - OnValidate() SetDates(Rec, StartDate2, EndDate2, Regelkorting); Rec.SETRANGE(StartDate2,BOM.StartDate2,BOM.StartDate2); IF Rec.COUNT > 1...

View Article

Forum Post: RE: Find duplicate startdate on a Form

SetDates(Rec, StartDate2, EndDate2, Regelkorting); Rec.SETRANGE(StartDate2,StartDate2); IF Rec.COUNT > 1 THEN ERROR('Number already exists ');

View Article

Forum Post: RE: Find duplicate startdate on a Form

But I want to have the dates the same. I try it like this: SetDates(Rec, StartDate2, EndDate2, Regelkorting); Rec.SETRANGE(StartDate2,StartDate2); IF ((Rec.COUNT > 1) AND (FORMAT(Rec.StartDate2)...

View Article


Forum Post: RE: Find duplicate startdate on a Form

If I do this: SetDates(Rec, StartDate2, EndDate2, Regelkorting); Rec.SETRANGE(StartDate2,StartDate2); IF (Rec.COUNT > 1) THEN //AND (FORMAT(Rec.StartDate2) = FORMAT(Rec.StartDate2))) THEN ERROR('The...

View Article

Blog Post: Microsoft Dynamics Partner Roundup: Giant Food Supply Chain Deal;...

In this week's Microsoft Dynamics ERP and CRM partner roundup: Linkfresh Signs Major Software Deal IPI Solutions Nigeria Partners With Microsoft 2B Diverse Workplace Integration Solutions Joins Socius'...

View Article


Forum Post: RE: Group total fields not working in sale report

You may remove (1), (2) and (4) to avoid confusion. Just add "CurrReport.SHOWOUTPUT := CurrReport.TOTALSCAUSEDBY="Sales Invoice line".FIELDNO("No.");" in group footer(3) pre section. It should work and...

View Article

Forum Post: RE: NAV and SQL license

Okay, but would us querying SQL outside of NAV (e.g. using SQL Management Studio) use up our NAV user CALs. I ask this because there are instances when we would trip our MAX concurrent user in NAV and...

View Article


Forum Post: RE: NAV and SQL license

Technically it is not be included in your concurrent user count. But because you technically can break the licensing limit, doesn't mean that it's allowed. You would still need a NAV user when using...

View Article

Forum Post: RE: Error - NAV2016 on Azure

Hi Mahesh, Why do you just start with the pre-installed NAV 2016-Azure VM? I've used it many times, up and running in minutes...

View Article

Forum Post: RE: Group total fields not working in sale report

i removed all codes from all section except "CurrReport.SHOWOUTPUT := CurrReport.TOTALSCAUSEDBY="Sales Invoice line".FIELDNO("No.");" in group footer(3) pre section. And sorting already on "Sell-to...

View Article
Browsing all 11285 articles
Browse latest View live