![]() |
#1 |
Участник
|
For the last 6-9 months, Microsoft have been showing a demo of how a user could create a filter on a list place and invoke an action called Edit In Excel. This would open Microsoft Excel with the same records, the user selected in the List Place and allow the user to edit values and post modifications back to Microsoft Dynamics NAV, showing how the user would get a runtime error if he was trying to violate validation logic from NAV.
I will divide this post into 4 sections on how to achieve this
This first post is all about creating a spreadsheet, which reads the entire Customer table and show it in Excel. We could do this from inside NAV (populate an XML document and send it to the Client) but that would put us into a blind alley when going towards post number 2. So - we are going to use VSTO What is VSTO? VSTO (Visual Studio Tools for Office) came out as an add-on to Visual Studio 2005 and in Visual Studio 2008, it is an integrated part of the professional SKU. Basically it allows you to write code inside Excel, Word, Outlook etc. - add toolbars, menu items, subscribe to triggers and do all kinds of things using your favorite .net language - and mine is C#. VSTO is NOT in Visual Studio Express SKU's. I am not going to make this a tutorial on how to use VSTO - but I will just show a couple of basics. When creating a new project in Visual Studio, you have new options: ![]() and when you select to create an Excel Template - it actually opens up a spreadsheet inside of Visual Studio. ![]() Now Visual Studio might not be your favorite environment for using Excel, but that isn't the point. If you look to the right you will see a solution and a project with a number of C# files under your .xltx "folder". These are files, which contains code behind for the different sheets. Right click on Sheet1.cs and select View Code and you will see: ![]() Which kind of indicates where we are going here... I can write code in the Sheet1_Startup, which connects to our Microsoft Dynamics NAV Web Services and read data into the Spreadsheet - could it really be that simple? Yes, it really is that simple - but... ... when you see the code beneath in a moment you can see that this is really not scaling - and it really wouldn't allow us to edit the data - but hey, that is in post number 2 - this was the simple version, let's continue. You of course need to add a Web Reference to the Customer page (Page 21 - exposed as Customer) using the following URL (if the NAV is installed as default): http://localhost:7047/DynamicsNAV/WS/CRONU...d/Page/Customer and call the reference CustomerRef. Add the following code to Sheet1_Startup and run your solution. // Postpone Screen updating Application.ScreenUpdating = false; // Initialize the Service CustomerRef.Customer_Service service = new CustomerSimple.CustomerRef.Customer_Service(); service.UseDefaultCredentials = true; // Read the customers CustomerRef.Customer[] customers = service.ReadMultiple(null, null, 0); // Populate the header line int row = 1; this.Cells[row, 1] = "No"; this.Cells[row, 2] = "Name"; this.Cells[row, 3] = "Address"; this.Cells[row, 4] = "Address_2"; // etc. // Fill the spreadsheet foreach (CustomerRef.Customer customer in customers) { row++; this.Cells[row, 1] = customer.No; this.Cells[row, 2] = customer.Name; this.Cells[row, 3] = customer.Address; this.Cells[row, 4] = customer.Address_2; // etc. } // Set formatting for the added cells Microsoft.Office.Interop.Excel.Range range = this.Range[this.Cells[1, 1], this.Cells[row, 4]]; range.EntireColumn.NumberFormat = "@"; range.EntireColumn.HorizontalAlignment = Microsoft.Office.Interop.Excel.Constants.xlLeft; range.EntireColumn.AutoFit(); // Update the Screen Application.ScreenUpdating = true; That's it and that's that! This should bring up Excel looking like this: ![]() Not quite the end-goal, but I hope you get the picture. As usual - you can download the solution here http://www.freddy.dk/CustomerSimple.zip So where do we go from here? In the next post we will start by removing the code we just wrote and write some new and better code in C#. We will still not touch NAV (only from Web Services). The goal here is to read the data from NAV into a table, with knowledge about the field types and add the NAV Key to a hidden column - all in order to be able to post data back to NAV. My next post will also add a couple of buttons to the Excel toolbar and add the Save and Reload functions. It will still be hard coded to the Customer table though. In my third post I will explain how to get parameters from code on the Service Tier into our Spreadsheet (like the filter) and hook things up accordingly. Last, but not least, I will explain how we can do this without having a Web Reference to the Customer or other pages - how can we do this dynamically. Stay tuned, enjoy Freddy Kristiansen PM Architect Microsoft Dynamics NAV Подробнее
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|