SlideShare a Scribd company logo
1 of 22
Download to read offline
Microsoft Virtual Labs
            ®



    Getting Started with the Business
    Data Catalog in Microsoft Office
    SharePoint Server 2007
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Table of Contents
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
......................................................................................................................................................... 1
Exercise 1 Connect to AdventureWorksDW Database..................................................................................................2
Exercise 2 Define Entities, Methods, and Filters ...........................................................................................................5
Exercise 3 Define an IDEnumerator ..............................................................................................................................6
Exercise 4 Define Actions .............................................................................................................................................7
Exercise 5 Define Associations .....................................................................................................................................8
Exercise 6 Register AdventureWorksDW in the Business Data Catalog ......................................................................9
Exercise 7 Create a Reseller Explorer application (with no code)............................................................................... 13
Exercise 8 Create a SharePoint list to track reseller feedback ..................................................................................... 17
Conclusion ................................................................................................................................................................... 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Getting Started with the Business Data
Catalog in Microsoft Office SharePoint
Server 2007
                                  After completing this lab, you will be better able to:
Objectives                         Lab 1: Build and Register Metadata
                                       The objective of this lab is to build the metadata file that will connect
                                       SharePoint Server 2007 to the SQL Server 2005 AdventureWorksDW
                                       database.
                                  Note: A completed copy of the metadata file can be found in
                                  C:HOLBDCReference.
                                   Lab 2: Accessing the Business Data Catalog
                                       The objective of this lab is to register the AdventureWorksDW metadata
                                       file with SharePoint Server 2007.
                                  The Business Data Catalog is a new business integration feature in Microsoft
Scenario                          Office SharePoint Server 2007. It is a core service, and it enables Microsoft
                                  Office SharePoint Server 2007 servers to interact with business applications and
                                  display business data on the portal without any custom development. The
                                  Business Data Catalog bridges the gap between the portal and your business
                                  applications and enables you to bring in key data from various business
                                  applications to SharePoint sites, lists, search, and user profiles.
                                  The Business Data Catalog is essentially a catalog of business applications that
                                  are of interest to SharePoint Server 2007 users. It provides out-of-the-box
                                  support for displaying data from databases and any business application that
                                  provides Web services for retrieving data from the application. For example,
                                  using the Business Data Catalog, you can display data from your SAP or Siebel
                                  application using web services.
                                  The Business Data Catalog is the key infrastructural component around which
                                  most of the other business data features of SharePoint Server 2007 are built.
                                  Metadata authors with a skill set equivalent to that of an SQL developer describe
                                  the application programming interface (API) of business applications by using
                                  the Business Data Catalog XML metadata model. Administrators can register
                                  business applications in the catalog, after which the data in the business
                                  application is immediately available to you on your portal site through several
                                  other SharePoint Server 2007 business data features. Following is a brief
                                  discussion of these business data features.

Estimated Time to                 90 Minutes
Complete This Lab
                                      LITWAREINC
Computer used in this Lab




                                                   Page 1 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Exercise 1
Connect to AdventureWorksDW Database

Scenario
A LobSystem object is a source of business data, business logic, or both. SAP R/3 IDES, Siebel 7.5, and Microsoft
SQL Server 2005 databases are examples of LobSystem objects.
The LobSystem object is the top-level container for metadata that describes a particular business application. In
XML terms, it is the root node that contains all other metadata objects.
In this exercise, you will configure the connection to the AdventureWorksDW database as a LobSystem object.


Tasks                        Detailed Steps
Complete the following       Note: Login using the following credentials:
task on:                     Username: administrator
                             Password: pass@word1
   LITWAREINC                Log on to: LITWAREINC
1. Create the base XML       Note: Notice that this creates connection information for the AdventureWorksDW
   for the LobSystem         database.
   object.                   a. Wait for the Warmup Script to complete and the popup window to close.
                             b. Open Microsoft Visual Studio 2005 from the desktop shortcut
                             c. Select File | New | File.




                             d. Select XML File and click Open




                                                   Page 2 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
Tasks                        Detailed Steps




                             e. Select File | Save XMLFile1.xml As… (make sure XMLFile1.xml is the active
                                tab)
                             f. Save the file to C:HOLBDCBDCAWDW.xml




                             g. Use Ctrl-A to select all the default text
                             h. Right-click in the window and choose Insert Snippet…




                             i. From the selection box, choose BDC > LOB XML



                                                   Page 3 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
Tasks                        Detailed Steps




                             j. Select File | Save BDCAWDW.xml




                                                  Page 4 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Exercise 2
Define Entities, Methods, and Filters

Scenario
A LOB application registered in the Business Data Catalog defines the entities, the methods that can be executed on
the entities and filters to enable end user filtering. An entity is a business object, such as Customer or Product, in an
LOB application. Methods are the operations related to an entity and filters help limit the entity instances returned
from the method.
In Business Data Catalog, an entity belongs to a single LOB system and must have a unique name. Entities contain
identifiers, methods, filters and actions.


Tasks                          Detailed Steps
Complete the following         Note: Here you define seven entities – Product, SupportCase, Contact,
task on:                       SupportPerson, ProductSubCategory, ProductCategory, and Reseller. These entities
                               represent the high-level business objects in the AdventureWorksDW database.
                               For the remainder of the lab we’ll be primarily focused on the Reseller entity. This
   LITWAREINC
                               entity has a “ResellerFinder” method to get a list of resellers which includes Wildcard
1. Define Entities             and ExactMatch filters to enable end-user filtering on the Key and Name fields.
                               a. Highlight the line <!-- BDC Entities here -->
                               b. Right-click and choose Insert Snippet…
                               c. Choose BDC > Entities




                               d. Select File | Save BDCAWDW.xml




                                                      Page 5 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Exercise 3
Define an IDEnumerator

Scenario
To enable business data search, you need to define a SpecificFinder and a special type of MethodInstance called
IDEnumerator in your metadata.
Since you have already defined a SpecificFinder for the Reseller entity in Exercise 2, you will define an
IDEnumerator method now. An IDEnumerator method is a simple method that returns the list of IDs (unique keys)
for an entity that should be searchable. This enables indexing of the entities for the IDs the IDEnumerator method
returns.
Entities have zero or one IDEnumerator. The definition for an IDEnumerator is exactly like a Finder method,
except that it has zero filters and returns only the ID field or the ID and LastModifiedDate fields.


Tasks                        Detailed Steps
Complete the following       Note: If you require incremental crawl, then you must also make sure the
task on:                     LastModifiedDate property is one of the return fields in the SpecificFinder for the
                             entity from the LOB application.
                             Note: This example uses a Microsoft SQL Server 2005 database which supports
   LITWAREINC
                             streaming of data. For Web services and other non-streaming backends, you should
