Forum Post: How to show the item cost(purchase cost of raw material) in bin...
Dear Experts, Is there any possibility to show the cost value in bin content. I want to flow the cost amount(purchase price ) in bin content. Please suggest me.
View ArticleForum Post: RE: covering fob to text file + split and vice versa
mibuso.com/.../nav-object-splitter-v3.0.0.0
View ArticleForum Post: RE: How do we delete/clear purchase orders received but not...
aggread with Robertas about the standard process . As you mention "Previous year" so i want to highlited few more part for your consideration. Hope accounting period and Inventory period havent closed...
View ArticleForum Post: RE: Export purchase lines to text
Not so clear the question... you have to compose the string that you are passing to WRITETEXT with the values you want to have in the file. I suppose the data is in your PurchaseLine record you're...
View ArticleForum Post: RE: How to show the item cost(purchase cost of raw material) in...
Hi, the way warehouse module is built in NAV, the costs are separated from the warehouse movements/bins (for a reason). That means, if your costing is not Average or Standard (when all 'pieces' of the...
View ArticleForum Post: RE: Export purchase lines to text
I want to create a text file in this case with 4 purch lines with fields item no, date, qty, price ('9525200001 22-08-18 0 1,1'); I don't know how to dinf how many loops I have, that depends of the...
View ArticleForum Post: RE: How to show the item cost(purchase cost of raw material) in...
thank you sir. Please close this thread.
View ArticleForum Post: RE: Export purchase lines to text
I think you need to filter the Purchase Lines for every order, isn't it? Do you need a file for every Purchase Order? PurchaseLine.SETRANGE("Document Type",PurchaseLine."Document Type"::Order);...
View ArticleForum Post: RE: Export purchase lines to text
I will try this code, the separation is with TAB
View ArticleForum Post: RE: Export purchase lines to text
varTab := 9; (char) txtTab := format(varTab); (text) And then in my writing to the file: File.Write(Field1 + txtTab + field2 + txtTab + Field3 ...); i will try this example
View ArticleForum Post: RE: Word opens on preview
Hi, as Subhashis said, if your report is created in Word and in the system it is configured to use Word layout, system will always open Word for the preview. There are multiple areas in NAV where you...
View ArticleForum Post: RE: How to transfer User options from codeunit to the global...
Hi, when you call codeunit (fCustomFunction.RUN), it only calls the the 'Run' trigger in the codeunit, but not your actual function 'fCustomFunction'. You have to make the function as 'global', and...
View ArticleForum Post: NAV Performance Issues - Physical/Virtual Server
My Company and I are working on the implementation of a water billing system with Microsoft Dynamics NAV 2013 R2 . The main processes in this system are: • Invoice generation (which is using standard...
View ArticleForum Post: RE: Export purchase lines to text
So now I have this, TXT - OnAction() // LACPOS001 varTab:=9; txtTab:=FORMAT(varTab); Serverfilename := FileManagement.ServerTempFileName('txt'); ClientFilePath := 'C:\Catia\teste.txt';...
View ArticleForum Post: RE: Consume External web service in NAV
Hi! For example: PROCEDURE SendRequest@1000000001(); VAR HttpMgt@1000000001 : Codeunit 1297; BEGIN HttpMgt.CheckUrl(' https://someurl '); HttpMgt.Initialize(' https://someurl ');...
View ArticleForum Post: RE: How to transfer User options from codeunit to the global...
Thank you very much Robertas, this really helped me.
View ArticleForum Post: RE: Convert a json object to an Array list Using Rest
Thanks Andrey for the Info you provided. Yes I'm using Newtonsoft JSON dll. I'll try your solution and let you know.. Do you know what DotNet objects you used for JsonLineObject, JsonMainObject. ,...
View ArticleForum Post: RE: NAV Performance Issues - Physical/Virtual Server
in both cases SQL are in the same machine? same to AD?
View ArticleForum Post: RE: NAV Performance Issues - Physical/Virtual Server
Yes they are on the same machine in both cases.
View Article