Hi Ararat, I have not experienced this no and it sounds strange to me. If you insert records into a standard table from an extension, then of course they are there. Are you sure you have enabled the change log setup and logged in and out?
↧
Forum Post: RE: Change Log Entries of Extension Fields/Tables
↧
Forum Post: RE: NAV 2009 Database Replication
Thank you Erik
↧
↧
Forum Post: RE: Progressive Number in NAV reports (NAV 2009 - NAV Classic)
The problem as I see is in grouping. In sections- In NAV 2009, I create a group footer to group the data. Also in properties of table data item, i set the properties: ReqFilterFields : Posting Date,Bill-to/Pay-to No. GroupTotalFields: Posting Date,Bill-to/Pay-to No. The problem that i sow is that also my progressive no ( 1, 2, 3, ....) is grouping and is creating a mess. But hwo to fi this? The same this i did in other reports and this situation did not happen.
↧
Forum Post: RE: Progressive Number in NAV reports (NAV 2009 - NAV Classic)
Declare 1 variable called EntryNo or DocNo type Integer OnPredataitem set Entryno or Docno to := 0; Declare 2 variables PostingDate type Date and BilToPaytoNo Type code 20. On AfterGetRecord of the dataitem you will put a code If (PostingDate <> record.Posting date) and (BilltoPaytono <> record."bill-to/pay to no." then Entryno := Entryno + 1 On the last line of OnAfterGetrecord add the code Postingdate := record.Posting date BillToPayno := record.bill/to payno. This way you are incrementing your entryno only when the group changes, otherwise don't increment. Print your Entryno and then it will come in sequence.
↧
Forum Post: RE: How to run codeunit through dll?
You can do as Thomas said or you can use the Invoice-NAVCodeunit from Powershell throw .NET https://docs.microsoft.com/en-us/powershell/module/microsoft.dynamics.nav.management/invoke-navcodeunit?view=dynamicsnav-ps-2018
↧
↧
Forum Post: RE: Decimal field automatically take the value of the last entry
As it is a standard object i don't want to comment the code, what other solution can i have ??
↧
Blog Post: 56 = SQUARE(7) + 7 and My Conference Season
For those of you that have been following me for a reasonable number of years: you might have stumbled across my testimonial . It clearly marked a threshold in my professional carrier, and in hindsight it was worth all the while taking it. And now I am on the verge of adding another 7 years. Next week Thursday, to be precise, when I will be down south in California, when conference season has just taken off. My conference season and a whole new training season too. May I invite me to join me in my sessions? Directions NA - September 30,2018 | San Diego, USA -- link Yep, I will be there once again. It's three years already that I attended it last time. Way back in 2015, Orlando, Florida. This time, San Diego, I couldn't let it just pass by. With the great memories of the 2014 conference. With the tremendous changes the NAV world is facing. Not in the least the namechanger, Business Central, and the role automated testing finally is going to play in our daily development practice. Did you have a look at the program already? Nope, go there [url=http://www.directionsna.com/agenda/conference/] and count the number of sessions relating to automated testing. At least five, more than ever before. Let me seize the change to invite to at least two of them. And yes I'll be the speaker. ;-) From Customer wish to Test Automation Automated Testing in Dynamics NAV and D365 Business Central NAV Developer & Support Academy - October 8, 2018 | Ljubljana, Slovenia -- link The 3rd this will be run at Housing.si. For both technical and no-technical Dynamics NAV pros. It's always a pleasure getting out there Me and Rob Gabriels are looking forward to conduct this academy ones again. What's New Dynamics 365 Business Central - October 12, 2018 | Ljubljana, Slovenia -- link Being going out to Slovenia for almost 4 years now, a big number of Dynamics NAV pros joined the various courses and workshops I have been performing at Housing in those years. Please be invited to this event. An informal gathering - a reunion ;-) - with good food and good news. NAVUG Summit - October 15, 2018 | Phoenix, USA -- link This is going to be a whole new experience in my professional live. The first time to join this biggest Dynamics end-user event around the world. And it will be in Phoenix. It has been ages ago that this Greyhound bus brought me and my youngest brother out there. Youngsters, criss-crossing the States, off to the Grand Canyon. The other day someone remarked: this is not your target audience. Hell what, he might be right, but why should I care. It might be, it might be not. I am going to experience it. Going to teach some pre-conference classes . And, o yeah, do one exiting session on the conference itself. If you're working at a Dynamics NAV end-user and haven't registered yet? Go there [url=] and do so. At least have a look at my classes and presentation: Coding Best Practices and Design Patterns in Dynamics NAV NAV Test Automation APP88 - Dynamics NAV vs. D365 Business Central: Technical Considerations Designing Microsoft Dynamics NAV Automated Tests - October 25 | Vilnius, Lithuania -- link A 2days workshop that will cover the same topics as my NAV TechDays workshops. For those that could get a set in Antwerp. And my first time to out to the Baltics. Really looking forward to it. Directions EMEA - October 29 | The Hague, The Netherlands -- link Near home, but unfortunately not. At least no response to my last proposal, so far. Dynamics NAV Junior Training - October 29, 2018 | Rolduc Abbey, Kerkrade, The Netherlands -- link You might have noticed that we have been announcing this a couple of times before. And even though there was a big interest from various partners and end-user companies, our initiative suffered from the tight labor market. Big interest, too low a number of attendees. But finally some things got moving, and now it's really going to take off. A 5 weeks course spread over three month, to get both functional and technical Dynamics NAV newbies up and running. And yes, it's held in the Netherlands, but it's open to anyone around the world. Kerkrade is almost as south as you can get in this country. Next to Aachen and Maastricht, and just stone's throw away from Luik/Liège. Still seats available for both the technical and functional track. NAV TechDays - November 22, 2018 | Antwerp, Belgium -- link It might the last one called NAV TechDays, but probably always remain the-best-you-can-get conference on technical matters regarding Dynamics NAV and D365 BC. Long sessions, relevant subjects, and some great speakers. No, no, no, not me, Surely not this year at the conference, but, hack, yeah, automated testing workshops. You need yourself get starting on this: Getting Microsoft automated tests working on your solution - still some seats available Writing your own automated tests - sold out
↧
Forum Post: RE: How to run codeunit through dll?
I have not testet it - but I think that this PS-command only exists in NAV 2017 and NAV 2018.
↧
Forum Post: RE: How to run codeunit through dll?
If we go that direction, then there are also other external solutions, which allows you to call a codeunit from the outside, and on "older" versions. Just an example:
↧
↧
Forum Post: RE: Progressive Number in NAV reports (NAV 2009 - NAV Classic)
Thank you so much @sbhatbng . It is ok now. What I modified was just to use OR instead of AND. Thank youuuuu :D
↧
Forum Post: RE: How to run codeunit through dll?
Hi Palle, Actual it is in NAV 2016 (testet) and I can find the command in NAV2013R2 module
↧
Forum Post: RE: How to run codeunit through dll?
Cool.. I tried to find the command in my old NAV 2016 image, and it wasn't there. I guess we need a build-upgrade at the customer soon :)
↧
Forum Post: RE: How to run codeunit through dll?
Hi All Thanks for the replies. It is possible User can run Code-Unit functions on selection basis. I have one Master page User gives input Code-Unit Name & Function Name then I have one transaction process When these process run this Functions run on the basis of Inputs. And also I want to pass Parameters to those functions.
↧
↧
Forum Post: RE: How to run codeunit through dll?
My Experience with stuff like this is that it easily gets to complicated just to transfer and validate the data you want to be handled with an execution of a codeunit. I would STRONGLY suggest that what you do is use the web service functionality. Here you can easily import-data (a page) and execute some handling of that date (a function) using a nav web service takes care of most of the validation of the data - and you have to worry very little about it.
↧
Forum Post: RE: How to run codeunit through dll?
Actually My organization having one AX Functionality.They have created Expression engine in AX & We need to create same expression engine in NAV. In AX they create Expressions. In that expressions they define formulas eg. (BasicSal= Rate* (Hours-Absence Hours)) For that calculation they created one field in Employee Table and assign BasicSalary as Expression for that employee On that basis of expression values System automatically run Rate, Hours, Absence Functions at the time of Transaction process and Calculate Basic Salary of that employee.
↧
Forum Post: RE: How to run codeunit through dll?
I believe using code-unit exposed a Web-Service would be the best approach for you!!
↧
Forum Post: RE: Make a page non-editable to a user in Microsoft Dynamics NAV2018
Why not to make a custom Roles and Permission for this. Later too you can use this Role to assign it to someone else if needed!!
↧
↧
Forum Post: RE: Make a page non-editable to a user in Microsoft Dynamics NAV2018
It is good to write like "IF .GET THEN".. but you need to set "ELSE CurrPage.EDITABLE :=FALSE" + if I remember correctly I used OnInit() trigger for it.
↧
Forum Post: RE: Make a page non-editable to a user in Microsoft Dynamics NAV2018
I wrote the below code under PAGE : OnInit() trigger. I appreciate, Thanks OnInit() IF User.GET(USERID) THEN BEGIN IF User."Allow Modify" = TRUE THEN CurrPage.EDITABLE := TRUE ELSE CurrPage.EDITABLE := FALSE END;
↧
Forum Post: RE: Make a page non-editable to a user in Microsoft Dynamics NAV2018
Why so many lines of code? This does the exact same thing. But shorter and easier to read. IF User.GET(USERID) THEN CurrPage.EDITABLE := User."Allow Modify";
↧