1. Define an                 use the LastIdSeen filter in your IDEnumerator as shown below to improve
   IDEnumerator to           performance. For example:
   index and search for      SELECT TOP 100 Id FROM Customers WHERE Id>=@LastIdSeen ORDER BY Id
   resellers in the
   AdventureWorksDW          a. Scroll to the bottom of the BDCAWDW.xml file
   database.                 b. Highlight the line <!--BDC ResellerIDEnumerator Here -->
                             c. Right-click and choose Insert Snippet…
                             d. Choose BDC > ResellerIDEnumerator




                             e. Select File | Save BDCAWDW.xml




                                                   Page 6 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Exercise 4
Define Actions

Scenario
Entities can have actions in the Business Data Catalog. Actions bridge the gap between SharePoint Server 2007 and
a native application user interface by providing a link back to the backend data source. You can use Business Data
Actions to build applications with write-back scenarios, such as a Customer Profile view that allows a user to update
profile information directly in SAP. Actions are implemented as links, so you can also use actions to perform simple
actions such as send e-mail or open a customer’s home page.
Actions travel everywhere with an entity. That is, once you define an action for an entity, the action will show up
everywhere you display that entity - be it in a Business Data Web Part or in a Business Data column.


Tasks                         Detailed Steps
Complete the following        Note: You now add an action to the Reseller entity called 'Search product on Portal'.
task on:                      As the name implies, this action will open up a browser and search for the product
                              name using Search Center in our SharePoint Server 2007 portal.
   LITWAREINC                 a. Highlight the line <!--BDC Reseller Actions Here -->
1. Add an action to the       b. Right-click and choose Insert Snippet…
   Reseller entity            c. Choose BDC > Reseller Actions




                              d. Select File | Save BDCAWDW.xml.




                                                    Page 7 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Exercise 5
Define Associations

Scenario
Entities can have associations in the Business Data Catalog. Associations allow Business Data Catalog entities to
have a hierarchical relationship, by defining the parent-child relationship and the method used to query for this
relationship.


Tasks                        Detailed Steps
Complete the following       a. Highlight the line <!--BDC Associations Here -->
task on:                     b. Right-click and choose Insert Snippet…
                             c. Choose BDC > Associations
   LITWAREINC
1. Add a pair of
   associations which
   refine the
   relationship between
   the Product,
   ProductCategory,
   and
   ProductSubCategory
   entities


                             d. Select File | Save BDCAWDW.xml
                             e. Close Visual Studio 2005.




                                                    Page 8 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Exercise 6
Register AdventureWorksDW in the Business Data Catalog

Scenario
In this exercise, you will register the AdventureWorksDW database in SharePoint Server 2007’s Business Data
Catalog using the metadata file created in the previous exercises.
Once you register AdventureWorksDW, you can use its data throughout the portal – in lists, web parts, search, and
user profiles. You’ll explore some of these features in later exercises.
In addition, each entity defined in a Business Data Catalog Application can be permissioned separately.


Tasks                        Detailed Steps
Complete the following 2     a. Open SharePoint 3.0 Central Administration from the Start Menu ->
tasks on:                       Administrative Tools.
                             b. Navigate to the Application Management page.
   LITWAREINC
1. Create a Business
   Data Catalog
   Application



                             c. In the Office SharePoint Server Shared Services section of the Application
                                Management page, click Create or configure this farm’s shared services.




                             d. Select SharedServices1 (Default) to access the Shared Service Provider (SSP).




                             e. In the Business Data Catalog section, click Add Application to open the Add
                                Application page.




                                                   Page 9 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
Tasks                        Detailed Steps




                             f. In the Add Application page, browse to “C:HOLBDCBDCAWDW.xml”, and
                                click Import.




                             g. Wait for the import to complete – this may take several minutes. You will see
                                progress screens which load every few seconds.




                             h. Once the import is complete, you will receive a status page. Ignore any warnings
                                that may appear and click OK
                             i. The details page for the new Application will be displayed.




                                                  Page 10 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
Tasks                        Detailed Steps




2. Set permissions on        a. Scroll down the page and you will see a list of the defined entities for this
   the created entities.        application




                             b. For each entity, we’ll need to add user access, as the default is no access for
                                anyone other than the administrator. Hover over Contact and choose Manage
                                Permissions from the dropdown menu




                             c. On the Manage Permissions page, choose Add Users/Groups




                                                   Page 11 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
Tasks                        Detailed Steps




                             d. On the Add Users/Groups page, use the following values:
                                 •    Users/Groups: NT AUTHORITYauthenticated users
                                 •    Choose Permissions: View Items, Selectable in Clients




                             e. Click Save
                             f. Use the site breadcrumb to return to the Application page




                             g. Repeat the permission setting steps for the rest of the defined entities
                             h. Congratulations, you’ve registered AdventureWorksDW, exposed its data to
                                SharePoint Server 2007, and allowed user access.




                                                   Page 12 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Exercise 7
Create a Reseller Explorer application (with no code)

Scenario
In this exercise, you’ll use the Business Data Web Parts to create an AdventureWorksDW Reseller Explorer
application with no code. The application will allow you to search all resellers. By clicking on a reseller name,
you’ll be able to view more details on the reseller profile page.


Tasks                         Detailed Steps
Complete the following 2      a. Click on the home menu button in Internet Explorer to return to the portal
tasks on:                        homepage
                              b. Click Create Site in the Site Actions menu at the top right
   LITWAREINC
1. Create the
   SharePoint site
   where you’ll build
   Reseller Explorer




                              c. Use the following values
                                  •    Title: Reseller Explorer
                                  •    URL name: resellerexplorer
                                  •    Template Selection: Blank Site
                              d. Click Create
2. Add a Business Data        Note: The Business Data List Web Part displays a list of entity instances from a
   List Web Part              business application registered in the Business Data Catalog. For example, you can
                              use a Business Data List Web Part to display the resellers from the
                              AdventureWorksDW database.
                              This shows how you can add a Business Data List Web Part to display a list of
                              resellers from the AdventureWorksDW database with no code.
                              a. Click Edit Page in the Site Actions menu. This puts the page in edit mode and
                                 shows controls for adding, removing, and repositioning page elements.




                                                    Page 13 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
Tasks                        Detailed Steps
                             b. Click Add a Web Part in the Left zone.




                             c. The “Add Web Parts - Web Page” dialog is displayed. Check Business Data
                                List and click Add.




                             d. A Business Data List Web Part has been added. Click Open the tool pane inside
                                the Business Data List Web part.




                             e. Click the Browse icon which looks like an open book
                             f. Double-click on Reseller from the popup window




                             g. Expand the Appearance section.
                             h. Replace Business Data List in the Title field with Resellers from
                                AdventureWorksDW




                                                  Page 14 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
