Mar 5, 2011

What is Duet Enterprise ?

Duet-Enterprise      Duet Enterprise is the bridge between Microsoft Sharepoint and SAP, it produced by Microsoft and SAP. These two marketing leader has joint their powers and created Duet Enterprise.

With Duet Enterprise people can blend their SAP data and processes with Microsoft Sharepoint content and collaboration to increase personal and team productivity across the pc, mobile phones and browsers.

 

SAMPLES

I want to share a sample video about Duet Enterprise. These video includes Duet Enterprise’s 3 main pillars including a foundation enabling interoperability between SAP applications and Microsoft SharePoint, Tools & Services to compose solutions that blend the worlds of process and collaboration and ready-to-use capabilities that provide immediate value to end users.

Enjoy,

Duet Enterprise Overview

Architecture

Duet Enterprise is built on top of SAP Netweaver and Microsoft Sharepoint Server 2010. Duet Enterprise an add-on on SAP Netwaver and Sharepoint 2010. In most deployments there is 3 system;

  • SAP LOB Applications
  • SCL (Service Consumption Layer)
  • Sharepoint 2010

Duet_Enterprise_Arch

The most common integrated solution is SAP ERP but with Duet Enterprise platform you can also handle the other solutions on SAP like CRM and one of the benefit of using the Duet Enterprise system  is its standardized interoperability with backend systems.

SCL (Service Consumption Layer) is a framework that connects SAP systems to Sharepoint. Some of the features of SCL are;

  • Connects to multiple SAP LOB System
  • Aggregates different SAP systems
    • If the data needs aggregation the SCL calls multiple SAP LOB System and aggregates resulting data
  • Serves as a proxy for Sharepoint system to access SAP business content and processes

As a component the SCL is an add-on for SAP Netwaver 7.02, ABAP Stack.

Duet_Enterprise_Arch_2

On Sharerpoint side Duet Enterprise uses core functionalities of SharePoint Server 2010 Enterprise, especially Business Connectivity Services (BCS) to connect to Web Services that are published on the SCL. Entities exposed through BCS are represented as external content types. The most common user interface type for representing external content types is the external list. SharePoint never copies the SAP data or stores it locally, but always retrieves it on demand from SAP LOB systems via the SCL.

More

Learn more about Duet Enterprise using this links;

On 1 February 2010 the Duet Enterprise Launch Summit has been done.

Go to Duet Enterprise Launch Summit

You can visit web page and  show videos about Duet Enterprise. As you can find a lot of documentation about Duet Enterprise serves by solution partners, or you can find my launch summit briefcase documents;

Go to My Duet Enterprise Launch Summit Briefcase

-ilker

Technorati Tags:

Jan 22, 2011

How To: Get SPUser or SPGroup From SPListItem

While using a user or group field with user and group property on a list or content type, you can extract value using this snippet;

SPFieldUserValue userOrGroupValue = null;

if (item[Constants.FieldOlcumSorumlusu] is SPFieldUserValue)
userOrGroupValue = (SPFieldUserValue)item[Constants.FieldOlcumSorumlusu];
else
{
SPFieldUserValueCollection spfieldUserValCol = (SPFieldUserValueCollection)item[Constants.FieldOlcumSorumlusu];
if (spfieldUserValCol.Count > 0)
userOrGroupValue = spfieldUserValCol[0];
}

if (userOrGroupValue == null) throw new SPException("somw error");

SPUser _user=null;
SPGroup _group=null;
if (userOrGroupValue != null)
{
// If User value is null it's a Group, if not User
if (userOrGroupValue.User != null)
{
_user = userOrGroupValue.User;
// TODO user operations
}
else
{
_group= m_web.Groups[userOrGroupValue.LookupValue];
// TODO Group operations
}
}


Enjoy,





Technorati Tags:

Oct 24, 2010

About Office 365

We are reading about office 365 but how could it work? Watch and see it in action.

 

Technorati Tags: