Navision Software was purchased by Microsoft and now it is supported by Microsoft Business Solutions together with Microsoft Great Plains, Axapta, Solomon, Microsoft Retail Management System and Microsoft CRM. Navision has extremely strong position on mid-size European and US markets, plus it has excellent manufacturing solution. Our goal is to help IT departments to support and tune Navision with in-house expertise and skills. The topic of this article is Navision database access from ASP.NET application via C/ODBC interface. Our goal will be ASPX page accessing Navision Customers.
Let's begin
1. In our case we will use Navision Attain 3.6 with Navision Database Server, Navision Application Server and Navision Client. These components are installed on Windows XP. You also need to install C/ODBC component form Navision Attain CD.
2. Let's create ODBC DSN for Navision data access. Select Control Panel -> Administrative Tools -> Data Sources (ODBC). Then select System DSN tab and press Add button. We'll use C/ODBC 32-bit data access driver. We'll name Data Source Name Navision, Connection leave Local. As the database (Database button) select Program FilesNavision AttainClientdatabase.fdb (demo database). Then click Company button ? we'll use CRONUS demo company. It is important for C/SIDE correct database access to setup proper options for C/ODBC connection. Press Options button and look at the options available ? we'll need Identifiers parameter ? it defines identifiers types, which will be transferred to the client application. In order to work correct with MS SQL Server 2000 with C/ODBC source we need to use these type: "a-z,A-Z,0-9,_". Now DNS is done. Let's create Linked Server.
3. Open MS SQL Server Enterprise Manager. Open server tree for the server, which you plan to use, for this server open Security folder and Lined Servers. With right click select New Linked Server in context menu. In the dialog box opened in the Provider Name select Microsoft OLE DB Provider for ODBC Drivers. Let's name our Linked Server NAVISION. In Data Source string enter ODBC DSN name - NAVISION in our case. Linked Server is ready! Let's select tables list and look at the data from Navision Attain database.
4. Next we need to create small stored procedure for sales data selection. Here is the text of the procedure: SET ANSI_NULLS ON SET ANSI_WARNINGS ON GO
CREATE PROCEDURE NavisionCustomers AS
DBCC TRACEON(8765) SELECT No_, Name, Address, City, Contact FROM OPENQUERY(NAVISION, 'SELECT * FROM Customer')
RETURN
Let's clarify some points here. TRACEON(8765) directive allows us to work with the data of variable length, returned by C/ODBC driver. Without it we can not select Navision tables fields ? we will have these errors:
OLE DB error trace [Non-interface error: Unexpected data length returned for the column: ProviderName='MSDASQL', TableName='[MSDASQL]', ColumnName='Ship_to_Filter', ExpectedLength='250', ReturnedLength='1']. Server: Msg 7347, Level 16, State 1, Line 1 OLE DB provider 'MSDASQL' returned an unexpected data length for the fixed-length column '[MSDASQL].Ship_to_Filter'. The expected data length is 250, while the returned data length is 1.
OPENQUERY command opens linked server and gives it execution request, and returns record set selected. Directives ANSI_NULLS and ANSI_WARNINGS are required ? they provide the possibility of the execution for heterogeneous requests. To test the procedure you can give its name in MS SQL Query Analyzer ? EXEC NavisionCustomers
5. Now we need to create ASP.NET application. Let's use free RAD environment ASP.NET WebMatrix. You can get infor and download it at http://asp.net/webmatrix . You need .NET SDK 1.1 installed, before WebMatrix installation.
6. Launch WebMatrix, select creation of the Data Pages -> Editable Data Grid in the wizard screen. Let's keep all the defaults suggested. On the access page created we'll change the header to Navision Attain Customers, select Verdana font and the font size desired. Next place on the page the component SqlDataSourceControl and tune it's ? Connection String : server='(local)'; database='Alba';trusted_connection=true (change server and database name to your actual names), and SelectCommand ? as EXEC NavisionCustomers
7. For our Data Grid, which will show customers, define DataSource as SqlDataSourceControl1, and DatKeyField ? as No_
8. Next switch to code edition mode and make these changes:
? In the DataGrid_Delete method let's correct the request for the customer deletion to the one we need
? Change DataGrid_Delete code, base on the fields we plan to use
9. Launch our application and test it. This is it!
Happy customizing, implementing and modifying! If you want us to do the job - give us a call 1-866-528-0577 or 1-630-961-5918! help@albaspectrum.com
Boris Makushkin is Lead Software Developer in Alba Spectrum Technologies ? USA nationwide Microsoft CRM, Microsoft Great Plains customization company, serving Chicago, Boston, San Francisco, San Diego, Los Angeles, Houston, Dallas, Atlanta, Miami, Montreal, Toronto, Vancouver, Moscow, Europe and internationally ( http://www.albaspectrum.com ), he is Microsoft CRM SDK, Navision, C#, VB.Net, SQL, Oracle, Unix developer.
It is really interesting that a bug can create problem... Read More
Are Spreadsheets Robbing your Enterprise of Competitive Advantage?'90% of "average"... Read More
Microsoft CRM is CRM answer from Microsoft Business Solutions.The whole... Read More
Let's first look at your ERP system selection (without Retail... Read More
Every organization which creates collaborative documents, whether they are budgets,... Read More
Software development is a risky business.Many software developers are barely... Read More
Currently Microsoft Business Solutions is on the way of creating... Read More
Innovative Maintenance Systems (IMS) is one company that offers solutions... Read More
Looks like Microsoft Great Plains becomes more and more popular,... Read More
When you buy a computer, it most likely comes with... Read More
There are certain pluses and minuses in both cases and... Read More
Follow the steps below to quickly design, generate, and deploy... Read More
ERP Consulting industry is on the way to serve clients... Read More
You've finally created databases that you can actually use to... Read More
Introduction To ISDN, Part III: Configuring PPP PAP AuthenticationNow we... Read More
First we had the original Google search that evolved into... Read More
Microsoft Business Solutions Great Plains and MS CRM (client relation... Read More
Finding the best spyware removers to detect and remove spyware... Read More
Domino server is a buffer between the operation system and... Read More
It is a well known fact that Java as a... Read More
Mike Dunville* had a decision to make. As the new... Read More
I started using PIP (Picture It Publishing) Platinum 2002 right... Read More
With many manufacturing shops heading over seas in favor of... Read More
Microsoft SQL Server is the leader for inexpensive and middle... Read More
This article is for advanced Microsoft CRM SDK C# developers.... Read More
Does Microsoft care for WebmastersIt's always been a problem with... Read More
During the years of our consulting practice, which comes back... Read More
Microsoft Great Plains as ERP and Microsoft CRM as... Read More
Microsoft bought Navision, Denmark based software development company, along with... Read More
This article will not attempt to advocate the use of... Read More
Microsoft Great Plains ? ERM from Microsoft Business Solutions and... Read More
So, why should you use any O/R mapping tool? I... Read More
Fleet Maintenance Management is a critical position in any company... Read More
When reading an article where some term is used often,... Read More
In part III of this ISDN primer, we learned that... Read More
Looks like Microsoft Great Plains becomes more and more popular,... Read More
I have always had a tendency to focus on the... Read More
Microsoft Business Solutions Great Plains is marketed for mid-size companies... Read More
One day, you suddenly realize that your computer started to... Read More
When you visit department stores and see that majority of... Read More
Microsoft Great Plains, former Great Plains Software Dynamics, eEnterprise has... Read More
Assertion facility is added in J2SE 1.4. In order to... Read More
In a previous article, I wrote about OpenOffice... Read More
How many steps does it take you to locate and... Read More
Imagine something that follows you home and sets itself up... Read More
Microsoft Business Solutions Great Plains has many years of successful... Read More
If you copy something from a Web site or elsewhere...... Read More
If you use Microsoft Outlook (or similar applications) for e-mailing,... Read More
Microsoft Business Solutions Great Plains is marketed for mid-size companies... Read More
Handling character strings in Java is supported through two final... Read More
Microsoft CRM is relatively new player on the now becoming... Read More
A wiki is an editable text-based website. But you don't... Read More
Program Flow is what you think it is. How the... Read More
Introduction: The creating of a computer program involves a number... Read More
Should one use Windows Update?This topic has good and valid... Read More
If you are in a business that passes documents around... Read More
Great Plains Inventory Management (IV) module gives your business a... Read More
Microsoft Great Plains serves the wide spectrum of horizontal markets.... Read More
New post-recession era has new features, which didn't exist in... Read More
If you have been using the Internet for any amount... Read More
Three highly respected names in Human Resources have joined forces... Read More
I like my software simple. If it's too complex or... Read More
Microsoft bought Navision, Denmark based software development company, along with... Read More
MicroWorld Technologies, Inc. the leading solutions provider in the area... Read More
Great Plains Fixed Assets Management module is a robust tool... Read More
Security flaws have long plagued Internet Explorer (IE), the market-dominating... Read More
Software |