Tasks                        Detailed Steps




                             i. Click OK at the bottom of the tool pane.
                             j. You have now created a Business Data List Web Part that displays resellers from
                                the AdventureWorksDW database.
                             k. Click on Retrieve Data




                             l. Click on the Name of the first item in the list




                             m. You are taken to the Reseller Details page. This page is created automatically for
                                each Business Data Catalog entity




                                                   Page 15 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
Tasks                        Detailed Steps




                             n. Click the browser back button to return to the Reseller Explorer page
                             o. Hover over the first name entry and examine the items in the drop down list




                             p. Notice there are two items, corresponding to the available Actions for the entity.
                                The default View Profile which takes you to the details page, and the custom
                                Search product on Portal which we included in our metadata definition.
                                Business Data Catalog search is covered in more depth as part of the Search Center
                                lab.




                                                  Page 16 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Exercise 8
Create a SharePoint list to track reseller feedback

Scenario
Microsoft Windows SharePoint Services V3 allows you to create custom field types. Microsoft Office SharePoint
Server 2007 uses this feature to provide a new field type called Business Data that is available to all lists in
SharePoint Server 2007. The Business Data field type enables users to add data from business applications
registered in the Business Data Catalog to lists.
This topic shows how you can add a Reseller column to a SharePoint list.


Tasks                        Detailed Steps
Complete the following       a. Click Create in the Site Actions menu at the top right. The Create Page page
task on:                        appears.


   LITWAREINC
1. Create the Reseller
   Feedback list




                             b. Click Custom List in the Custom Lists section. The New page appears.




                             c. Type Reseller Feedback in the Name field and click Create. The Reseller
                                Feedback list appears.
                             d. Click Settings on the list toolbar and select Create Column. The New Column
                                page appears.




                                                  Page 17 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
Tasks                        Detailed Steps




                             e. Use the following values:
                                 •   Column name: Reseller
                                 •   The type of information in this column is: Business data
                                 •   Type: Reseller (BDCAWDW)
                                 •   Add a column to show each of these additional fields: Number
                             f. Click OK. You return to the list, which now contains the Reseller and the related
                                Reseller: Number columns
                             g. Click New on the list toolbar and select New Item. The New Item page appears.




                             h. Use the following values:
                                 •   Title: Can’t withstand rainy Seattle winter
                                 •   Reseller: Volume Bike Sellers chosen in one of these ways:
                                           • Type Bike in the Reseller field and click the Check Names icon.
                                             bike is underlined in red and a message is displayed: No exact match
                                             was found. Click bike and choose the reseller.




                                           • Click the Browse icon, choose Name in the search dropdown, type
                                             bike in the search box, and click the magnifying glass button. Select
                                             the reseller from the search results box.




                                                  Page 18 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
Tasks                        Detailed Steps




                             i. Click OK. The new list item appears with the reseller name and number. The
                                reseller name item also includes the drop down menu of all the available Business
                                Data Catalog actions for the reseller entity.




                                                  Page 19 of 20
Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007


Conclusion
In this lab you learned about some of the available options in the new Business Data Catalog in Microsoft Office
SharePoint Server 2007. You walked through the process of creating a new metadata definition, deploying the
application, using the provided Business Data Catalog Web Parts, and including Business Data in SharePoint lists.




                                                  Page 20 of 20

More Related Content

What's hot

Ado.net session10
Ado.net session10Ado.net session10
Ado.net session10Niit Care
 
( 5 ) Office 2007 Create A Business Data Catolog
( 5 ) Office 2007   Create A Business Data Catolog( 5 ) Office 2007   Create A Business Data Catolog
( 5 ) Office 2007 Create A Business Data CatologLiquidHub
 
Power pivot planning_and_deployment_whitepaper
Power pivot planning_and_deployment_whitepaperPower pivot planning_and_deployment_whitepaper
Power pivot planning_and_deployment_whitepaperKlaudiia Jacome
 
Guidelines DataCite Denmark 2014
Guidelines DataCite Denmark 2014Guidelines DataCite Denmark 2014
Guidelines DataCite Denmark 2014DTU Library
 
Business Intelligence Technology Presentation
Business Intelligence Technology PresentationBusiness Intelligence Technology Presentation
Business Intelligence Technology PresentationJohn Paredes
 
How To Use Sharepoint Metadata
How To Use Sharepoint MetadataHow To Use Sharepoint Metadata
How To Use Sharepoint MetadataChristopher Bunn
 
SharePoint Metadata and Search Refiners SPSUTAH2013 Jan 2013
SharePoint Metadata and Search Refiners SPSUTAH2013 Jan 2013SharePoint Metadata and Search Refiners SPSUTAH2013 Jan 2013
SharePoint Metadata and Search Refiners SPSUTAH2013 Jan 2013Owen Allen
 
Robert Parkin Portfolio
Robert Parkin PortfolioRobert Parkin Portfolio
Robert Parkin Portfoliorsparkin
 
owb-11gr2-new-features-summary-129693
owb-11gr2-new-features-summary-129693owb-11gr2-new-features-summary-129693
owb-11gr2-new-features-summary-129693Carnot Antonio Romero
 
Developer's guide to customization
Developer's guide to customizationDeveloper's guide to customization
Developer's guide to customizationAhmed Farag
 
SAP BI with BO from LCC Infotech,Hyderabad
SAP BI with BO from LCC Infotech,HyderabadSAP BI with BO from LCC Infotech,Hyderabad
SAP BI with BO from LCC Infotech,Hyderabadlccinfotech
 
4 Aa1 1793 Enw
4 Aa1 1793 Enw4 Aa1 1793 Enw
4 Aa1 1793 EnwLiquidHub
 
Taxonomies for Publishing
Taxonomies for PublishingTaxonomies for Publishing
Taxonomies for PublishingTSoholt
 
SharePoint 2010 Managed Metadata
SharePoint 2010 Managed MetadataSharePoint 2010 Managed Metadata
SharePoint 2010 Managed MetadataNick Hobbs
 
Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Eduardo Castro
 
oracle-database-editions-wp-12c-1896124
oracle-database-editions-wp-12c-1896124oracle-database-editions-wp-12c-1896124
oracle-database-editions-wp-12c-1896124Arjun Sathe
 
Sas visual analytics Training
Sas visual analytics Training Sas visual analytics Training
Sas visual analytics Training bidwhm
 

What's hot (19)

Ado.net session10
Ado.net session10Ado.net session10
Ado.net session10
 
project_real_wp
project_real_wpproject_real_wp
project_real_wp
 
( 5 ) Office 2007 Create A Business Data Catolog
( 5 ) Office 2007   Create A Business Data Catolog( 5 ) Office 2007   Create A Business Data Catolog
( 5 ) Office 2007 Create A Business Data Catolog
 
Power pivot planning_and_deployment_whitepaper
Power pivot planning_and_deployment_whitepaperPower pivot planning_and_deployment_whitepaper
Power pivot planning_and_deployment_whitepaper
 
