One of the new features of RTC is Charts in reports . Today I would like to see the monthly total purchase invoices amount in charts. Bron : Mohana Lees meer...
I hope you have observed that a new window will be opened with options Open, Save and Cancel while exporting a file in RTC. I have taken Report 9171 - Export Profiles as example. If you Run the report in classic, you will have an option…
Till now, we are not able to remove the departments menu in navigation pane through “Customize Navigation Pane” If you look at remove option for Departments is disabled in “Customize Navigation Pane” till NAV 2009 SP1 (Build 29626) Now, Microsoft has released a HF to remove…
Last week at Directions EMEA, Claus Lundstrom and Mark Brummel had a parallel session which was a pitty because we both had interesting messaging around RDLC Reporting. Fortunately they both had a good number of attendees who got what they came for. While their presentation was…
Bij het importeren van een .csv bestand wil je feitelijk nooit de eerste regel importeren (kolomtitels). Uiteraard kan je de eerste regel verwijderen in het .csv bestand, er is echter een hele eenvoudige oplossing: OnPreDataItem trigger: IF CurrDataport.IMPORT THEN BEGIN CurrFile.TEXTMODE(TRUE); CurrFile.READ(AbpTxtDummy); //AbpTxtDummy = BigText CurrFile.TEXTMODE(FALSE);…
Voeg een command button toe op de klantkaart met onderstaande code in de OnPush trigger om een adres op te zoeken: HYPERLINK('http://www.google.nl/maps?f=q&hl=nl&q=' +Address+' '+"Post Code"+' '+City); Gebruik onderstaand code om de route te bepalen: HYPERLINK('http://www.google.nl/maps?f=d&hl=nl&saddr=[from street]+[from post code]+[from city]&daddr='+Address+' '+"Post Code"+' '+City);