Click here to Skip to main content
15,891,845 members
Articles / Productivity Apps and Services / SAP

How To Access SAP Business Data From Silverlight 4 Clients Using WCF RIA Services And LINQ to SAP

Rate me:
Please Sign up or sign in to vote.
4.92/5 (13 votes)
17 Nov 2010CPOL5 min read 54.5K   582   19  
This article describes how to access and integrate SAP customer data in Silverlight using WCF RIA Services and LINQ to SAP.

This article appears in the Third Party Products and Tools section. Articles in this section are for the members only and must not be used to promote or advertise products in any way, shape or form. Please report any spam or advertising.

using System.Collections.Generic;
using System.ServiceModel.DomainServices.Hosting;
using System.ServiceModel.DomainServices.Server;
using ERPConnect;

namespace SAP2Silverlight.Web
{
	[EnableClientAccess]
	[RequiresAuthentication]
	public class SAPService : DomainService
	{
		public SAPService()
		{
			// NOTE: Contact the Theobald Software support team at http://www.theobald-software.com to get a 
			// evaluation license key.
			LIC.SetLic("...");
		}

		[Query(ResultLimit = 200)]
		public IEnumerable<Customer> GetCustomers(string namePattern)
		{
			// NOTE: Change the connection string for your SAP system.
			SAPContext sap = new SAPContext("ASHOST=SAPHOST1 SYSNR=03 USER=USERNAME PASSWD=PASSWORD LANG=EN CLIENT=001");

			foreach(CustomerRow c in sap.GetCustomers(namePattern))
				yield return new Customer { ID = c.KUNNR, Name = c.NAME1 };
		}
	}
}


By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
I’m a software developer based in Germany.

Homepage

Comments and Discussions