Guidelines DataCite Denmark 2014
Guidelines DataCite Denmark 2014Guidelines DataCite Denmark 2014
Guidelines DataCite Denmark 2014
 
Business Intelligence Technology Presentation
Business Intelligence Technology PresentationBusiness Intelligence Technology Presentation
Business Intelligence Technology Presentation
 
How To Use Sharepoint Metadata
How To Use Sharepoint MetadataHow To Use Sharepoint Metadata
How To Use Sharepoint Metadata
 
SharePoint Metadata and Search Refiners SPSUTAH2013 Jan 2013
SharePoint Metadata and Search Refiners SPSUTAH2013 Jan 2013SharePoint Metadata and Search Refiners SPSUTAH2013 Jan 2013
SharePoint Metadata and Search Refiners SPSUTAH2013 Jan 2013
 
Robert Parkin Portfolio
Robert Parkin PortfolioRobert Parkin Portfolio
Robert Parkin Portfolio
 
owb-11gr2-new-features-summary-129693
owb-11gr2-new-features-summary-129693owb-11gr2-new-features-summary-129693
owb-11gr2-new-features-summary-129693
 
Developer's guide to customization
Developer's guide to customizationDeveloper's guide to customization
Developer's guide to customization
 
SAP BI with BO from LCC Infotech,Hyderabad
SAP BI with BO from LCC Infotech,HyderabadSAP BI with BO from LCC Infotech,Hyderabad
SAP BI with BO from LCC Infotech,Hyderabad
 
4 Aa1 1793 Enw
4 Aa1 1793 Enw4 Aa1 1793 Enw
4 Aa1 1793 Enw
 
Taxonomies for Publishing
Taxonomies for PublishingTaxonomies for Publishing
Taxonomies for Publishing
 
SharePoint 2010 Managed Metadata
SharePoint 2010 Managed MetadataSharePoint 2010 Managed Metadata
SharePoint 2010 Managed Metadata
 
Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2
 
Sap business objects bobi training
Sap business objects bobi trainingSap business objects bobi training
Sap business objects bobi training
 
oracle-database-editions-wp-12c-1896124
oracle-database-editions-wp-12c-1896124oracle-database-editions-wp-12c-1896124
oracle-database-editions-wp-12c-1896124
 
Sas visual analytics Training
Sas visual analytics Training Sas visual analytics Training
Sas visual analytics Training
 

Viewers also liked

Chapter 7 upes update
Chapter 7 upes updateChapter 7 upes update
Chapter 7 upes updateUPES Dehradun
 
A Guide to Navigating Social Media in the Workplace
A Guide to Navigating Social Media in the WorkplaceA Guide to Navigating Social Media in the Workplace
A Guide to Navigating Social Media in the WorkplaceTyler McCarthy
 
UPES Admissions 2014
UPES Admissions 2014UPES Admissions 2014
UPES Admissions 2014UPES Dehradun
 

Viewers also liked (6)

Chapter 7 upes update
Chapter 7 upes updateChapter 7 upes update
Chapter 7 upes update
 
updated certification
updated certificationupdated certification
updated certification
 
A Guide to Navigating Social Media in the Workplace
A Guide to Navigating Social Media in the WorkplaceA Guide to Navigating Social Media in the Workplace
A Guide to Navigating Social Media in the Workplace
 
UPES Admissions 2014
UPES Admissions 2014UPES Admissions 2014
UPES Admissions 2014
 
Space Tourism in India - A Collaborative Project of UPES & McGill University
Space Tourism in India - A Collaborative Project of UPES & McGill UniversitySpace Tourism in India - A Collaborative Project of UPES & McGill University
Space Tourism in India - A Collaborative Project of UPES & McGill University
 
Hyperloop project
Hyperloop projectHyperloop project
Hyperloop project
 

Similar to Hol311 Getting%20 Started%20with%20the%20 Business%20 Data%20 Catalog%20in%20 Microsoft%20 Office%20 Sha

( 5 ) Office 2007 Create A Business Data Catolog
( 5 ) Office 2007   Create A Business Data Catolog( 5 ) Office 2007   Create A Business Data Catolog
( 5 ) Office 2007 Create A Business Data CatologLiquidHub
 
ORACLE BI APPLICATIONS – IMPLEMENTATION & CUSTOMIZATION FOR ORACLE EBS
ORACLE BI APPLICATIONS – IMPLEMENTATION & CUSTOMIZATION FOR ORACLE EBSORACLE BI APPLICATIONS – IMPLEMENTATION & CUSTOMIZATION FOR ORACLE EBS
ORACLE BI APPLICATIONS – IMPLEMENTATION & CUSTOMIZATION FOR ORACLE EBSiWare Logic Technologies Pvt. Ltd.
 
Introduction to Azure Data Factory
Introduction to Azure Data FactoryIntroduction to Azure Data Factory
Introduction to Azure Data FactorySlava Kokaev
 
Presentation on Crystal Reports and Business Objects Enterprise Features
Presentation on Crystal Reports and Business Objects Enterprise FeaturesPresentation on Crystal Reports and Business Objects Enterprise Features
Presentation on Crystal Reports and Business Objects Enterprise FeaturesInfoDev
 
Sql Saturday 228 Rapid Data Integration Using SharePoint BCS
Sql Saturday 228   Rapid Data Integration Using SharePoint BCSSql Saturday 228   Rapid Data Integration Using SharePoint BCS
Sql Saturday 228 Rapid Data Integration Using SharePoint BCSObilogic
 
Information Design Tool -Tutorial1
Information Design Tool -Tutorial1Information Design Tool -Tutorial1
Information Design Tool -Tutorial1Obily W
 
Oracle endeca information discovery v3.0 integration with the obiee 11g bi se...
Oracle endeca information discovery v3.0 integration with the obiee 11g bi se...Oracle endeca information discovery v3.0 integration with the obiee 11g bi se...
Oracle endeca information discovery v3.0 integration with the obiee 11g bi se...Ravi Kumar Lanke
 
Portal Integration with SAP BusinessObjects (SDK)
Portal Integration with SAP BusinessObjects (SDK)Portal Integration with SAP BusinessObjects (SDK)
Portal Integration with SAP BusinessObjects (SDK)DMIMarketing
 
Guidelines data cite_denmark_ver2
Guidelines data cite_denmark_ver2Guidelines data cite_denmark_ver2
Guidelines data cite_denmark_ver2DTU Library
 
Summary Project Server Psi
Summary Project Server PsiSummary Project Server Psi
Summary Project Server PsiPhuong Nguyen
 
SAP BI/DW Training with BO Integration
SAP BI/DW Training with BO IntegrationSAP BI/DW Training with BO Integration
SAP BI/DW Training with BO Integrationmishra4927
 
