SlideShare ist ein Scribd-Unternehmen logo
1 von 22
Downloaden Sie, um offline zu lesen
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
                             Note: Login using the following credentials:
Complete the following
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
                               Note: Here you define seven entities – Product, SupportCase, Contact,
Complete the following
                               SupportPerson, ProductSubCategory, ProductCategory, and Reseller. These entities
task on:
                               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
                             Note: If you require incremental crawl, then you must also make sure the
Complete the following
                             LastModifiedDate property is one of the return fields in the SpecificFinder for the
task on:
                             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
                             a. Scroll to the bottom of the BDCAWDW.xml file
   AdventureWorksDW
                             b. Highlight the line <!--BDC ResellerIDEnumerator Here -->
   database.
                             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
                              Note: You now add an action to the Reseller entity called 'Search product on Portal'.
Complete the following
                              As the name implies, this action will open up a browser and search for the product
task on:
                              name using Search Center in our SharePoint Server 2007 portal.
                              a. Highlight the line <!--BDC Reseller Actions Here -->
   LITWAREINC
                              b. Right-click and choose Insert Snippet

1. Add an action to the
                              c. Choose BDC > Reseller Actions
   Reseller entity




                              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
                             a. Highlight the line <!--BDC Associations Here -->
Complete the following
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
                             a. Open SharePoint 3.0 Central Administration from the Start Menu ->
Complete the following 2
                                Administrative Tools.
tasks on:
                             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




                             a. Scroll down the page and you will see a list of the defined entities for this
2. Set permissions on
   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
                              a. Click on the home menu button in Internet Explorer to return to the portal
Complete the following 2
                                 homepage
tasks on:
                              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
                             a. Click Create in the Site Actions menu at the top right. The Create Page page
Complete the following
                                appears.
task on:


   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

Weitere Àhnliche Inhalte

Was ist angesagt?

project_real_wp
project_real_wpproject_real_wp
project_real_wpDaren Bieniek
 
