You need to more clear on what kind of reports these are You can create good reports in Navision with charts .
↧
Forum Post: RE: Intelligent reports from Dynamics NAV 2016
↧
Forum Post: One to Many Business Relations - why is this not possible?
Greetings, I have the following business model that I will try my best to explain: We manufacture and sell our products to our retailers, who we do business with. Retailers in turn sell our products to their customers. In our NAVision environment logically only Retailers "X" and "Y" have Customer cards, since these are the companies we invoice & deliver our products to. The customers (orange) are companies that we keep track of in our database for marketing (since they drive demand), these are stored as Contact Cards of type Company. What I am trying to do now is to set up a way to link and track the customers with their retailers (eg to have an idea how many companies retailer X is serving). My idea is to use Business Relations to link them. The setup is as such: I've done the same for Customer B, and this seems to work fine until we get to Customer C, who buys from two retailers. When I try to setup the link to Retailer Y, after having already done one for Retailer "X", I get the error: "Business Relation code CUSTOMER is used when a Contact is linked with a Customer." I am wondering why a single Contact Card (Type Company) cannot have more than one link to a Customer Card. I'd imagine a business scenario such as ours is common. Or am I using this wrong? I am using Dynamics NAV 2017 Many thanks for the time taken to advise me on this matter.
↧
↧
Forum Post: RE: Getting the specific record of the line items
Hi Divesh, I've tried the following code //CurrPage.SalesLines.PAGE.GETRECORD(Rec_SalesLines); //MESSAGE(Rec_SalesLines."No."); CurrPage.SETSELECTIONFILTER(Rec_SalesLines); IF Rec_SalesLines.FINDSET THEN REPEAT MESSAGE('%1',FORMAT(Rec_SalesLines."No.")); UNTIL Rec_SalesLines.NEXT=0; On Clicking the Action I get an error "TableID does not match." I'm trying to select multiple lines on Sales Order page and on Action on the Sales Order Page it should display say the LineNo of the selected lines
↧
Blog Post: How to Retain data after publishing App
Hope you all started app development and may be wondering how to retain data after publishing app or debugging several times or after adding more sample data. How do I retain the sample data so every time no need to add the same data. ????? In Business ...read more
↧
Forum Post: Can't connect our NAV 2018 database from D365BC image container from CSIDE
Hi, I have created a container from private Business Central image, it comes with CSIDE development environment desktop shortcut, now I have restored our product "NAV 2018" database and "Demo NAV Database (11-0)" in the SQL Server running inside the same container, while trying to convert the database version from CSIDE using developer license of navision 2018, I can connect "Demo NAV Database (11-0)" with some compilation errors in objects (which is expected), but not able to do the same for our product "NAV 2018" database. CSIDE Development environment hangs and throws below error. Error : --------------------------- Visual Studio Just-In-Time Debugger --------------------------- An unhandled Microsoft .NET Framework exception occurred in finsql.exe [8648]. Just-In-Time debugging this exception failed with the following error: No installed debugger has Just-In-Time debugging enabled. In Visual Studio, Just-In-Time debugging can be enabled from Tools/Options/Debugging/Just-In-Time. Check the documentation index for 'Just-in-time debugging, errors' for more information. --------------------------- OK ---------------------------
↧
↧
Forum Post: RE: Getting the specific record of the line items
Hi It seems that you have the action button in the Page - 42 - Sales Order and you want to display the selected lines when you click the action let's name the Action - "Get Selected Lines" to achieve this. 1. Create a function GetSelection in the Page - 46 - "Sales Order Subform" GetSelection(VAR pSalesLine : Record "Sales Line") CurrPage.SETSELECTIONFILTER(pSalesLine); 2. Create a Action " Get Selected Lines " in the Page - 42 - "Sales Order" and write the below code in the action or a function. Get Selected Lines - OnAction() //Delcare a local variable lSalesLine --> Record --> Sales Line CurrPage.SalesLines.PAGE.GetSelection(lSalesLine); IF lSalesLine.FINDSET THEN REPEAT MESSAGE(FORMAT(lSalesLine)); UNTIL lSalesLine.NEXT = 0; Open the Page - 42 - "Sales Order" and select the lines and then click the Action Get Selected Lines " from the Page - 42 - "Sales Order" it should display the selected lines. Hope this is what you need and it works as expected. Thanks
↧
Forum Post: RE: One to Many Business Relations - why is this not possible?
Are you using Contact Business Relation (table 5054)? If so, the key here is Contact No.,Business Relation Code and so only one relation for that Business Relation Code is admitted. You need to create a new relation code. Why not using a custom solution?
↧
Forum Post: RE: One to Many Business Relations - why is this not possible?
Hi Stefano, Thanks for helping me out. Yes, I probably should have mentioned that it is Table 5054 Contact Business Relation. I see. Indeed, I wanted to put them all in a single relation group I call "Customers". The idea is to allow my company to see, out of our entire database contacts, how many have already converted to become customers/tried our products before, and also which retailer(s) they belong to. Are you suggesting that I use a new relation group per Retailer? I toyed with that idea but figured it will be very messy for the list as the intention was to have a small number of groups defined as per a typical "B2B relationship ladder" model eg: [Prospects] [Partners] [Customers] + [Vendor] [Bank] As we have quite a number of retailers (close to 70), I avoided this solution. But I also imagine that our business model is not very unique. I am sure that many companies follow such a distribution strategy, so I am hoping if some of you guys could share with me how you visualised your customer landscape? PS: We have a NAV solution provider helping us. We tried a few solutions previously (such as declaring companies as persons), but that caused many issues in reporting, such as Segments). Looking for an alternative angle to resolve this.
↧
Forum Post: NAS services NAV 2019 stopped working after installation NAV 2018
Goodmorning to you all, We have a server with a couple NAS services running to perform automatic task/ codeunits for NAV 2009 classic client. After installation of NAV 2018 on that same server all NAS services stopped functioning and can't be turned off anymore. They just don't function anymore. - If I start a NAS manually form command prompt and not as a service they do work. - If I reinstall a NAS as a service they don't work Does anyone know what is wrong and what I can do to repair the faulty NAS services?
↧
↧
Forum Post: RE: NAS services NAV 2019 stopped working after installation NAV 2018
And whats getting logged in Event Viewer?? This is something like 2 different NAV build on the same Server. Check this for reference - www.myerrorsandmysolutions.com/how-to-create-nav-instances-with-multiple-builds-in-the-same-machine
↧
Forum Post: RE: Getting the specific record of the line items
Many other members replied with the codes but Instead of this rather I would have asked what you tried and share your code base because this is not something that challenging. You can do it by yourself. :)
↧
Forum Post: RE: How to give 2 or 3 Salespers./Purch. Code in user setup table it just takes only one code.
Yes obviously you need some tweaks with a level of Customisation.
↧
Forum Post: RE: Can you set the Shipment Date in the Header to equal the Promise Date on Sales
You can do with customisation whatever you want but always remember these all dates play a very significant role from Warehouse Perspective.
↧
↧
Forum Post: RE: NAS services NAV 2019 stopped working after installation NAV 2018
good morning Rockwithnav, Nothing is logged in Event Viewer. They simply don't work quite strange.
↧
Forum Post: RE: How to give 2 or 3 Salespers./Purch. Code in user setup table it just takes only one code.
okay m okay with it..Please suggest sir
↧
Forum Post: RE: Add company Photo to reports
There are many standard Reports from where you can take in help from. Please check and come back to us if still unable. I am positive you will do by yourself.
↧
Forum Post: RE: Dynamics NAV 2016
I dint got your question.
↧
↧
Forum Post: RE: Getting the specific record of the line items
Hi Divesh, Its working fine, Can you please tell me what is the use of creating a function in sales order subform . Regards, Bharath K
↧
Forum Post: ISO CERTIFICATION FOR MEDICAL COMPANY
Hello everyone, I have a client in the medical sector in Spain who asks me for a certificate or validation to comply with the new ISO 13485: 2016, I am looking for information about this certificate or validation but I can not find anything. Does anyone have information on this topic? Thanks and regards
↧
Forum Post: RE: Update item costs
Hi Emmett, You can use the standard tool in Dynamics NAV " Adjust Item Cost Ledger Entries " to update all item costs, or you can use "Automatic Cost Posting" feature from Inventory Setup window to update all your item costs automatically with every transaction you make in the system. If you find this information helpful, Click Yes to Verify the answer to share with other community members and credit me the solution.
↧