SAP BW - Creation of BW Flows.doc
SAP BW  - Creation of BW Flows.docSAP BW  - Creation of BW Flows.doc
SAP BW - Creation of BW Flows.docKoushikGuna
 
Sameer Bhandari Resume
Sameer Bhandari ResumeSameer Bhandari Resume
Sameer Bhandari Resumesameerbhandari
 
Comprehensive Guide for Microsoft Fabric to Master Data Analytics
Comprehensive Guide for Microsoft Fabric to Master Data AnalyticsComprehensive Guide for Microsoft Fabric to Master Data Analytics
Comprehensive Guide for Microsoft Fabric to Master Data AnalyticsSparity1
 
Sharepoint designer workflow by quontra us
Sharepoint designer workflow by quontra usSharepoint designer workflow by quontra us
Sharepoint designer workflow by quontra usQUONTRASOLUTIONS
 

Similar to Hol311 Getting%20 Started%20with%20the%20 Business%20 Data%20 Catalog%20in%20 Microsoft%20 Office%20 Sha (20)

( 5 ) Office 2007 Create A Business Data Catolog
( 5 ) Office 2007   Create A Business Data Catolog( 5 ) Office 2007   Create A Business Data Catolog
( 5 ) Office 2007 Create A Business Data Catolog
 
ORACLE BI APPLICATIONS – IMPLEMENTATION & CUSTOMIZATION FOR ORACLE EBS
ORACLE BI APPLICATIONS – IMPLEMENTATION & CUSTOMIZATION FOR ORACLE EBSORACLE BI APPLICATIONS – IMPLEMENTATION & CUSTOMIZATION FOR ORACLE EBS
ORACLE BI APPLICATIONS – IMPLEMENTATION & CUSTOMIZATION FOR ORACLE EBS
 
Introduction to Azure Data Factory
Introduction to Azure Data FactoryIntroduction to Azure Data Factory
Introduction to Azure Data Factory
 
Presentation on Crystal Reports and Business Objects Enterprise Features
Presentation on Crystal Reports and Business Objects Enterprise FeaturesPresentation on Crystal Reports and Business Objects Enterprise Features
Presentation on Crystal Reports and Business Objects Enterprise Features
 
Sql Saturday 228 Rapid Data Integration Using SharePoint BCS
Sql Saturday 228   Rapid Data Integration Using SharePoint BCSSql Saturday 228   Rapid Data Integration Using SharePoint BCS
Sql Saturday 228 Rapid Data Integration Using SharePoint BCS
 
Information Design Tool -Tutorial1
Information Design Tool -Tutorial1Information Design Tool -Tutorial1
Information Design Tool -Tutorial1
 
Share point 2010 overview
Share point 2010 overviewShare point 2010 overview
Share point 2010 overview
 
Oracle endeca information discovery v3.0 integration with the obiee 11g bi se...
Oracle endeca information discovery v3.0 integration with the obiee 11g bi se...Oracle endeca information discovery v3.0 integration with the obiee 11g bi se...
Oracle endeca information discovery v3.0 integration with the obiee 11g bi se...
 
Portal Integration with SAP BusinessObjects (SDK)
Portal Integration with SAP BusinessObjects (SDK)Portal Integration with SAP BusinessObjects (SDK)
Portal Integration with SAP BusinessObjects (SDK)
 
Guidelines data cite_denmark_ver2
Guidelines data cite_denmark_ver2Guidelines data cite_denmark_ver2
Guidelines data cite_denmark_ver2
 
It ready dw_day3_rev00
It ready dw_day3_rev00It ready dw_day3_rev00
It ready dw_day3_rev00
 
Summary Project Server Psi
Summary Project Server PsiSummary Project Server Psi
Summary Project Server Psi
 
Sap BusinessObjects 4
Sap BusinessObjects 4Sap BusinessObjects 4
Sap BusinessObjects 4
 
SAP BI/DW Training with BO Integration
SAP BI/DW Training with BO IntegrationSAP BI/DW Training with BO Integration
SAP BI/DW Training with BO Integration
 
SAP BI/BW
SAP BI/BWSAP BI/BW
SAP BI/BW
 
SAP BW - Creation of BW Flows.doc
SAP BW  - Creation of BW Flows.docSAP BW  - Creation of BW Flows.doc
SAP BW - Creation of BW Flows.doc
 
WebSphere Commerce v7 Data Load
WebSphere Commerce v7 Data LoadWebSphere Commerce v7 Data Load
WebSphere Commerce v7 Data Load
 
Sameer Bhandari Resume
Sameer Bhandari ResumeSameer Bhandari Resume
Sameer Bhandari Resume
 
Comprehensive Guide for Microsoft Fabric to Master Data Analytics
Comprehensive Guide for Microsoft Fabric to Master Data AnalyticsComprehensive Guide for Microsoft Fabric to Master Data Analytics
Comprehensive Guide for Microsoft Fabric to Master Data Analytics
 
Sharepoint designer workflow by quontra us
Sharepoint designer workflow by quontra usSharepoint designer workflow by quontra us
Sharepoint designer workflow by quontra us
 

More from LiquidHub

Share point 2013 coding standards and best practices 1.0
Share point 2013 coding standards and best practices 1.0Share point 2013 coding standards and best practices 1.0
Share point 2013 coding standards and best practices 1.0LiquidHub
 
Sharepoint 2013 upgrade process
Sharepoint 2013 upgrade processSharepoint 2013 upgrade process
Sharepoint 2013 upgrade processLiquidHub
 
Share point 2013
Share point 2013Share point 2013
Share point 2013LiquidHub
 
Share point 2010-uiimprovements
Share point 2010-uiimprovementsShare point 2010-uiimprovements
Share point 2010-uiimprovementsLiquidHub
 
Microsoft office-sharepoint-server-2007-presentation-120211522467022-2
Microsoft office-sharepoint-server-2007-presentation-120211522467022-2Microsoft office-sharepoint-server-2007-presentation-120211522467022-2
Microsoft office-sharepoint-server-2007-presentation-120211522467022-2LiquidHub
 
Managing metadata in_share_point_2010
Managing metadata in_share_point_2010Managing metadata in_share_point_2010
Managing metadata in_share_point_2010LiquidHub
 
Fast search for share point
Fast search for share pointFast search for share point
Fast search for share pointLiquidHub
 
Simple Farm Server Deployment
Simple Farm Server DeploymentSimple Farm Server Deployment
Simple Farm Server DeploymentLiquidHub
 
Pre Install Databases
Pre Install DatabasesPre Install Databases
Pre Install DatabasesLiquidHub
 
Moss 2007 Deployment Detail
Moss 2007 Deployment DetailMoss 2007 Deployment Detail
Moss 2007 Deployment DetailLiquidHub
 