( 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
 
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
 
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
 
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
 
Developer's guide to customization
Developer's guide to customizationDeveloper's guide to customization
Developer's guide to customizationAhmed Farag
 
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
 
Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Eduardo Castro
 
Sas visual analytics Training
Sas visual analytics Training Sas visual analytics Training
Sas visual analytics Training bidwhm
 
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
 
oracle-database-editions-wp-12c-1896124
oracle-database-editions-wp-12c-1896124oracle-database-editions-wp-12c-1896124
oracle-database-editions-wp-12c-1896124Arjun Sathe
 
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
 
Data upload from flat file to business intelligence 7.0 system
Data upload from flat file to business intelligence 7.0 systemData upload from flat file to business intelligence 7.0 system
Data upload from flat file to business intelligence 7.0 systemBhaskar Reddy
 

Was ist angesagt? (18)

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
 
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
 
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
 
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
 
Developer's guide to customization
Developer's guide to customizationDeveloper's guide to customization
Developer's guide to customization
 
Sap business objects bobi training
Sap business objects bobi trainingSap business objects bobi training
Sap business objects bobi training
 
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
 
Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2
 
Sas visual analytics Training
Sas visual analytics Training Sas visual analytics Training
Sas visual analytics Training
 
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
 
oracle-database-editions-wp-12c-1896124
oracle-database-editions-wp-12c-1896124oracle-database-editions-wp-12c-1896124
oracle-database-editions-wp-12c-1896124
 
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...
 
Data upload from flat file to business intelligence 7.0 system
Data upload from flat file to business intelligence 7.0 systemData upload from flat file to business intelligence 7.0 system
Data upload from flat file to business intelligence 7.0 system
 

Andere mochten auch

Windows azure pack overview
Windows azure pack overviewWindows azure pack overview
Windows azure pack overviewAbhishek Sur
 
Azure catalog
Azure catalogAzure catalog
Azure catalogHARIHARAN R
 
Understanding Office 365 Service Offerings - O365 Saturday Sydney 2015
Understanding Office 365 Service Offerings - O365 Saturday Sydney 2015Understanding Office 365 Service Offerings - O365 Saturday Sydney 2015
Understanding Office 365 Service Offerings - O365 Saturday Sydney 2015Michael Noel
 
Product Catalog and IT Service Management
Product Catalog and IT Service ManagementProduct Catalog and IT Service Management
Product Catalog and IT Service ManagementDrew Madelung
 
How to build an integrated and actionable IT Service Catalog
How to build an integrated and actionable IT Service CatalogHow to build an integrated and actionable IT Service Catalog
How to build an integrated and actionable IT Service Catalogmboyle
 
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service Catalogs
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service CatalogsService Catalog Essentials: 5 Keys to Good Service Design in IT Service Catalogs
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service CatalogsEvergreen Systems
 
Best Practices for Implementing a Service Catalog and Enhanced ITSM
Best Practices for Implementing a Service Catalog and Enhanced ITSMBest Practices for Implementing a Service Catalog and Enhanced ITSM
Best Practices for Implementing a Service Catalog and Enhanced ITSMhdicapitalarea
 
Office 365 Migration Planning
Office 365 Migration PlanningOffice 365 Migration Planning
Office 365 Migration PlanningCredera
 
Defining Services for a Service Catalog
Defining Services for a Service CatalogDefining Services for a Service Catalog
Defining Services for a Service CatalogAxios Systems
 
IT Service Catalog Examples
IT Service Catalog ExamplesIT Service Catalog Examples
IT Service Catalog ExamplesCherwell Software
 
How to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheHow to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheLeslie Samuel
 

Andere mochten auch (12)

Windows azure pack overview
Windows azure pack overviewWindows azure pack overview
Windows azure pack overview
 
Azure catalog
Azure catalogAzure catalog
Azure catalog
 
Understanding Office 365 Service Offerings - O365 Saturday Sydney 2015
Understanding Office 365 Service Offerings - O365 Saturday Sydney 2015Understanding Office 365 Service Offerings - O365 Saturday Sydney 2015
Understanding Office 365 Service Offerings - O365 Saturday Sydney 2015
 
Product Catalog and IT Service Management
Product Catalog and IT Service ManagementProduct Catalog and IT Service Management
Product Catalog and IT Service Management
 
How to build an integrated and actionable IT Service Catalog
How to build an integrated and actionable IT Service CatalogHow to build an integrated and actionable IT Service Catalog
How to build an integrated and actionable IT Service Catalog
 
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service Catalogs
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service CatalogsService Catalog Essentials: 5 Keys to Good Service Design in IT Service Catalogs
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service Catalogs
 
Best Practices for Implementing a Service Catalog and Enhanced ITSM
Best Practices for Implementing a Service Catalog and Enhanced ITSMBest Practices for Implementing a Service Catalog and Enhanced ITSM
Best Practices for Implementing a Service Catalog and Enhanced ITSM
 
AWS Service Catalog
AWS Service CatalogAWS Service Catalog
AWS Service Catalog
 
Office 365 Migration Planning
Office 365 Migration PlanningOffice 365 Migration Planning
Office 365 Migration Planning
 
Defining Services for a Service Catalog
Defining Services for a Service CatalogDefining Services for a Service Catalog
Defining Services for a Service Catalog
 
IT Service Catalog Examples
IT Service Catalog ExamplesIT Service Catalog Examples
IT Service Catalog Examples
 
How to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheHow to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your Niche
 

Ähnlich wie 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
 
Information Design Tool -Tutorial1
Information Design Tool -Tutorial1Information Design Tool -Tutorial1
Information Design Tool -Tutorial1Obily W
 
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
 
Guidelines data cite_denmark_ver2
Guidelines data cite_denmark_ver2Guidelines data cite_denmark_ver2
Guidelines data cite_denmark_ver2DTU Library
 
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
 
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
 
WebSphere Commerce v7 Data Load
WebSphere Commerce v7 Data LoadWebSphere Commerce v7 Data Load
WebSphere Commerce v7 Data LoadFrancesco Schettini
 
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
 
Summary Project Server Psi
Summary Project Server PsiSummary Project Server Psi
Summary Project Server PsiPhuong Nguyen
 
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
 
Sap BusinessObjects 4
Sap BusinessObjects 4Sap BusinessObjects 4
Sap BusinessObjects 4Dmitry Anoshin
 
Ob loading data_oracle
Ob loading data_oracleOb loading data_oracle
Ob loading data_oracleSteve Xu
 
Sharepoint designer workflow by quontra us
Sharepoint designer workflow by quontra usSharepoint designer workflow by quontra us
Sharepoint designer workflow by quontra usQUONTRASOLUTIONS
 
Sameer Bhandari Resume
Sameer Bhandari ResumeSameer Bhandari Resume
Sameer Bhandari Resumesameerbhandari
 

Ähnlich wie 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
 
Information Design Tool -Tutorial1
Information Design Tool -Tutorial1Information Design Tool -Tutorial1
Information Design Tool -Tutorial1
 
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
 
Guidelines data cite_denmark_ver2
Guidelines data cite_denmark_ver2Guidelines data cite_denmark_ver2
Guidelines data cite_denmark_ver2
 
Portal Integration with SAP BusinessObjects (SDK)
Portal Integration with SAP BusinessObjects (SDK)Portal Integration with SAP BusinessObjects (SDK)
Portal Integration with SAP BusinessObjects (SDK)
 
It ready dw_day3_rev00
It ready dw_day3_rev00It ready dw_day3_rev00
It ready dw_day3_rev00
 
Share point 2010 overview
Share point 2010 overviewShare point 2010 overview
Share point 2010 overview
 
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
 
SAP BI/BW
SAP BI/BWSAP BI/BW
SAP BI/BW
 
WebSphere Commerce v7 Data Load
WebSphere Commerce v7 Data LoadWebSphere Commerce v7 Data Load
WebSphere Commerce v7 Data Load
 
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
 
Summary Project Server Psi
Summary Project Server PsiSummary Project Server Psi
Summary Project Server Psi
 
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
 
Sap BusinessObjects 4
Sap BusinessObjects 4Sap BusinessObjects 4
Sap BusinessObjects 4
 
Ob loading data_oracle
Ob loading data_oracleOb loading data_oracle
Ob loading data_oracle
 
Sharepoint designer workflow by quontra us
Sharepoint designer workflow by quontra usSharepoint designer workflow by quontra us
Sharepoint designer workflow by quontra us
 
Sameer Bhandari Resume
Sameer Bhandari ResumeSameer Bhandari Resume
Sameer Bhandari Resume
 

Mehr von 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
 
Bdc Screens
Bdc ScreensBdc Screens
Bdc ScreensLiquidHub
 
Bdc Screens
Bdc ScreensBdc Screens
Bdc ScreensLiquidHub
 
5060 A 01 Demonstration Steps
5060 A 01 Demonstration Steps5060 A 01 Demonstration Steps
5060 A 01 Demonstration StepsLiquidHub
 
5060 A 01
5060 A 015060 A 01
5060 A 01LiquidHub
 
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
 

Mehr von 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
 

KĂŒrzlich hochgeladen

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdfChristopherTHyatt
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 

KĂŒrzlich hochgeladen (20)

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 

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 Note: Login using the following credentials: Complete the following 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 Note: Here you define seven entities – Product, SupportCase, Contact, Complete the following SupportPerson, ProductSubCategory, ProductCategory, and Reseller. These entities task on: 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 Note: If you require incremental crawl, then you must also make sure the Complete the following LastModifiedDate property is one of the return fields in the SpecificFinder for the task on: 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 a. Scroll to the bottom of the BDCAWDW.xml file AdventureWorksDW b. Highlight the line <!--BDC ResellerIDEnumerator Here --> database. 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 Note: You now add an action to the Reseller entity called 'Search product on Portal'. Complete the following As the name implies, this action will open up a browser and search for the product task on: name using Search Center in our SharePoint Server 2007 portal. a. Highlight the line <!--BDC Reseller Actions Here --> LITWAREINC b. Right-click and choose Insert Snippet
 1. Add an action to the c. Choose BDC > Reseller Actions Reseller entity 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 a. Highlight the line <!--BDC Associations Here --> Complete the following 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 a. Open SharePoint 3.0 Central Administration from the Start Menu -> Complete the following 2 Administrative Tools. tasks on: 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 a. Scroll down the page and you will see a list of the defined entities for this 2. Set permissions on 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 a. Click on the home menu button in Internet Explorer to return to the portal Complete the following 2 homepage tasks on: 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 a. Click Create in the Site Actions menu at the top right. The Create Page page Complete the following appears. task on: 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