navision

Microsoft dynamics Mediaset Datatype and SSRS

只愿长相守 提交于 2021-01-29 21:48:56
问题 I have a table called Item in Microsot Dynamics (NAV). One of the requirement is to display a picture that is attached to the item. The SQL datatype of this field is "uniqueidentifier". However, when looking at the development environment for dynamics, I see the following: How do I retrieve and show this image in an SSRS report please? 回答1: For any one looking at this. Navision Dynamics stores images as Mediasets. These references are stored in the [Tenant Media Set] table and the actual

Navision automation C# COM DLL

僤鯓⒐⒋嵵緔 提交于 2020-05-27 17:12:38
问题 What we did: We have created a C# class library project to talk to external webservices. When we check "register for COM interop" this DLL is automatically registered and ready for use on the PC where the registration occurred. The Navision client on that PC can then use an "automation" variable to find this DLL and use it. What's the problem? We need to rollout this DLL to the production environment. We're working with an RDP solution where the navision client runs on 2 RDP servers which our

Navision automation C# COM DLL

霸气de小男生 提交于 2020-05-27 17:07:57
问题 What we did: We have created a C# class library project to talk to external webservices. When we check "register for COM interop" this DLL is automatically registered and ready for use on the PC where the registration occurred. The Navision client on that PC can then use an "automation" variable to find this DLL and use it. What's the problem? We need to rollout this DLL to the production environment. We're working with an RDP solution where the navision client runs on 2 RDP servers which our

Dynamics Nav 2013 web application

蹲街弑〆低调 提交于 2020-01-13 06:27:07
问题 I want to create web application (sth like dashboard) which will be integrated with nav 2013. (Take data form Nav, display it to customers and also can update or insert data). In Nav I have done all tables and pages which have specificed all conditions and functions on fields. Those conditions are very usefull when you want to insert some data from page in Nav (for example: after filling customer number, page automatically show projects for this customer - what is very helpfull) Everything is

How to generate pdf report automatically in Dynamics NAV

假装没事ソ 提交于 2020-01-06 15:30:33
问题 I have designed a report and i would like to save each report in pdf into a specifi folder. How do i achieve this using a codeunit or report? Number:=50050; CustBill.RESET; IF CustBill.FIND('-') THEN tofile := DELCHR(CustBill."Customer No." + FORMAT(CustBill.Date),'=','/\:.,') + '.pdf'; Filename := 'D:\Bills\'+'tofile'; REPORT.SAVEASPDF(Number, Filename,Runrpt) 回答1: This statement IF CustBill.FIND('-') THEN if used without begin and end only related to the single next line of code. In your

Using MS Dynamics NAV with PHP [closed]

对着背影说爱祢 提交于 2020-01-02 19:29:07
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 9 months ago . I’m starting an extranet project, where php pages are supposed to send data to Microsoft Dynamics NAV. I haven’t used NAV before, but I found some info here. The example php code looks pretty clear to me, but is there any tips or tricks (basics) that I should know before starting this project? all examples are

Webservice on Navision / Microsoft Dynamics version 5… or else?

不羁岁月 提交于 2019-12-24 10:23:16
问题 Go bounty! This question has earned me a tumbleweed badge (7 views in 7 days!), which is somehow a strong confirmation that Navision has a very limited market share, which - I suspect - should be a confirmation Navision is neither all that great piece of software... But hey... that's what we got as a back-end, so I am ready to fight with this. :-O If there is some daring navision developer who is able to shed light onto this... the bounty is there for you! :) Original Post I have recently

Date filter in Microsoft Dynamics NAV webservice

半城伤御伤魂 提交于 2019-12-19 10:19:23
问题 When sending a filter to the webservice in php everything works fine, but when we need to sort on dates we encountered a problem. We need to get all the objects modified after a certain date. In a page we have a date element, like so: <xsd:element minOccurs="0" maxOccurs="1" name="Last_Date_Modified" type="xsd:date"/> And we have tried the solution explained here on SO: Dynamics Nav (Navision) webservice ReadMultiple date filter But our date format is a bit different, ours looks like: 2013-01

Calculate Key for WebService Update from Sql Query in Navision 2009

淺唱寂寞╮ 提交于 2019-12-13 05:12:08
问题 I am exposing some Pages in Navision 2009 as web services. To update a record, you have to issue a Read request, and send the Key field along with your Update request. I would rather calculate the Key myself for 2 reasons: Using the filters in the read request is awkward - a sql query would fit on one line. Performance is terrible. I've been able to figure out that at least part of the key is a Base64 encoded string of the columns that make up the primary key. I hope that someone can tell me

Send a Blob From Navision to a Javascript Add In

爷,独闯天下 提交于 2019-12-12 04:01:26
问题 I have a Blob Object in NAV, which represents an Excel document. I want this document to be displayed in my JavaScript Control AddIn (run in Web- and Windows-Client). But I am not sure how to handle this problem. Later in the AddIn, I need the Blob as a binary string. So far I tried two things. First try I build an interface with this method [ApplicationVisible] void SetExcelDocument(ExcelDocument ExcelDocument); and the ExcelDocument - Object looks like this [Serializable] public class