Moss 2007 Backup Strategies
Moss 2007 Backup StrategiesMoss 2007 Backup Strategies
Moss 2007 Backup StrategiesLiquidHub
 
How To Configure Email Enabled Lists In Moss2007 Rtm Using Exchange 2003
How To Configure Email Enabled Lists In Moss2007 Rtm Using Exchange 2003How To Configure Email Enabled Lists In Moss2007 Rtm Using Exchange 2003
How To Configure Email Enabled Lists In Moss2007 Rtm Using Exchange 2003LiquidHub
 
5060 A 01 Demonstration Steps
5060 A 01 Demonstration Steps5060 A 01 Demonstration Steps
5060 A 01 Demonstration StepsLiquidHub
 
Working With Infopath 2007
Working With Infopath 2007Working With Infopath 2007
Working With Infopath 2007LiquidHub
 
Whats New In Microsoft Windows Share Point Services Feature Walkthrough
Whats New In Microsoft Windows Share Point Services Feature WalkthroughWhats New In Microsoft Windows Share Point Services Feature Walkthrough
Whats New In Microsoft Windows Share Point Services Feature WalkthroughLiquidHub
 
Overviewofthe2007 Microsoft Office System Components Refresh
Overviewofthe2007 Microsoft Office System Components RefreshOverviewofthe2007 Microsoft Office System Components Refresh
Overviewofthe2007 Microsoft Office System Components RefreshLiquidHub
 
Organizingand Finding Resourceswith Office Share Point Server2007 Refresh
Organizingand Finding Resourceswith Office Share Point Server2007 RefreshOrganizingand Finding Resourceswith Office Share Point Server2007 Refresh
Organizingand Finding Resourceswith Office Share Point Server2007 RefreshLiquidHub
 

More from LiquidHub (20)

Share point 2013 coding standards and best practices 1.0
Share point 2013 coding standards and best practices 1.0Share point 2013 coding standards and best practices 1.0
Share point 2013 coding standards and best practices 1.0
 
Sharepoint 2013 upgrade process
Sharepoint 2013 upgrade processSharepoint 2013 upgrade process
Sharepoint 2013 upgrade process
 
Share point 2013
Share point 2013Share point 2013
Share point 2013
 
Share point 2010-uiimprovements
Share point 2010-uiimprovementsShare point 2010-uiimprovements
Share point 2010-uiimprovements
 
Microsoft office-sharepoint-server-2007-presentation-120211522467022-2
Microsoft office-sharepoint-server-2007-presentation-120211522467022-2Microsoft office-sharepoint-server-2007-presentation-120211522467022-2
Microsoft office-sharepoint-server-2007-presentation-120211522467022-2
 
Managing metadata in_share_point_2010
Managing metadata in_share_point_2010Managing metadata in_share_point_2010
Managing metadata in_share_point_2010
 
Fast search for share point
Fast search for share pointFast search for share point
Fast search for share point
 
Simple Farm Server Deployment
Simple Farm Server DeploymentSimple Farm Server Deployment
Simple Farm Server Deployment
 
Pre Install Databases
Pre Install DatabasesPre Install Databases
Pre Install Databases
 
Moss 2007 Deployment Detail
Moss 2007 Deployment DetailMoss 2007 Deployment Detail
Moss 2007 Deployment Detail
 
Moss 2007 Backup Strategies
Moss 2007 Backup StrategiesMoss 2007 Backup Strategies
Moss 2007 Backup Strategies
 
How To Configure Email Enabled Lists In Moss2007 Rtm Using Exchange 2003
How To Configure Email Enabled Lists In Moss2007 Rtm Using Exchange 2003How To Configure Email Enabled Lists In Moss2007 Rtm Using Exchange 2003
How To Configure Email Enabled Lists In Moss2007 Rtm Using Exchange 2003
 
Bdc Screens
Bdc ScreensBdc Screens
Bdc Screens
 
Bdc Screens
Bdc ScreensBdc Screens
Bdc Screens
 
5060 A 01 Demonstration Steps
5060 A 01 Demonstration Steps5060 A 01 Demonstration Steps
5060 A 01 Demonstration Steps
 
5060 A 01
5060 A 015060 A 01
5060 A 01
 
Working With Infopath 2007
Working With Infopath 2007Working With Infopath 2007
Working With Infopath 2007
 
Whats New In Microsoft Windows Share Point Services Feature Walkthrough
Whats New In Microsoft Windows Share Point Services Feature WalkthroughWhats New In Microsoft Windows Share Point Services Feature Walkthrough
Whats New In Microsoft Windows Share Point Services Feature Walkthrough
 
Overviewofthe2007 Microsoft Office System Components Refresh
Overviewofthe2007 Microsoft Office System Components RefreshOverviewofthe2007 Microsoft Office System Components Refresh
Overviewofthe2007 Microsoft Office System Components Refresh
 
Organizingand Finding Resourceswith Office Share Point Server2007 Refresh
Organizingand Finding Resourceswith Office Share Point Server2007 RefreshOrganizingand Finding Resourceswith Office Share Point Server2007 Refresh
Organizingand Finding Resourceswith Office Share Point Server2007 Refresh
 

Recently uploaded

TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integrationmarketing932765
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Nikki Chapple
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...itnewsafrica
 

Recently uploaded (20)

TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
 

