Quantcast
Channel: Microsoft Dynamics NAV
Viewing all 64865 articles
Browse latest View live

Forum Post: Customer need to buy license for Dev&Test

$
0
0
Hi All, Just w ant to check w hether the end- us er n ee d to buy NAV license for Dev&T est? if yes, what is the minimum they're required to buy? Thanks and regards, Nguyen

Forum Post: Microsoft Dynamics NAV Business Web Services attempted to issue a client callback to run page 50001 Sales Order Type as modal. Client callbacks are not supported on Microsoft Dynamics NAV Business Web Services

$
0
0
I am unable to create the sales Order record in Nav using SSIS package. During the execution of a package. I m getting below error message: Error Message: (500) Internal Server Error. (Error Type / Reason: InternalServerError, Detailed Message: Microsoft Dynamics NAV Business Web Services attempted to issue a client callback to run page 50001 Sales Order Type as modal. Client callbacks are not supported on Microsoft Dynamics NAV Business Web Services. When I create the same record manually then the Popup appears to select the Sales Order Type field and after selecting field value the record gets created in NAV. But in SSIS package I did not find the way to fill Sales Order type field value and package failed with an above error message. For other entity where no popup appears during manual creation, the SSIS package executes properly. Thanks in advance!!!! Pradeep

Forum Post: RE: VAT calculation in Journals

$
0
0
Hi David, I believe for journal customisation would be inevitable to accommodate what you expect. Can't find any setup or provision for the same like we have in Sales Document through application.

Forum Post: RE: How to call REST api from NAV 2013

$
0
0
Hi, In Navision 2013 there is no unbuilt codeunit to call API (http web management) you have to use dotnet variables and write it in the same way in Navision. Else I will share the code don't worry.

Forum Post: Item Aged Composition Report

$
0
0
Hi can anybody tell me how to check data from Item aged Composition report (Qty. and Value). I have seen that when item moves from one location to another location , item age will get affected. Thanks in advance!

Forum Post: RE: Item Aged Composition Report

$
0
0
Hello, Already, two standard report are available in NAV system Item Age Composition - Value (Report No - 5808) Item Age Composition - Qty. ( Report No - 5807) Hope it will help you.

Forum Post: RE: Microsoft Dynamics NAV Business Web Services attempted to issue a client callback to run page 50001 Sales Order Type as modal. Client callbacks are not supported on Microsoft Dynamics NAV Business Web Services

$
0
0
Dialog boxes, popup boxes, form open are not allowed in the web services, you need to add GUIALLOWED condition if you have them and add the logic accordingly for the web services

Forum Post: RE: Customer need to buy license for Dev&Test

$
0
0
No, they don't need a separate license to use it on DEV and TEST, but if you are planning to do the development with that license, then you need to have NAV Application Builder/Solution Developer Module into the license.

Forum Post: RE: Certification

$
0
0
Old NAV uses CAL the new Business Central uses AL. docs.microsoft.com/.../c-side-reference-guide docs.microsoft.com/.../devenv-programming-in-al

Forum Post: RE: Unable to delete sales lines

$
0
0
If they are planning to delete a line with variant code which they don't have the access then they will get the error, are they able to delete a line with variant code starts with D.

Forum Post: BC365 How to bypass the approval process on certain condition?

$
0
0
Hi, I' m trying to create a new workflow to bypass the process approval of purchase invoice by adding a new condition in the header of document, if the Boolean field in the header of document is Non, (Re- approbation=Non) and the document is already approved. the user can reopen the purchase invoice and do some changes and send approval request , in this case the system should use the new workflow to release the document without need to be re-approved again by the managers. but the status of document is always open, do i forget something to do that? do you have any-suggestion please? Thanks.

Forum Post: RE: Creditors(Vendor) Remaining Amount per GAP for open invoices

$
0
0
So you assign the GAP number on line item?

Forum Post: RE: BC365 How to bypass the approval process on certain condition?

$
0
0
Add that as a condition in the Approval of a purchase document is requested event.

Forum Post: RE: How to call REST api from NAV 2013

$
0
0
Krishna, 22:15 VAR HttpWebRequest@1000000001 : DotNet "'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Net.HttpWebRequest" RUNONCLIENT; HttpWebResponse@1000000004 : DotNet "'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Net.HttpWebResponse" RUNONCLIENT; HttpStatusCode@1000000005 : DotNet "'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Net.HttpStatusCode" RUNONCLIENT; Stream@1000000014 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.IO.Stream" RUNONCLIENT; TextEncoding@1000000004 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Text.Encoding" RUNONCLIENT; ResStreamReader@1000000010 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.IO.StreamReader" RUNONCLIENT; ResStream@1000000012 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.IO.Stream" RUNONCLIENT; Response@1000000015 : Text; RequestData@1000000006 : Text; HttpWebRequest:=HttpWebRequest.HttpWebRequest; HttpWebRequest:=WebRequest.Create('http://API_URL'); HttpWebRequest.ContentType:='application/xml'; HttpWebRequest.Method:='POST'; Stream:=HttpWebRequest.GetRequestStream(); Stream.Write(TextEncoding.ASCII.GetBytes(RequestData),0,TextEncoding.ASCII.GetBytes(RequestData).Length); Stream.Close(); HttpWebResponse:=HttpWebResponse.HttpWebResponse; HttpWebResponse:=HttpWebRequest.GetResponse(); HttpResStatus:=HttpWebResponse.StatusCode(); CLEAR(Response); IF HttpResStatus=200 THEN BEGIN ResStream:=HttpWebResponse.GetResponseStream(); ResStreamReader:=ResStreamReader.StreamReader(ResStream,TextEncoding.Unicode); Response:=ResStreamReader.ReadToEnd(); END ELSE BEGIN ResStream:=HttpWebResponse.GetResponseStream(); ResStreamReader:=ResStreamReader.StreamReader(ResStream,TextEncoding.Unicode); Response:=HttpWebResponse.StatusDescription; END;

Forum Post: RE: How to call REST api from NAV 2013

$
0
0
VAR HttpWebRequest@1000000001 : DotNet "'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Net.HttpWebRequest" RUNONCLIENT; HttpWebResponse@1000000004 : DotNet "'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Net.HttpWebResponse" RUNONCLIENT; HttpStatusCode@1000000005 : DotNet "'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Net.HttpStatusCode" RUNONCLIENT; Stream@1000000014 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.IO.Stream" RUNONCLIENT; TextEncoding@1000000004 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Text.Encoding" RUNONCLIENT; ResStreamReader@1000000010 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.IO.StreamReader" RUNONCLIENT; ResStream@1000000012 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.IO.Stream" RUNONCLIENT; Response@1000000015 : Text; RequestData@1000000006 : Text; HttpWebRequest:=HttpWebRequest.HttpWebRequest; HttpWebRequest:=WebRequest.Create('http://API_URL'); HttpWebRequest.ContentType:='application/xml'; HttpWebRequest.Method:='POST'; Stream:=HttpWebRequest.GetRequestStream(); Stream.Write(TextEncoding.ASCII.GetBytes(RequestData),0,TextEncoding.ASCII.GetBytes(RequestData).Length); Stream.Close(); HttpWebResponse:=HttpWebResponse.HttpWebResponse; HttpWebResponse:=HttpWebRequest.GetResponse(); HttpResStatus:=HttpWebResponse.StatusCode(); CLEAR(Response); IF HttpResStatus=200 THEN BEGIN ResStream:=HttpWebResponse.GetResponseStream(); ResStreamReader:=ResStreamReader.StreamReader(ResStream,TextEncoding.Unicode); Response:=ResStreamReader.ReadToEnd(); END ELSE BEGIN ResStream:=HttpWebResponse.GetResponseStream(); ResStreamReader:=ResStreamReader.StreamReader(ResStream,TextEncoding.Unicode); Response:=HttpWebResponse.StatusDescription; END;

Forum Post: RE: How to call REST api from NAV 2013

$
0
0
VAR HttpWebRequest@1000000001 : DotNet "'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Net.HttpWebRequest" RUNONCLIENT; HttpWebResponse@1000000004 : DotNet "'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Net.HttpWebResponse" RUNONCLIENT; HttpStatusCode@1000000005 : DotNet "'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Net.HttpStatusCode" RUNONCLIENT; Stream@1000000014 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.IO.Stream" RUNONCLIENT; TextEncoding@1000000004 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Text.Encoding" RUNONCLIENT; ResStreamReader@1000000010 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.IO.StreamReader" RUNONCLIENT; ResStream@1000000012 : DotNet "'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.IO.Stream" RUNONCLIENT; Response@1000000015 : Text; RequestData@1000000006 : Text; HttpWebRequest:=HttpWebRequest.HttpWebRequest; HttpWebRequest:=WebRequest.Create('http://API_URL'); HttpWebRequest.ContentType:='application/xml'; HttpWebRequest.Method:='POST'; Stream:=HttpWebRequest.GetRequestStream(); Stream.Write(TextEncoding.ASCII.GetBytes(RequestData),0,TextEncoding.ASCII.GetBytes(RequestData).Length); Stream.Close(); HttpWebResponse:=HttpWebResponse.HttpWebResponse; HttpWebResponse:=HttpWebRequest.GetResponse(); HttpResStatus:=HttpWebResponse.StatusCode(); CLEAR(Response); IF HttpResStatus=200 THEN BEGIN ResStream:=HttpWebResponse.GetResponseStream(); ResStreamReader:=ResStreamReader.StreamReader(ResStream,TextEncoding.Unicode); Response:=ResStreamReader.ReadToEnd(); END ELSE BEGIN ResStream:=HttpWebResponse.GetResponseStream(); ResStreamReader:=ResStreamReader.StreamReader(ResStream,TextEncoding.Unicode); Response:=HttpWebResponse.StatusDescription; END;

Forum Post: RE: BC365 How to bypass the approval process on certain condition?

$
0
0
Hi Suresh, I did ,but without result, as you can see in my screenshot i added the field (re-approval required=No) in condition. Regards.

Forum Post: RE: Item Aged Composition Report

$
0
0
"Item Age Composition - Qty". will help you. It gives you option to define bucket range (i.e. 1W, 1M etc.) depending on the end date you define there.

Forum Post: RE: Certification

$
0
0
Kindly find the official role based exams for dynamics 365 by Microsoft by navigating the below link: www.microsoft.com/.../dynamics-365-exams.aspx There is always scope in functional. Dynamics 365/NAV/BC/AX, these all business application by Microsoft is quite well designed and are having in-depth mapping of all business logic. So, to implement these also the need of a functional will always be inevitable. For eg: if someone wants a consultant for 365 for F&O, they would prefer a CA or MBA Finance.

Forum Post: RE: Item Aged Composition Report

Viewing all 64865 articles
Browse latest View live