Page: Blogroll
Having a hard time staying up to date or find the latest and best blog posts? Here on DUG you can follow them all in one place. You can subscribe to them all, or individually by notification or RSS. Do...
View ArticleForum Post: RE: Barcode Font on Navision 2016 Web Client
Hi Erik, Let me try with web services
View ArticleForum Post: RE: How to restrict user permissions for one location on Dynamics...
Thanks Saurav for your reply.
View ArticleForum Post: RE: quality management addon for dynamics NAV
Hi Erik, thanks for your valuable suggestions. If I find an add-on and a partner, I will ask their support, too. but I need to find a partner and add-on first :) thanks.
View ArticleForum Post: RE: Sync optionstring in two tables
Oh well I thought that maybe CAL will somehow do the thing. Thanks for the quick response!
View ArticleForum Post: RE: NAV 2016: How to read from a local client stream
Hi Erik, Each Dotnet variable has a properties "RunOnClient". If this property is set to yes, navision will read(excecuted) from local not from server.
View ArticleForum Post: RE: NAV 2016: How to read from a local client stream
Thanks a lot Xhevat Tafaj . [:)] I believe that you're right, it may be the right direction to get it to work. It just didn't work. At least not until I can overcome the next error: The server...
View ArticleForum Post: RE: NAV 2016: How to read from a local client stream
Changing to RunOnClient in all the DotNet's is giving a new error: A call to System.Net.Sockets.TcpListener.Start failed with this message: Adressen, der blev anmodet om, er ikke gyldig i sin kontekst...
View ArticleForum Post: RE: NAV 2016: How to read from a local client stream
Hi Erik, I'm not sure if this helps, but in this example of retrieving data from an external source (a Windows Dialog in that case), all DotNet vars are defined as RunOnClient. In your case, the NAV...
View ArticleForum Post: RE: NAV 2016: How to read from a local client stream
Hi Andrew, Thank you for you answer. The first error was fixed by setting the all to RunOnClient. It doesn't have to be tcp listener, if you have a better suggestion. The way to communicate with the...
View ArticleForum Post: RE: Prevent Negative Inventory NAV 2013
Hi Erik, Like you said, it is really about an example i wanted to share. IF NOT RollBack THEN and IF Rollback = FALSE THEN, programmatically are same, its just a matter of style, lol. Again text...
View ArticleForum Post: RE: Prevent Negative Inventory NAV 2013
Hi Erik, Mohana's post covers NAV 2013R2, this post is about NAV 2013. Regards Daniel
View ArticleForum Post: RE: Prevent Negative Inventory NAV 2013
Ahh sure it didn't get there until 2013 R2... [:)] But then thank you for sharing. I'm sure a lot of developers will be able to use it.
View ArticleForum Post: RE: navision Connector integrate lookup CRM fields to NAVISION 2016
Hi Todezmez, Did it include some? If yes, any special types that are missing? And the "default" tables integrates fine?
View ArticleForum Post: RE: NAV 2016: How to read from a local client stream
If it helps, I sketched a tiny simulator for the electronic scale and also sketched a .NET wrapper that may be called from C/AL. Assuming that the electronic scale plays the role of the server, and the...
View ArticleForum Post: RE: NAV 2016: How to read from a local client stream
Hi Andrew, Thanks! But let me show you this part from the "streaming interface" document: "When the PC User Interface software is running, one can access the direct stream of weighing data from the MU1...
View ArticleForum Post: RE: NAV 2016: How to read from a local client stream
Putting the code within a DLL wrapper would not solve the permission issue IMHO since the process itself has to be executed in elevated mode. However, the good thing is that most probably a tcpListener...
View ArticleForum Post: RE: NAV 2016: How to read from a local client stream
Hi Andrew, I think it helped with some sleep! All it really took to read from the stream was: tcpClient := tcpClient.TcpClient; tcpClient.Connect(IPno,Port); ClientStream := tcpClient.GetStream; IF...
View ArticleForum Post: RE: NAV 2016: How to read from a local client stream
Hi Erik, Glad to hear this :) Sending commands should work indeed the way you mentioned (a Flush() may be necessary though).
View ArticleForum Post: RE: Insert credit safe rapport
So I have it now like this: Request.InitSearchRequest(); //MESSAGE('hallo%1%', Request.InitSearchRequest()); //CreditFetchRapport.RUN; CreditFetchRapport.RetrieveOnlineReportProcess(Response); But how...
View Article