Hol311 Getting%20 Started%20with%20the%20 Business%20 Data%20 Catalog%20in%20 Microsoft%20 Office%20 Sha

  • 1. Microsoft Virtual Labs ® Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007
  • 2. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Table of Contents Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 ......................................................................................................................................................... 1 Exercise 1 Connect to AdventureWorksDW Database..................................................................................................2 Exercise 2 Define Entities, Methods, and Filters ...........................................................................................................5 Exercise 3 Define an IDEnumerator ..............................................................................................................................6 Exercise 4 Define Actions .............................................................................................................................................7 Exercise 5 Define Associations .....................................................................................................................................8 Exercise 6 Register AdventureWorksDW in the Business Data Catalog ......................................................................9 Exercise 7 Create a Reseller Explorer application (with no code)............................................................................... 13 Exercise 8 Create a SharePoint list to track reseller feedback ..................................................................................... 17 Conclusion ................................................................................................................................................................... 20
  • 3. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 After completing this lab, you will be better able to: Objectives Lab 1: Build and Register Metadata The objective of this lab is to build the metadata file that will connect SharePoint Server 2007 to the SQL Server 2005 AdventureWorksDW database. Note: A completed copy of the metadata file can be found in C:HOLBDCReference. Lab 2: Accessing the Business Data Catalog The objective of this lab is to register the AdventureWorksDW metadata file with SharePoint Server 2007. The Business Data Catalog is a new business integration feature in Microsoft Scenario Office SharePoint Server 2007. It is a core service, and it enables Microsoft Office SharePoint Server 2007 servers to interact with business applications and display business data on the portal without any custom development. The Business Data Catalog bridges the gap between the portal and your business applications and enables you to bring in key data from various business applications to SharePoint sites, lists, search, and user profiles. The Business Data Catalog is essentially a catalog of business applications that are of interest to SharePoint Server 2007 users. It provides out-of-the-box support for displaying data from databases and any business application that provides Web services for retrieving data from the application. For example, using the Business Data Catalog, you can display data from your SAP or Siebel application using web services. The Business Data Catalog is the key infrastructural component around which most of the other business data features of SharePoint Server 2007 are built. Metadata authors with a skill set equivalent to that of an SQL developer describe the application programming interface (API) of business applications by using the Business Data Catalog XML metadata model. Administrators can register business applications in the catalog, after which the data in the business application is immediately available to you on your portal site through several other SharePoint Server 2007 business data features. Following is a brief discussion of these business data features. Estimated Time to 90 Minutes Complete This Lab LITWAREINC Computer used in this Lab Page 1 of 20
  • 4. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Exercise 1 Connect to AdventureWorksDW Database Scenario A LobSystem object is a source of business data, business logic, or both. SAP R/3 IDES, Siebel 7.5, and Microsoft SQL Server 2005 databases are examples of LobSystem objects. The LobSystem object is the top-level container for metadata that describes a particular business application. In XML terms, it is the root node that contains all other metadata objects. In this exercise, you will configure the connection to the AdventureWorksDW database as a LobSystem object. Tasks Detailed Steps Complete the following Note: Login using the following credentials: task on: Username: administrator Password: pass@word1 LITWAREINC Log on to: LITWAREINC 1. Create the base XML Note: Notice that this creates connection information for the AdventureWorksDW for the LobSystem database. object. a. Wait for the Warmup Script to complete and the popup window to close. b. Open Microsoft Visual Studio 2005 from the desktop shortcut c. Select File | New | File. d. Select XML File and click Open Page 2 of 20
  • 5. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Tasks Detailed Steps e. Select File | Save XMLFile1.xml As… (make sure XMLFile1.xml is the active tab) f. Save the file to C:HOLBDCBDCAWDW.xml g. Use Ctrl-A to select all the default text h. Right-click in the window and choose Insert Snippet… i. From the selection box, choose BDC > LOB XML Page 3 of 20
  • 6. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Tasks Detailed Steps j. Select File | Save BDCAWDW.xml Page 4 of 20
  • 7. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Exercise 2 Define Entities, Methods, and Filters Scenario A LOB application registered in the Business Data Catalog defines the entities, the methods that can be executed on the entities and filters to enable end user filtering. An entity is a business object, such as Customer or Product, in an LOB application. Methods are the operations related to an entity and filters help limit the entity instances returned from the method. In Business Data Catalog, an entity belongs to a single LOB system and must have a unique name. Entities contain identifiers, methods, filters and actions. Tasks Detailed Steps Complete the following Note: Here you define seven entities – Product, SupportCase, Contact, task on: SupportPerson, ProductSubCategory, ProductCategory, and Reseller. These entities represent the high-level business objects in the AdventureWorksDW database. For the remainder of the lab we’ll be primarily focused on the Reseller entity. This LITWAREINC entity has a “ResellerFinder” method to get a list of resellers which includes Wildcard 1. Define Entities and ExactMatch filters to enable end-user filtering on the Key and Name fields. a. Highlight the line <!-- BDC Entities here --> b. Right-click and choose Insert Snippet… c. Choose BDC > Entities d. Select File | Save BDCAWDW.xml Page 5 of 20
  • 8. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Exercise 3 Define an IDEnumerator Scenario To enable business data search, you need to define a SpecificFinder and a special type of MethodInstance called IDEnumerator in your metadata. Since you have already defined a SpecificFinder for the Reseller entity in Exercise 2, you will define an IDEnumerator method now. An IDEnumerator method is a simple method that returns the list of IDs (unique keys) for an entity that should be searchable. This enables indexing of the entities for the IDs the IDEnumerator method returns. Entities have zero or one IDEnumerator. The definition for an IDEnumerator is exactly like a Finder method, except that it has zero filters and returns only the ID field or the ID and LastModifiedDate fields. Tasks Detailed Steps Complete the following Note: If you require incremental crawl, then you must also make sure the task on: LastModifiedDate property is one of the return fields in the SpecificFinder for the entity from the LOB application. Note: This example uses a Microsoft SQL Server 2005 database which supports LITWAREINC streaming of data. For Web services and other non-streaming backends, you should 1. Define an use the LastIdSeen filter in your IDEnumerator as shown below to improve IDEnumerator to performance. For example: index and search for SELECT TOP 100 Id FROM Customers WHERE Id>=@LastIdSeen ORDER BY Id resellers in the AdventureWorksDW a. Scroll to the bottom of the BDCAWDW.xml file database. b. Highlight the line <!--BDC ResellerIDEnumerator Here --> c. Right-click and choose Insert Snippet… d. Choose BDC > ResellerIDEnumerator e. Select File | Save BDCAWDW.xml Page 6 of 20
  • 9. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Exercise 4 Define Actions Scenario Entities can have actions in the Business Data Catalog. Actions bridge the gap between SharePoint Server 2007 and a native application user interface by providing a link back to the backend data source. You can use Business Data Actions to build applications with write-back scenarios, such as a Customer Profile view that allows a user to update profile information directly in SAP. Actions are implemented as links, so you can also use actions to perform simple actions such as send e-mail or open a customer’s home page. Actions travel everywhere with an entity. That is, once you define an action for an entity, the action will show up everywhere you display that entity - be it in a Business Data Web Part or in a Business Data column. Tasks Detailed Steps Complete the following Note: You now add an action to the Reseller entity called 'Search product on Portal'. task on: As the name implies, this action will open up a browser and search for the product name using Search Center in our SharePoint Server 2007 portal. LITWAREINC a. Highlight the line <!--BDC Reseller Actions Here --> 1. Add an action to the b. Right-click and choose Insert Snippet… Reseller entity c. Choose BDC > Reseller Actions d. Select File | Save BDCAWDW.xml. Page 7 of 20
  • 10. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Exercise 5 Define Associations Scenario Entities can have associations in the Business Data Catalog. Associations allow Business Data Catalog entities to have a hierarchical relationship, by defining the parent-child relationship and the method used to query for this relationship. Tasks Detailed Steps Complete the following a. Highlight the line <!--BDC Associations Here --> task on: b. Right-click and choose Insert Snippet… c. Choose BDC > Associations LITWAREINC 1. Add a pair of associations which refine the relationship between the Product, ProductCategory, and ProductSubCategory entities d. Select File | Save BDCAWDW.xml e. Close Visual Studio 2005. Page 8 of 20
  • 11. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Exercise 6 Register AdventureWorksDW in the Business Data Catalog Scenario In this exercise, you will register the AdventureWorksDW database in SharePoint Server 2007’s Business Data Catalog using the metadata file created in the previous exercises. Once you register AdventureWorksDW, you can use its data throughout the portal – in lists, web parts, search, and user profiles. You’ll explore some of these features in later exercises. In addition, each entity defined in a Business Data Catalog Application can be permissioned separately. Tasks Detailed Steps Complete the following 2 a. Open SharePoint 3.0 Central Administration from the Start Menu -> tasks on: Administrative Tools. b. Navigate to the Application Management page. LITWAREINC 1. Create a Business Data Catalog Application c. In the Office SharePoint Server Shared Services section of the Application Management page, click Create or configure this farm’s shared services. d. Select SharedServices1 (Default) to access the Shared Service Provider (SSP). e. In the Business Data Catalog section, click Add Application to open the Add Application page. Page 9 of 20
  • 12. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Tasks Detailed Steps f. In the Add Application page, browse to “C:HOLBDCBDCAWDW.xml”, and click Import. g. Wait for the import to complete – this may take several minutes. You will see progress screens which load every few seconds. h. Once the import is complete, you will receive a status page. Ignore any warnings that may appear and click OK i. The details page for the new Application will be displayed. Page 10 of 20
  • 13. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Tasks Detailed Steps 2. Set permissions on a. Scroll down the page and you will see a list of the defined entities for this the created entities. application b. For each entity, we’ll need to add user access, as the default is no access for anyone other than the administrator. Hover over Contact and choose Manage Permissions from the dropdown menu c. On the Manage Permissions page, choose Add Users/Groups Page 11 of 20
  • 14. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Tasks Detailed Steps d. On the Add Users/Groups page, use the following values: • Users/Groups: NT AUTHORITYauthenticated users • Choose Permissions: View Items, Selectable in Clients e. Click Save f. Use the site breadcrumb to return to the Application page g. Repeat the permission setting steps for the rest of the defined entities h. Congratulations, you’ve registered AdventureWorksDW, exposed its data to SharePoint Server 2007, and allowed user access. Page 12 of 20
  • 15. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Exercise 7 Create a Reseller Explorer application (with no code) Scenario In this exercise, you’ll use the Business Data Web Parts to create an AdventureWorksDW Reseller Explorer application with no code. The application will allow you to search all resellers. By clicking on a reseller name, you’ll be able to view more details on the reseller profile page. Tasks Detailed Steps Complete the following 2 a. Click on the home menu button in Internet Explorer to return to the portal tasks on: homepage b. Click Create Site in the Site Actions menu at the top right LITWAREINC 1. Create the SharePoint site where you’ll build Reseller Explorer c. Use the following values • Title: Reseller Explorer • URL name: resellerexplorer • Template Selection: Blank Site d. Click Create 2. Add a Business Data Note: The Business Data List Web Part displays a list of entity instances from a List Web Part business application registered in the Business Data Catalog. For example, you can use a Business Data List Web Part to display the resellers from the AdventureWorksDW database. This shows how you can add a Business Data List Web Part to display a list of resellers from the AdventureWorksDW database with no code. a. Click Edit Page in the Site Actions menu. This puts the page in edit mode and shows controls for adding, removing, and repositioning page elements. Page 13 of 20
  • 16. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Tasks Detailed Steps b. Click Add a Web Part in the Left zone. c. The “Add Web Parts - Web Page” dialog is displayed. Check Business Data List and click Add. d. A Business Data List Web Part has been added. Click Open the tool pane inside the Business Data List Web part. e. Click the Browse icon which looks like an open book f. Double-click on Reseller from the popup window g. Expand the Appearance section. h. Replace Business Data List in the Title field with Resellers from AdventureWorksDW Page 14 of 20
  • 17. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Tasks Detailed Steps i. Click OK at the bottom of the tool pane. j. You have now created a Business Data List Web Part that displays resellers from the AdventureWorksDW database. k. Click on Retrieve Data l. Click on the Name of the first item in the list m. You are taken to the Reseller Details page. This page is created automatically for each Business Data Catalog entity Page 15 of 20
  • 18. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Tasks Detailed Steps n. Click the browser back button to return to the Reseller Explorer page o. Hover over the first name entry and examine the items in the drop down list p. Notice there are two items, corresponding to the available Actions for the entity. The default View Profile which takes you to the details page, and the custom Search product on Portal which we included in our metadata definition. Business Data Catalog search is covered in more depth as part of the Search Center lab. Page 16 of 20
  • 19. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Exercise 8 Create a SharePoint list to track reseller feedback Scenario Microsoft Windows SharePoint Services V3 allows you to create custom field types. Microsoft Office SharePoint Server 2007 uses this feature to provide a new field type called Business Data that is available to all lists in SharePoint Server 2007. The Business Data field type enables users to add data from business applications registered in the Business Data Catalog to lists. This topic shows how you can add a Reseller column to a SharePoint list. Tasks Detailed Steps Complete the following a. Click Create in the Site Actions menu at the top right. The Create Page page task on: appears. LITWAREINC 1. Create the Reseller Feedback list b. Click Custom List in the Custom Lists section. The New page appears. c. Type Reseller Feedback in the Name field and click Create. The Reseller Feedback list appears. d. Click Settings on the list toolbar and select Create Column. The New Column page appears. Page 17 of 20
  • 20. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Tasks Detailed Steps e. Use the following values: • Column name: Reseller • The type of information in this column is: Business data • Type: Reseller (BDCAWDW) • Add a column to show each of these additional fields: Number f. Click OK. You return to the list, which now contains the Reseller and the related Reseller: Number columns g. Click New on the list toolbar and select New Item. The New Item page appears. h. Use the following values: • Title: Can’t withstand rainy Seattle winter • Reseller: Volume Bike Sellers chosen in one of these ways: • Type Bike in the Reseller field and click the Check Names icon. bike is underlined in red and a message is displayed: No exact match was found. Click bike and choose the reseller. • Click the Browse icon, choose Name in the search dropdown, type bike in the search box, and click the magnifying glass button. Select the reseller from the search results box. Page 18 of 20
  • 21. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Tasks Detailed Steps i. Click OK. The new list item appears with the reseller name and number. The reseller name item also includes the drop down menu of all the available Business Data Catalog actions for the reseller entity. Page 19 of 20
  • 22. Getting Started with the Business Data Catalog in Microsoft Office SharePoint Server 2007 Conclusion In this lab you learned about some of the available options in the new Business Data Catalog in Microsoft Office SharePoint Server 2007. You walked through the process of creating a new metadata definition, deploying the application, using the provided Business Data Catalog Web Parts, and including Business Data in SharePoint lists. Page 20 of 20