You need to use a developer license to do so.
↧
Forum Post: RE: Error - Report Compilation
↧
Forum Post: Stock older than 365 days
Hi In a report How to get Stock Older than 365 days on the basis of FIFO Thanks
↧
↧
Forum Post: RE: Resell to customer
is Using Contacts as End Customer going to cover that ?
↧
Forum Post: RE: Resell to customer
Contacts fall under the "Marketing" functionality. It is a rudimentary form of CRM. Though you will find the "Contact" number on the customer card, effectively, it's another system altogether. If you are leaning toward using the Marketing functionality, you can look at the "Campaigns". Though I think it's limited. I still beleive the Dimensions on all the Items, Customers, Vendors and GL accounts will help you more.
↧
Forum Post: RE: Correction of VAT entries
How was the error commited? Using a Journal or a Transaction? If it was a journal, you can easily reverse the journal entry. If it was a transaction, then you will have to create a credit memo (Sales, Purchase). This is the only way all the correct GL accounts are affected.
↧
↧
Forum Post: RE: Resell to customer
If i Use Dimensions , in the Sales order Entry how i enter the Di mentions ?
↧
Forum Post: How to get product prices and total price of LS Retail from an Web Services
I am using Dynamics Nav 2018 and LS Retail I need send item number and quantity to an web services and return get product prices, discounts, quantity in stock and total price of LS Retail I tryed creating an web services to code unit "POS Transaction" and created an function. But that code unit receive params from dll of Ls Retail. But it not work. Any alternative via api or web services for consult prices from an website?
↧
Forum Post: RE: Resell to customer
First of all you must associate dimensions to all master data and the specific GL accounts. Look at these links and videos for direction in setting up and working with Dimensions: docs.microsoft.com/.../finance-dimensions www.encorebusiness.com/.../dynamics-nav-dimensions www.youtube.com/watch www.youtube.com/watch www.youtube.com/watch community.dynamics.com/.../dimensions-in-nav-2016-design-overview community.dynamics.com/.../231664 www.ebsys.com.au/.../understanding-microsoft-dynamics-nav-dimensions
↧
Forum Post: RE: Resell to customer
Using contact is not recommended because it is related to CRM functionality. Depending on your report, the field will also show up in a number of reports. You might end up customizing the reports to hide the field. Using dimension is one of the option, but it depends on how much end user information you want. If you only want Code and Name, dimension will do. There is also some considerations when using dimension, such as whether you can assign it to Global Dimension or not. If you can't assign it, you will need to click the Dimension button in the order to access it. A little bit of inconvenient and users may forget to put it in. It depends on what your current system setup and what kind of information you are expecting to get out of it.
↧
↧
Forum Post: Error message for posting credit memo - AR
I am trying to post a credit memo for an invoice that was created. The error I'm getting is "there is nothing to release for this document type". I believe the error has something to do with the fact that on the shipping document, the back order code is "terminating". The items should have been cancelled instead of shipped. Any help is truly appreciated!
↧
Forum Post: RE: Stock older than 365 days
Try Item Age Composition. But you need to be careful, because every time you do Transfer or Reclass, the item age get renewed as well. So not really an accurate report.
↧
Forum Post: RE: Problem- length of the string
It depends on what you are doing. It could be customer, vendor, contact, etc. When you change the field length, you need to change other related tables as well. It would be best to ask why do you need more than 52 characters for Tel and Fax.
↧
Forum Post: RE: Error - Report Compilation
If you can't find it in global variables, it must be somewhere in local variables. If you don't have developer license, you need to go to each report sections and check the local variables. I believe if you try to save and compile the report from inside the report (designer mode), NAV will go to the problematic section. You can search from there.
↧
↧
Forum Post: Dynamics NAV 2016 Sales Price List - Min. Price and Max. Price not working on Planning Lines
Hi, I'm helping the implementation process on my workplace for Nav 2016, and we're facing a huge problem on which our consultant says that there's no way to solve this. First let me explain with details what we're trying to setup; Let's imagine that I'm charging the customer for a service performed for import license for of goods, and as per my price list I've established that, a Min and Max price will be applied depending on the commercial value of the goods being imported... So let's say that for every goods importation I want to charge my client for license issuance with Min Price of $150 and Max of $1000, calculating this by taking only 0.25% of commercial declared value of the cargo; So lets say the cargo value is $20'000; it will be $20'000 x 0.25% = $50, meaning that Min Price will be applied, so on my Invoice I'll charge $150 to my client. Now let's see if the cargo has another value, let's say $200'000, it will be $200'000 x 0.25% = $500, meaning that Min Price is not applicable and we will charge on my Invoice $500. Finally if the cargo has a value of $430'000, it will be $430'000 x 0.25% = $1'075, meaning that, we'll not apply this value, neither the min Price, but the Max Price will be applied ($1000), considering that it exceeded the margin of minimum and maximum values that I established to be charged to the customer on the price list for this specific item. Considering the examples above, our consultant said that Nav 2016 can't do these calculations, and that the columns Min. Price and Max. Price on the Sales Price List are just for information purposes... I think that he's very wrong, and I attempted to insert the data on the columns myself and the results were sadly not the expected ones... Our consultant also says that "%" as a unit of measure is also for information purposes, and that the system doesn't consider % as a unit of measure itself... I really don't know what to do anymore, and I really need some help ! Thank you
↧
Blog Post: C/AL Source Code Analysis with PowerShell
Last Directions US and EMEA, I had the opportunity to talk about – uhm – myself. Well, not really – about my tools. It was a weird experience – but it got more attention than I ever expected. Now, during that session, I showed a tool that I wanted to put out there for sooooo long: a way to analyze your C/AL Source Code with PowerShell . This was actually an “let’s see what we can do and how far we can go”-challenge during our free time ;-), where the .Net part (which is the majority of the work) wasn’t done by me, although I was quite (let’s say “overly”) involved with the entire evolution of it ;-). The tool might not be completely new to you. I have been using it for quite some time to talk about some things within the product, like: The Event Publishers in different versions Triggers & Procedures LineCount So as you can see – it’s basically about analyzing C/AL code. Also at NAVTechDays, I spent a topic on it during my session with Vjeko . You can see it here: The Tool When we talk about the tool, we call it the “ ModelToolsAPI “. It’s a PowerShell-module-dll that my partner in crime wrote, “on top of” the existing “Microsoft.Dynamics.Nav.Model.Tools.dll” , which is a library that serves the PowerShell Merge-CmdLets provided by Microsoft. It basically builds you an Object Model from your text files, which it needs to be able to merge in a smart way. For example, the tool knows all objects, or properties, what fields, relationships, … and a hell-of-a-lot more. And simply said: when you have an object model, you can work with it. When you only have a text-file, all you can do is search in text. And I was wondering – what if we could do this in PowerShell ? Because simply, I don’t know what I want to analyze today, and how I want the output to look like. Or better yet – what if I want to make the analysis part of my build, or commit, or pull request, or .. you know what I mean: part of my integration scenario! For analyzing code, PowerShell all of a sudden made all the sense in the world! At least for us ;-). But we saw two problems with the out-of-the-box “Microsoft.Dynamics.Nav.Model.Tools”: It sees code as just text – so it doesn’t really “understand” code. And with understand, I mean: being able to trace fields, variables, procedures, keys, .. back to where they are used in code Understand an “if” statement and any other statement for that matter Being able to track complexity of a certain procedure … Its default object structure was quite complex. So, my fellow nerd started to crunch a better, more understandable object model out of it, and started to write a code tokenizer (if I can call it like that) for C/AL code, basically mapping all words in code to something it understands. As a result, we have a complete object model, understanding code, which we can query any way we like. Even more, because we’re using the default “Microsoft.Dynamics.Nav.Model.Tools”, we also have its modification- and export-functionality at our disposal (you hear me coming? ControlIDs? .. (but that’s for a later blogpost) :-)). And still even more, because (again) we are using default Microsoft libraries, with an update, we simply tap into the new version, and off we go :-). Where can I find it ? I understand it’s not going to be easy to get started with a tool like this. But if you pick up the challenge, you won’t regret it! I tried to make it as approachable as at all possible: You can just clone/fork/download from my github repository here: https://github.com/waldo1001/Waldo.Model.Tools The repo contains readme-files and scripts to get you started. Just export a txt-file from your database, and you’re good to go. Almost. Before you can use the tool, you need to get a license . Don’t worry, it’s free and only takes a few minutes. I even put it in a script and explained it in the readme . Just fill in your details in the browser when it pops up, and you’ll get a license mailed to you, which you need to put in the same folder as the dlls. Now, you’re good to go load your object model into a variable by calling the “Get-NAVObjectModel” (which points to a text-file), and you are about to analyze it. To get you started on anything useful, I have foreseen some scripts here, like: Some basic examples Analyzing cyclomatic complexity Great example on why the code-analysis was necessary! Count the number of commits – and analyze the commits Once you get used to it, it’s super-readable! Now it’s up to you! There are quite a number of scenarios where we apply this tool. Just now, we are about to rewrite our product in AL. With this tool, we did a complete, in depth dependency analysis for figuring what apps we would end up with. It gave us an overview of problems with “circular dependencies”, and an easy way to document all changes we did for certain modules/apps. I’m definitely coming back to that exercise! We also used this for figuring out and fixing controlid-errors – if you ever encountered them, you sure know what I’m talking about! ;-). And much much more – basically, it’s a bit up to you to get familiar with it (if you at least want it to be), and apply it on whatever you want to apply it. Expect more scripts and blogs about this in the future, but please do know you can contribute as well (just fork and make a pullrequest), … . Enjoy!
↧
Forum Post: RE: Dynamics NAV 2016 Sales Price List - Min. Price and Max. Price not working on Planning Lines
Hi Filipe86, The Min and Max price in your NAV are not available in standard NAV. It is a customization, so it's hard to tell what the Min and Max price doing in your system without actually looking at your system. Looking at your requirement, I don't think there is any standard function in NAV that can help you with this. You will need to do customization for it.
↧
Forum Post: RE: Dynamics NAV 2016 Sales Price List - Min. Price and Max. Price not working on Planning Lines
Hello Thanks for replying to me; where and how can we develop such function? I can ask to our consultant/developer @ my workplace, because he will claim (lie) that it is not possible at all, so I have to give him a firm answer and show him that I know where and how our consultant can do this! Please can you give me instructions? Thank you
↧
↧
Forum Post: RE: Dynamics NAV 2016 Sales Price List - Min. Price and Max. Price not working on Planning Lines
Hi, I believe your requirement is doable in NAV, however it really depends on your current setup and process. It is hard to give recommendation because we don't know your daily operation, your business, or how you use NAV. This is why it is quite important to have a good partner who understands your business well. Is this consultant / developer a partner or your company in-house developer ? If he is an in-house developer, he might not have proper knowledge or NAV developer license to do this.
↧
Forum Post: RE: Facing some transactions in inventory interim account in navision
Hello Mehan, Why don't you check inventory posting setup, it might tag wrongly. Also inform me if you already got the solution, waiting for your reply
↧
Forum Post: Illegal Slip No
Hi In LS Retail when i click on Enter in logon i get error 'Illegal Slipno in local setup higher number exists for this Terminal.' Using 2009 R2 Thanks
↧