CHAPTER 6: TECHNOLOGY

Size: px
Start display at page:

Download "CHAPTER 6: TECHNOLOGY"

Transcription

1 Chapter 6: Technology CHAPTER 6: TECHNOLOGY Objectives Introduction The objectives are: Review the system architecture of Microsoft Dynamics AX Describe the options for making development changes in Microsoft Dynamics AX Describe the theory of Model Driven Architecture in Microsoft Dynamics AX Microsoft Dynamics AX provides a flexible solution architecture. This enables companies to remain agile by enabling incremental change in the technical environment. The system architecture takes advantage of the Microsoft stack of technologies. This helps reduce the cost of maintaining the software because the architecture is scalable to grow as your business grows. Model driven layered architecture eases the management of customizations. This enables companies to configure the system to the way that they do business instead of forcing them to change their business to fit the software. The object-oriented development environment provides powerful tools that enable developers to customize the business logic. 6-1

2 Introduction to Microsoft Dynamics AX 2012 Scenario System Architecture Roles: Tim, IT Manager; Chris, IT Engineer; Nandita, In-house developer. Scenario: Tim has to understand the architecture and development environment of Microsoft Dynamics AX. Chris and Nandita will continue to specialize in these areas. Three-Tier Architecture Microsoft Dynamics AX has a three-tier architecture. Three-tier architecture is defined as having a separate database, server and client where: The database stores the data. The server runs the application business logic. The client application lets users connect to the server to access business logic and use the data in the database. In Microsoft Dynamics AX the three tiers include the following: A SQL Server Database that houses the data that is entered into, and used by, the Microsoft Dynamics AX application. It also houses the model store that contains the application elements. Application elements are explained in the following lesson. An Application Object Server is a service that runs most of the business logic. This runs continuously on a central server. 6-2

3 Chapter 6: Technology The Client application is the user interface through which an enduser accesses Microsoft Dynamics AX. There are various clients available including the Microsoft Dynamics AX rich client and Enterprise Portal. FIGURE 6.1 THREE TIER ARCHITECTURE Extended Architecture Several other components of the Microsoft technology stack are used in a typical deployment. Reports are delivered by SQL Server Reporting Services (SSRS). SSRS is a component that is included in SQL Server. Business Intelligence (BI) components such as Key Performance Indicators use Online Analytical Processing (OLAP) cubes which are delivered by SQL Server Analysis Services (SSAS). SSAS is a component that is included in SQL Server. The Enterprise Portal and Role Pages are hosted in SharePoint. There are two versions of SharePoint that can be used. Windows SharePoint Foundation 2010 is a free download. Microsoft SharePoint Server 2010 is a product that can be purchased to provide extended collaboration and content management tools. Integration to other applications or to third-party organizations might require integration solutions such as web services. 6-3

4 Introduction to Microsoft Dynamics AX 2012 The following image describes a typical system architecture that includes other components of the Microsoft technology stack. FIGURE 6.2 EXTENDED SYSTEM ARCHITECTURE SQL Server Databases Microsoft Dynamics AX Database The Microsoft Dynamics AX database is an Online Transactional Processing (OLTP) database that stores all the transactional data in SQL tables. This database also stores all the metadata and application code in the Model Store. Business Intelligence (BI) Databases Some BI components of Microsoft Dynamics AX also require you to use SSRS and SSAS. The SSAS database is replicated from the OLTP database in a database format that is optimized for fast reporting and analysis. 6-4

5 Chapter 6: Technology Application Object Server The Application Object Server (AOS) is the Microsoft Dynamics AX application server. The AOS is where most of the business logic is executed. The AOS performs many tasks. Some of the most important tasks include: X++ runtime - It runs the X++ code, which provides most of the business logic in Microsoft Dynamics AX. Security - It enforces security to manage access to data and functionality. Session management - It manages client sessions. Web services - It is a web service endpoint. Multiple AOS's can be installed to spread the processing load over multiple servers. This improves performance in larger implementations. Client Applications Microsoft Dynamics AX Rich Client is the primary client to access Microsoft Dynamics AX functionality. Most forms displayed in the rich client are designed by using the MorphX development environment. Role center pages are SharePoint pages that are displayed within a rich client form. SQL Server Reports are called from the rich client by using the report viewer control. Enterprise Portal pages are displayed through a web browser. A subset of functionality and reports are available on the portal. Microsoft Office can be used as a client to access the Microsoft Dynamics AX application and data. Office add-ins are available out-of-the-box for Microsoft Excel and Microsoft Word. Other Applications can be used as a client to the Microsoft Dynamics AX application. Examples include mobile applications, specialized applications written in.net and legacy applications. Applications can be integrated by using methods such as web services or the.net Business Connector. The.NET Business Connector is a client that has no user interface. It is designed for other applications to access the Microsoft Dynamics AX business logic. End-users can use another application as the user interface that interacts with the AOS through the.net Business Connector. Developers can access the developer tools through the MorphX IDE in the Microsoft Dynamics AX client or through Visual Studio Tools in Visual Studio. 6-5

6 Introduction to Microsoft Dynamics AX 2012 Other Components Internet Information Server (IIS) is a web server that delivers content such as web pages. Enterprise Portal and SharePoint IIS is required to host the Enterprise Portal framework within SharePoint. Role Centers require the Enterprise Portal regardless of whether they are viewed through the web browser or the Microsoft Dynamics AX Windows Client. Help Server Microsoft Dynamics AX Help files are hosted through IIS. When a user accesses Help from within the rich client, the AOS generates a call to the Help server to display the Help pages. Web Services Development Environments Web services are hosted within IIS. The AOS is the web service endpoint that provides the data that is served to other applications by IIS in a standardized format. The Microsoft Dynamics AX application is built of elements that are stored in the model store in the SQL Server database. For example, the following element types make up part of the application: Fields and Tables define data structure. Forms and Menus define how a user interacts with the application. Classes and Methods are code objects that define business logic. The Application Object Tree (AOT) provides a visual representation of the elements that comprise the application. Object-oriented design and Inheritance are key concepts that form the basis of the application. Model elements can be modified or added using a development environment. The development environments that can be used with Microsoft Dynamics AX 2012 include the following: Microsoft Visual Studio. Microsoft Dynamics AX Integrated Development Environment (IDE). This is also known as the MorphX IDE and is accessed through the developer workspace in the Microsoft Dynamics AX client. 6-6

7 Chapter 6: Technology A white paper titled "Selecting the Best Development Technology for your Application Development Scenario AX2012" is available for download on MSDN. Application Object Tree (AOT) A full definition of all the element types in AOT can be found in the development training material and developer Help files. Some root element types are described here: Data Dictionary contains elements which define basic data structure. o Tables contain a group of associated fields. For example the CustTable contains fields relevant to customers. Fields on a table contain individual pieces of data. For example, AccountNum contains the customer account number. Fields on a table inherit properties from extended data types. o Extended data types define a data type and extended properties. There are various data basic types such as a string, integer, date, time and enum. For example, AccountNum is a string extended with properties including a length of 20 characters, left justified and is mandatory. o Base Enums are enumerated text data types. These are predefined text values that are referenced by an integer value in the database. These are presented to the user as a fixed list of options. For example, Blocked is an enum that gives the user only two options (yes or no) as to whether a customer account is on hold. Classes contain code which is used in the application. Forms define the layout of all the forms which you use to view data in the Microsoft Dynamics AX client. 6-7

8 Introduction to Microsoft Dynamics AX 2012 Visual Studio Projects display any development projects created in Visual Studio. Menus define which forms and reports appear in the menu in the Microsoft Dynamics AX rich client. FIGURE 6.3 AOT DISPLAYED IN THE DEVELOPER WORKSPACE Labels Labels are used to provide the language text which end-users see when using the application. All text presented in the client displays the translation of a label code. The label codes are usually reused wherever the exact same text is used with the same meaning. This provides the ability to easily manage multiple languages and to adapt to company specific language. As an example: The label is translated as "Direct delivery" in the English-US label file. This label code is used in various places throughout the application. It is used on field names and menu items displayed on forms such as the sales order header form. All label codes have already been translated into all other languages in which Microsoft Dynamics AX is available. This label code is translated as "Entrega directa" in the Spanish label file. If an enduser opens the application in Spanish, he or she will see the Spanish translation wherever this label code has been used. Developers can create new label files to translate label codes into other languages or customer specific terminology. Tools, including the label editor and label wizard, are available within the MorphX development environment to add or change label files. 6-8

9 Chapter 6: Technology Inheritance Object-oriented design is an approach to software design in which a system is modeled as a collection of co-operating elements. Inheritance is a core concept of object oriented design. Inheritance means that what you define at lower levels in the system is automatically inherited by higher level. For example, a class can inherit from another class and a table can inherit from another table. A simple example of inheritance using data types and fields is as follows: An extended data type (EDT) is defined for Item ID. o It is defined as a string which is 20 characters in length and has a label of "Item number". There is a field on the Product table called Item ID. o This Item ID field is based on the EDT. o It inherits the properties of a string of 20 characters with the label "item number". There is no need to specify these characteristics again. There is another field on the Item table called Alternative Item ID. It is used to specify a replacement item which can be sold when the current item is out of stock. o This Alternative Item ID field is also based on the EDT. o It also inherits the properties of a string of 20 characters. o A different label is needed for this field so that the label "Alternative item number" is specified. It then overrides the label specified at the EDT level. MorphX IDE The MorphX IDE is accessed through the Developer Workspace which provides access to the Application Object Tree (AOT) and other developer tools. It is used to make changes and add to the application. This is the most commonly used development environment. Common operations such as building or modifying tables, forms and menus can be performed by using drag-and-drop techniques with little or no coding. X++ is the programming language that is used in the MorphX IDE to write more advanced business logic. You can access the MorphX IDE from the Microsoft Dynamics AX client. Click the Windows menu in the command bar and select New Developer Workspace. Alternatively you can use the keyboard shortcuts Ctrl+Shift+W. 6-9

10 Introduction to Microsoft Dynamics AX 2012 X++ Tools X++ is the object-oriented programming language that is used in the MorphX development environment. X++ has C#-like syntax, and incorporates SQL data manipulation statements. A full list of developer tools in the MorphX development environment can be found in the developer Help documentation. Some tools available include the following: The X++ Code Editor is a text editor used to write X++ code. It supports colorcoding and provides the ability to look up and auto-complete various objects such as method names and enumeration values as you type. The Debugger is an application used by developers to step through X++ code to help resolve code errors. The Reverse Engineering tool enables you to visualize data and classes in Microsoft Dynamics AX by creating UML data models, UML object models, and ERX ER data models. The Table browser displays data from all fields in a selected table. The table browser can be used to run SQL statements. Note: Extreme care must be taken when updating records in the table browser. It should be regarded as a development and testing tool. It is always better practice to update data from the Microsoft Dynamics AX client. FIGURE 6.4 CODE EDITOR 6-10

11 Chapter 6: Technology Visual Studio The Visual Studio development environment is integrated through Visual Studio Tools for Microsoft Dynamics AX (Visual Studio Tools) and it supports managed code. Close integration between MorphX and Visual Studio means developers can take advantage of the benefits of each development tool and work in the environment that best suits their development scenario. Some development scenarios must take place in Visual Studio. This includes creating and customizing SSRS reports, most Enterprise Portal web development and any managed code development. The Application Explorer is available within Visual Studio. This gives developers the ability to browse AX metadata. The Application Explorer displays information that is similar to the AOT in the MorphX IDE. Visual Studio projects are displayed in the AOT and are stored in the Microsoft Dynamics AX model store in SQL server. Model Driven Architecture FIGURE 6.5 APPLICATION EXPLORER IN VISUAL STUDIO Microsoft Dynamics AX is designed with a unique layer and model structure that separates and controls the updates and modifications made in the application. This structure provides a powerful and flexible architecture for developing business logic. The key benefit of the layer and model structure is that it lets developers change and extend the functionality in Microsoft Dynamics AX while maintaining upgradability to new versions. 6-11

12 Introduction to Microsoft Dynamics AX 2012 Layers Application object layers hold all elements that are displayed in the AOT. There are eight application object layers available. Each of these layers also has a patch layer making a total of sixteen layers. Layers are a hierarchy of levels in the applications that you can use to make modifications and additions without interfering with the application elements in the next lower level. When you make an element modification on one level, the modification overshadows the element on a lower level. When the application is compiled, only the top-level version of an application element is used. There are three layers available only to Microsoft to deliver the base application. (The xxp layer indicates the patch layer for each application object layer). Layer SYS, SYP GLS, GLP FPK, FPP Description System layer: The standard application is developed in this lowest layer. This includes the core application and the localization for most countries. Globalization layer: Includes features developed for some countries that were not yet moved into the SYS layer. Feature Pack layer: Includes industry feature packs that are controlled by Microsoft. There are three layers available to partners and ISVs. Layer SLN, SLP ISV, ISP VAR, VAP Description Solution layer: Includes Microsoft endorsed industry solutions. Independent Software Vendor layer: Includes generic or vertical solutions developed by ISVs. Value Added Reseller layer: Includes multi-customer solutions developed by VARs. 6-12

13 Chapter 6: Technology There are two layers available to both partners and customers who have a license to access the AX source code. Layer CUS, CUP USR, USP Description Customer layer: Includes customer specific functionality. User layer: Includes installation specific functionality and customizations. FIGURE 6.6 APPLICATION LAYERS Benefits of Layers: Source Code Protection Source code protection The elements in the standard implementation (SYS, GLS, FPK layers) can only be changed or deleted by the Microsoft Dynamics AX development team. In this manner, the layers help protect the original source code and keep it separate from modifications. Similarly, ISV solution code is separated in a model within the ISV layer. Any customer specific changes to the ISV solution would be in a higher layer. 6-13

14 Introduction to Microsoft Dynamics AX 2012 Benefits of Layers: Faster and Easier Upgrades Faster and Easier upgrades Upgrades and service packs contain changes in the lower layers where the base code resides. This means that any changes by partners or customers are maintained throughout the upgrade. Powerful compare and merge tools are available to guide developers through the upgrade. These tools highlight elements which have been modified in higher layers and therefore may need some action to merge the changes. As an example: Models The item number is an extended data type which exists in the SYS layer. This field is a string which is 20 characters in length. If a company that uses Microsoft Dynamics AX requires 30 characters for their item numbers, the field length would be changed to 30 characters and the change saved in the CUS layer. The item number data type now exists in both the SYS layer and the CUS layer. The CUS layer is a higher layer so when the application is compiled, the 30 character length is used. If in a future version, Microsoft extends the length of the item field to 40 characters, the upgrade tool would highlight that there is a change in the SYS layer to 40 characters and there is an existing change in the CUS layer to 30 characters. The developer would then have the option to keep the CUS layer change or delete the CUS layer and revert to the new field length in the SYS layer of the new release. A model is a logical grouping of elements within a layer. Models help in situations where multiple ISV solutions or projects must operate together. This architecture allows many solutions to co-exist within each layer. An element can exist in exactly one model in a layer. The same element can exist in a customized version in a model in a higher layer. New models are easy to create in the MorphX IDE and are applied when modifying or adding objects in the AOT. Models can be exported, installed, or uninstalled from the model store. Models are identified by a name and a publisher, and have a set of properties that can be changed, including a version number. 6-14

15 Chapter 6: Technology The following is an example: A company has two lines of business. They manufacture and sell medical products. They also manufacture, sell and service specialized equipment to produce medical products. Solution A is an advanced vertical solution for the production of food and drug products. Among other things, this solution adds a new field to the item table to store the government approval number. This is stored in the ISV layer and in the model MEDICAL. Solution B is an advanced vertical solution for managing the ongoing service of equipment which is sold to customers. Among other things, this solution adds a new field to the item table for the default service period. This is stored in the ISV layer and in the model SERVICE. You can use models to view the modifications to the item table made by all ISV solutions and easily see where each change originated. Demonstration 6.1: Add a field to a list page Out-of-the-box, the Customer list page displays four fields in the grid. The fields displayed are Customer Name, Customer Account number, Phone number and Extension. FIGURE 6.7 CUSTOMER LIST PAGE 6-15

16 Introduction to Microsoft Dynamics AX 2012 Role: Tim, IT Manager Scenario: Contoso has many customers who operate in a foreign currency. Although it is possible for each end-user to add the currency field to the list page, the end-users at Contoso have decided that they would prefer to have the currency field displayed by default for all users. Sean, a power user, has asked Tim to add the currency field to the list page form design. 1. Open the development environment by pressing Ctrl+Shift+W. 2. Click the restore down button or navigate to Windows - Tile in the title bar to minimize the AOT window to allow for drag-and-drop. 3. Go to Forms > CustTableListPage. 4. Expand CustTableListPage > Designs > Design > Grid:ListPageGrid to view the four fields which are currently displayed on the grid. 5. Expand the Data Sources group. 6. Right-click CustTable and select Open New Window. Put the new window next to the existing window to enable you to drag-and-drop fields from the data source to the Grid:ListPageGrid. 7. Expand Fields on the CustTable data source in the second window. 8. Find the Currency field and drag-and-drop it onto the Grid:ListPageGrid node in the CustTableListPage displayed in the first window. 9. Highlight the currency field in the grid and press ALT+DOWN to move the position of the field within the grid. Move the Currency field to the end of the list of fields so that it will appear as the last column in the grid. 10. Changes periodically save. Changes have not yet been saved if a red bar is displayed next to the form name. If you see the red bar, press Ctrl+S to save changes. 11. Close the developer workspace. 12. Open Accounts receivable > Common > Customers > All customers to view the new Currency column in the grid. 6-16

17 Chapter 6: Technology Lab Add a Field to a List Page Scenario Role: Tim, IT Manager Challenge Yourself! Scenario: Phyllis, the Accounting Manager, manages a team who work with Accounts Payable. She would like to make a global change for end-users to see the segment and subsegment of all vendors displayed in the grid on the list page. She has asked Tim to modify the list page to display the segment and subsegment fields on the list page grid. Need a Little Help? The Vendor list page form is called VendTableListPage. Right-click the CustTable data source to open it in a new window. You can only select from fields which are on tables specified as a table source for the form. Drag the currency field from the fields on the data source and drag directly onto the Grid:ListPageGrid control. FIGURE 6.8 ADD CURRENCY FIELD TO THE CUSTOMER LIST PAGE 6-17

18 Introduction to Microsoft Dynamics AX 2012 Step by Step 1. Open the development environment by pressing Ctrl+Shift+W. 2. Click the restore down button or go to Windows - Tile in the title bar to minimize the AOT window to allow for drag-and-drop. 3. Go to Forms > VendTableListPage. 4. Expand VendTableListPage > Designs > Design > Grid:ListPageGrid to view the fields which are currently displayed on the grid. 5. Expand the Data Sources group. 6. Right-click on VendTable and select Open New Window. Put the new window next to the existing window to enable you to drag-anddrop fields from the data source to the Grid:ListPageGrid. 7. Expand Fields on the VendTable data source in the second window. 8. Find the SegmentID field and drag-and-drop it onto the Grid:ListPageGrid node in the VendTableListPage displayed in the first window. 9. Find the SubSegmentID field and drag-and-drop it onto the Grid:ListPageGrid node in the VendTableListPage displayed in the first window. 10. Highlight the new fields in the grid and press ALT+DOWN to move the position of the field within the grid. Move the new fields to the end of the list of fields so that they will appear as the last column in the grid. 11. Changes periodically save. Changes have not yet been saved if a red bar is displayed next to the form name. If you see the red bar, press Ctrl+S to save changes. 12. Close the developer workspace. 13. Open Accounts payable> Common > Vendors > All vendors to view the new Currency column in the grid. 6-18

19 Chapter 6: Technology Did You Notice? Did you notice that there were some fields on the list page design that do not appear in the grid? Some fields on the form design have the Visible property set to No. 1. Open the development environment by pressing Ctrl+Shift+W. 2. Click the restore down button or go to Windows - Tile in the title bar to minimize the AOT window to allow for drag-and-drop. 3. Go to Forms > VendTableListPage. 4. Expand VendTableListPage > Designs > Design > Grid:ListPageGrid to view the fields which are currently displayed on the grid. 5. Right-click on ComboBox:VendTable_MinorityOwned and select Properties. 6. This field is not displayed on the grid because the Visible property is set to No. There are many parameters available to adjust how fields are displayed on the form. 7. Close the developer workspace. FIGURE 6.9 DISPLAY PROPERTIES 6-19

20 Introduction to Microsoft Dynamics AX 2012 Summary This chapter introduces the technical environment of Microsoft Dynamics AX It discusses the following: The system architecture required to run the application provides a scalable system which can grow with your business and take advantage of investments in Microsoft technology. The model driven architecture provides an adaptable environment which can remain upgradable. Multiple development tools provide a powerful and adaptable environment to make changes to the business logic. 6-20

21 Chapter 6: Technology Test Your Knowledge Test your knowledge with the following questions. 1. Microsoft Dynamics AX 2012 has a 3 tier architecture. What are the 3 tiers and what is the purpose of each tier? 2. Microsoft Dynamics AX 2012 can be accessed through different clients including: (Select all that apply) ( ) Microsoft Dynamics AX Rich Client ( ) Internet Information Server ( ) Application Object Server ( ) Enterprise Portal 3. Match the following modifications to the layer which they are or should be developed in. 1. The core customer table 2. A bank file import format developed by a partner which can be used for several of their customers. 3. A new field on the item table required for a vertical solution developed by an ISV. 4. A new label code specified on a field to better reflect a particular customer's terminology. a. ISV b. SYS c. CUS d. VAR 6-21

22 Introduction to Microsoft Dynamics AX Which of these statements best describes models in Microsoft Dynamics AX? ( ) A view of the metadata within the MorphX IDE. ( ) A logical grouping of elements within a layer. ( ) A visual representation of elements. ( ) A piece of X++ code. 5. What is displayed in the Application Object Tree (Select all that apply) ( ) Tables ( ) Forms ( ) Menus ( ) Visual Studio Projects 6. Developers can write Microsoft Dynamics AX business logic by using which tools? (Select all that apply) ( ) Microsoft Office ( ) Visual Studio ( ) MorphX IDE ( ) SQL Server 6-22

23 Chapter 6: Technology Quick Interaction: Lessons Learned Take a moment and write down three key points you have learned from this chapter

24 Introduction to Microsoft Dynamics AX 2012 Solutions Test Your Knowledge 1. Microsoft Dynamics AX 2012 has a 3 tier architecture. What are the 3 tiers and what is the purpose of each tier? MODEL ANSWER: Three-tier architecture is defined as having a separate database, server and client where: The database stores the data. The server runs the application business logic. The client application lets users connect to the server to access business logic and use the data in the database. 2. Microsoft Dynamics AX 2012 can be accessed through different clients including: (Select all that apply) ( ) Microsoft Dynamics AX Rich Client ( ) Internet Information Server ( ) Application Object Server ( ) Enterprise Portal 3. Match the following modifications to the layer which they are or should be developed in. b 1. The core customer table d 2. A bank file import format developed by a partner which can be used for several of their customers. a 3. A new field on the item table required for a vertical solution developed by an ISV. c 4. A new label code specified on a field to better reflect a particular customer's terminology. a. ISV b. SYS c. CUS d. VAR 4. Which of these statements best describes models in Microsoft Dynamics AX? ( ) A view of the metadata within the MorphX IDE. ( ) A logical grouping of elements within a layer. ( ) A visual representation of elements. ( ) A piece of X++ code. 6-24

25 Chapter 6: Technology 5. What is displayed in the Application Object Tree (Select all that apply) ( ) Tables ( ) Forms ( ) Menus ( ) Visual Studio Projects 6. Developers can write Microsoft Dynamics AX business logic by using which tools? (Select all that apply) ( ) Microsoft Office ( ) Visual Studio ( ) MorphX IDE ( ) SQL Server 6-25

26 Introduction to Microsoft Dynamics AX

Microsoft Dynamics AX 2012 Installation Guide. Microsoft Corporation Published: April 2011 This content is preliminary and is subject to change.

Microsoft Dynamics AX 2012 Installation Guide. Microsoft Corporation Published: April 2011 This content is preliminary and is subject to change. 2012 Installation Guide Microsoft Corporation Published: April 2011 This content is preliminary and is subject to change. Microsoft Dynamics is a line of integrated, adaptable business management solutions

More information

Microsoft Dynamics AX. Reporting and Business Intelligence in Microsoft Dynamics AX

Microsoft Dynamics AX. Reporting and Business Intelligence in Microsoft Dynamics AX INSIGHT Microsoft Dynamics AX Reporting and Business Intelligence in Microsoft Dynamics AX White Paper A roadmap for managing business performance with Microsoft Dynamics AX Date: September 2006 http://www.microsoft.com/dynamics/ax/

More information

Microsoft Dynamics AX 2012 Implementation Planning Guide

Microsoft Dynamics AX 2012 Implementation Planning Guide 2012 Implementation Planning Guide Microsoft Corporation Published: April 2011 This content is preliminary and is subject to change. Table of Contents Copyright notice... 3 Prerequisite skills and knowledge...

More information

Programmabilty. Programmability in Microsoft Dynamics AX 2009. Microsoft Dynamics AX 2009. White Paper

Programmabilty. Programmability in Microsoft Dynamics AX 2009. Microsoft Dynamics AX 2009. White Paper Programmabilty Microsoft Dynamics AX 2009 Programmability in Microsoft Dynamics AX 2009 White Paper December 2008 Contents Introduction... 4 Scenarios... 4 The Presentation Layer... 4 Business Intelligence

More information

Creating Reports with Microsoft Dynamics AX SQL Reporting Services

Creating Reports with Microsoft Dynamics AX SQL Reporting Services Creating Reports with Microsoft Dynamics AX SQL Reporting Services. Table of Contents Lab 1: Building a Report... 1 Lab Objective... 1 Pre-Lab Setup... 1 Exercise 1: Familiarize Yourself with the Setup...

More information

Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER

Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER Junction Solutions documentation 2012 All material contained in this documentation is proprietary and confidential to Junction Solutions,

More information

Microsoft Dynamics AX 2012 Implementation Planning Guide. Microsoft Corporation Published: August 2011

Microsoft Dynamics AX 2012 Implementation Planning Guide. Microsoft Corporation Published: August 2011 2012 Implementation Planning Guide Microsoft Corporation Published: August 2011 Table of Contents Copyright notice... 3 Implementation planning guide... 6 Architecture and planning... 6 Microsoft Dynamics

More information

CHAPTER 5: BUSINESS ANALYTICS

CHAPTER 5: BUSINESS ANALYTICS Chapter 5: Business Analytics CHAPTER 5: BUSINESS ANALYTICS Objectives The objectives are: Describe Business Analytics. Explain the terminology associated with Business Analytics. Describe the data warehouse

More information

CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE)

CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Chapter 1: Client/Server Integrated Development Environment (C/SIDE) CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Objectives Introduction The objectives are: Discuss Basic Objects

More information

What s New in Microsoft Dynamics AX 2012 for Developers. Microsoft Corporation Published: August 2011

What s New in Microsoft Dynamics AX 2012 for Developers. Microsoft Corporation Published: August 2011 What s New in for Developers Corporation Published: August 2011 Dynamics is a line of integrated, adaptable business management solutions that enables you and your people to make business decisions with

More information

Dashboard Overview. Bernd Schneider. Technical Solution Professional BI Microsoft Switzerland bernd.schneider@microsoft.com

Dashboard Overview. Bernd Schneider. Technical Solution Professional BI Microsoft Switzerland bernd.schneider@microsoft.com Dashboard Overview Bernd Schneider Technical Solution Professional BI Microsoft Switzerland bernd.schneider@microsoft.com Techdays Bern (8./9. April) http://www.techdays.ch + * Including Microsoft Office

More information

14 Configuring and Setting Up Document Management

14 Configuring and Setting Up Document Management 14 Configuring and Setting Up Document Management In this chapter, we will cover the following topics: Creating a document type Allowing document types on locked records Creating a document data source

More information

CHAPTER 4: BUSINESS ANALYTICS

CHAPTER 4: BUSINESS ANALYTICS Chapter 4: Business Analytics CHAPTER 4: BUSINESS ANALYTICS Objectives Introduction The objectives are: Describe Business Analytics Explain the terminology associated with Business Analytics Describe the

More information

INSIDE MICROSOFT DYNAMICS AX. Built on Tyler s Unparalleled Public Sector Expertise

INSIDE MICROSOFT DYNAMICS AX. Built on Tyler s Unparalleled Public Sector Expertise INSIDE MICROSOFT DYNAMICS AX Built on Tyler s Unparalleled Public Sector Expertise Microsoft Dynamics AX Microsoft Dynamics AX is a fully-integrated, role-based Enterprise Resource Planning (ERP) software

More information

OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys

OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys Documented by - Sreenath Reddy G OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys Functionality in Microsoft Dynamics AX can be turned on or off depending on license

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

MODULE 7: TECHNOLOGY OVERVIEW. Module Overview. Objectives

MODULE 7: TECHNOLOGY OVERVIEW. Module Overview. Objectives MODULE 7: TECHNOLOGY OVERVIEW Module Overview The Microsoft Dynamics NAV 2013 architecture is made up of three core components also known as a three-tier architecture - and offers many programming features

More information

GP REPORTS VIEWER USER GUIDE

GP REPORTS VIEWER USER GUIDE GP Reports Viewer Dynamics GP Reporting Made Easy GP REPORTS VIEWER USER GUIDE For Dynamics GP Version 2015 (Build 5) Dynamics GP Version 2013 (Build 14) Dynamics GP Version 2010 (Build 65) Last updated

More information

How To Create A Report In Excel

How To Create A Report In Excel Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...

More information

Reporting. Microsoft Dynamics GP 2010. enterpri se. Dynamics GP. Christopher Liley. Create and manage business reports with.

Reporting. Microsoft Dynamics GP 2010. enterpri se. Dynamics GP. Christopher Liley. Create and manage business reports with. Microsoft Dynamics GP 2010 Reporting Create and manage business reports with Dynamics GP David Duncan Christopher Liley [ PUBLISHING J enterpri se - BIRMINGHAM MUMBAI Preface 1 Chapter 1: Meeting the Reporting

More information

Course Syllabus. Course 80011: Development I in Microsoft Dynamics AX 2009. Key Data. Introduction. Audience

Course Syllabus. Course 80011: Development I in Microsoft Dynamics AX 2009. Key Data. Introduction. Audience Key Data Course number: 80011 Number of Days: 2 Available: August 2008 Languages: U.S. English Format: Instructor-Led Training (lecture and labs) Student Materials: Student Courseware Certification Exam:

More information

User's Guide. ControlPoint. Change Manager (Advanced Copy) SharePoint Migration. v. 4.0

User's Guide. ControlPoint. Change Manager (Advanced Copy) SharePoint Migration. v. 4.0 User's Guide ControlPoint Change Manager (Advanced Copy) SharePoint Migration v. 4.0 Last Updated 7 August 2013 i Contents Preface 3 What's New in Version 4.0... 3 Components... 3 The ControlPoint Central

More information

Creating Dashboards for Microsoft Project Server 2010

Creating Dashboards for Microsoft Project Server 2010 Creating Dashboards for Microsoft Project Server 2010 Authors: Blaise Novakovic, Jean-Francois LeSaux, Steven Haden, Microsoft Consulting Services Information in the document, including URL and other Internet

More information

Microsoft MB6-872 Exam Questions & Answers

Microsoft MB6-872 Exam Questions & Answers Microsoft MB6-872 Exam Questions & Answers Number: MB6-872 Passing Score: 800 Time Limit: 120 min File Version: 40.4 http://www.gratisexam.com/ Microsoft MB6-872 Exam Questions & Answers Exam Name: Microsoft

More information

Microsoft Dynamics AX 2009 Installation Guide. Microsoft Corporation Published: November 2009

Microsoft Dynamics AX 2009 Installation Guide. Microsoft Corporation Published: November 2009 Microsoft Dynamics AX 2009 Installation Guide Microsoft Corporation Published: November 2009 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your

More information

Colligo Email Manager 6.0. Offline Mode - User Guide

Colligo Email Manager 6.0. Offline Mode - User Guide 6.0 Offline Mode - User Guide Contents Colligo Email Manager 1 Key Features 1 Benefits 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License Key 3 Managing SharePoint

More information

LLP & Microsoft Dynamics AX

LLP & Microsoft Dynamics AX LLP & Microsoft Dynamics AX Agenda Overall View The Philosophy Product Roadmap Past and Future Technology Overview Functional Overview LLP Expertise and References Questions & Answers Overall View The

More information

SSRS Reporting Using Report Builder 3.0. By Laura Rogers Senior SharePoint Consultant Rackspace Hosting

SSRS Reporting Using Report Builder 3.0. By Laura Rogers Senior SharePoint Consultant Rackspace Hosting SSRS Reporting Using Report Builder 3.0 By Laura Rogers Senior SharePoint Consultant Rackspace Hosting About Me Laura Rogers, Microsoft MVP I live in Birmingham, Alabama Company: Rackspace Hosting Author

More information

SMB Intelligence. Reporting

SMB Intelligence. Reporting SMB Intelligence Reporting Introduction Microsoft Excel is one of the most popular business tools for data analysis and light accounting functions. The SMB Intelligence Reporting powered by Solver is designed

More information

Infor ERP BaanIV / Baan 5.0 / LN 6.1. User's Guide for Worktop 2.4

Infor ERP BaanIV / Baan 5.0 / LN 6.1. User's Guide for Worktop 2.4 Infor ERP BaanIV / Baan 5.0 / LN 6.1 User's Guide for Worktop 2.4 Copyright 2008 Infor All rights reserved. The word and design marks set forth herein are trademarks and/or registered trademarks of Infor

More information

Creating a Patch Management Dashboard with IT Analytics Hands-On Lab

Creating a Patch Management Dashboard with IT Analytics Hands-On Lab Creating a Patch Management Dashboard with IT Analytics Hands-On Lab Description This lab provides a hands-on overview of the IT Analytics Solution. Students will learn how to browse cubes and configure

More information

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Table of Contents TABLE OF CONTENTS... 3 1.0 INTRODUCTION... 1 1.1 HOW TO USE THIS GUIDE... 1 1.2 TOPIC SUMMARY...

More information

Perceptive Connector for Microsoft Dynamics AX

Perceptive Connector for Microsoft Dynamics AX Perceptive Connector for Microsoft Dynamics AX Installation and Setup Guide Version: 2.3.x Written by: Product Knowledge, R&D Date: October 2015 2015 Lexmark International Technology, S.A. All rights reserved.

More information

SAS BI Dashboard 4.3. User's Guide. SAS Documentation

SAS BI Dashboard 4.3. User's Guide. SAS Documentation SAS BI Dashboard 4.3 User's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2010. SAS BI Dashboard 4.3: User s Guide. Cary, NC: SAS Institute

More information

Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development

Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development By Kenji Uchida Software Engineer IBM Corporation Level: Intermediate

More information

Master Data Services. SQL Server 2012 Books Online

Master Data Services. SQL Server 2012 Books Online Master Data Services SQL Server 2012 Books Online Summary: Master Data Services (MDS) is the SQL Server solution for master data management. Master data management (MDM) describes the efforts made by an

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

Teamcenter s manufacturing process management 8.3. Report Generator Guide. Publication Number PLM00064 E

Teamcenter s manufacturing process management 8.3. Report Generator Guide. Publication Number PLM00064 E Teamcenter s manufacturing process management 8.3 Report Generator Guide Publication Number PLM00064 E Proprietary and restricted rights notice This software and related documentation are proprietary to

More information

Jeremy Kashel Tim Kent Martyn Bullerwell. Chapter No.2 "Master Data Services Overview"

Jeremy Kashel Tim Kent Martyn Bullerwell. Chapter No.2 Master Data Services Overview Jeremy Kashel Tim Kent Martyn Bullerwell Chapter No.2 "Master Data Services Overview" Master Data Services Overview In this chapter, we will provide an overview of SQL Server 2008 R2 Master Data Services

More information

Last edited on 7/30/07. Copyright Syncfusion., Inc 2001 2007.

Last edited on 7/30/07. Copyright Syncfusion., Inc 2001 2007. Enabling ClickOnce deployment for applications that use the Syncfusion libraries... 2 Requirements... 2 Introduction... 2 Configuration... 2 Verify Dependencies... 4 Publish... 6 Test deployment... 8 Trust

More information

Building A Very Simple Web Site

Building A Very Simple Web Site Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building

More information

Module 1: EXPENSE REPORT OVERVIEW AND BASIC SETUP

Module 1: EXPENSE REPORT OVERVIEW AND BASIC SETUP Table of Contents Introduction Microsoft Dynamics Courseware Overview...0-2 Student Objectives.0-3 Module 1: EXPENSE REPORT OVERVIEW AND BASIC SETUP Lesson 1: Introduction to Travel and Expense Management...

More information

DATA WAREHOUSE BUSINESS INTELLIGENCE FOR MICROSOFT DYNAMICS NAV

DATA WAREHOUSE BUSINESS INTELLIGENCE FOR MICROSOFT DYNAMICS NAV www.bi4dynamics.com DATA WAREHOUSE BUSINESS INTELLIGENCE FOR MICROSOFT DYNAMICS NAV True Data Warehouse built for content and performance. 100% Microsoft Stack. 100% customizable SQL code. 23 languages.

More information

Configuration Manager

Configuration Manager After you have installed Unified Intelligent Contact Management (Unified ICM) and have it running, use the to view and update the configuration information in the Unified ICM database. The configuration

More information

Course: SharePoint 2013 Business Intelligence

Course: SharePoint 2013 Business Intelligence Course: SharePoint 2013 Business Intelligence Course Length: 3 days Course Code: M55042 Description This three-day instructor-led course provides students with the necessary knowledge to work with all

More information

Management Reporter Integration Guide for Microsoft Dynamics AX

Management Reporter Integration Guide for Microsoft Dynamics AX Microsoft Dynamics Management Reporter Integration Guide for Microsoft Dynamics AX July 2013 Find updates to this documentation at the following location: http://go.microsoft.com/fwlink/?linkid=162565

More information

Creating XML Report Web Services

Creating XML Report Web Services 5 Creating XML Report Web Services In the previous chapters, we had a look at how to integrate reports into Windows and Web-based applications, but now we need to learn how to leverage those skills and

More information

Microsoft Dynamics AX 2009 Quick Reference Guide

Microsoft Dynamics AX 2009 Quick Reference Guide Microsoft Dynamics AX 2009 Quick Reference Guide June 2009 Introduction Microsoft Dynamics AX 2009 is a comprehensive business management solution for midsized and larger organizations that works like

More information

Sage Intelligence Sage 100 ERP Intelligence Reporting Release Notes

Sage Intelligence Sage 100 ERP Intelligence Reporting Release Notes Sage Intelligence Sage 100 ERP Intelligence Reporting Table of contents 3 Introduction 3 New Features 3 Support for Citrix and Terminal Services Load Balanced Environments 3 New Switches Now Supported

More information

SharePoint 2013 Business Intelligence

SharePoint 2013 Business Intelligence Course 55042A: SharePoint 2013 Business Intelligence Course Details Course Outline Module 1: Course Overview This module explains how the class will be structured and introduces course materials and additional

More information

Selecting the Best Development Technology for Your Application Development Scenario

Selecting the Best Development Technology for Your Application Development Scenario Microsoft Dynamics AX 2012 Selecting the Best Development Technology for Your Application Development Scenario White Paper This white paper provides an overview of the common development patterns, programming

More information

Microsoft Project Server 2010 Technical Boot Camp

Microsoft Project Server 2010 Technical Boot Camp Microsoft Project Server 2010 Technical Boot Camp Course M50558 5 Day(s) 30:00 Hours Introduction Course retirement date: November 30, 2012 For a complete list of courseware retirements, see: www.microsoft.com/learning/en/us/training/retired

More information

126 SW 148 th Street Suite C-100, #105 Seattle, WA 98166 Tel: 877-795-9372 Fax: 866-417-6192 www.seattlepro.com

126 SW 148 th Street Suite C-100, #105 Seattle, WA 98166 Tel: 877-795-9372 Fax: 866-417-6192 www.seattlepro.com SharePoint 2010 Bootcamp This five-day course is designed to equip Systems Administrators, Integrators and Developers with a strong foundation for implementing solutions on Microsoft SharePoint 2010. Attendees

More information

ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE

ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE UPDATED MAY 2014 Table of Contents Table of Contents...

More information

Administration GUIDE. SharePoint Server idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201

Administration GUIDE. SharePoint Server idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201 Administration GUIDE SharePoint Server idataagent Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201 Getting Started - SharePoint Server idataagent Overview Deployment Configuration Decision Table

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information

Kyubit Business Intelligence OLAP analysis - User Manual

Kyubit Business Intelligence OLAP analysis - User Manual Using OLAP analysis features of Kyubit Business Intelligence www.kyubit.com Kyubit Business Intelligence OLAP analysis - User Manual Using OLAP analysis features of Kyubit Business Intelligence 2016, All

More information

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports

More information

SAP BO 4.1 COURSE CONTENT

SAP BO 4.1 COURSE CONTENT Data warehousing/dimensional modeling/ SAP BW 7.0 Concepts 1. OLTP vs. OLAP 2. Types of OLAP 3. Multi Dimensional Modeling Of SAP BW 7.0 4. SAP BW 7.0 Cubes, DSO s,multi Providers, Infosets 5. Business

More information

Colligo Email Manager 6.0. Connected Mode - User Guide

Colligo Email Manager 6.0. Connected Mode - User Guide 6.0 Connected Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License

More information

50465 - PerformancePoint 2010 Designing and Implementing Scorecards and Dashboards

50465 - PerformancePoint 2010 Designing and Implementing Scorecards and Dashboards 50465 - PerformancePoint 2010 Designing and Implementing Scorecards and Dashboards Introduction Audience At Completion Prerequisites Microsoft Certified Professional Exams Student Materials Outline Introduction

More information

Preparing to Install SQL Server 2005

Preparing to Install SQL Server 2005 Preparing to Install SQL Server 2005 Depending on your requirements, Microsoft SQL Server 2005 Setup installs a new instance of SQL Server. The following topics address important considerations for the

More information

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Developing Solutions for Microsoft Dynamics AX in a Shared AOS Development Environment

Developing Solutions for Microsoft Dynamics AX in a Shared AOS Development Environment Microsoft Dynamics AX 2012 Developing Solutions for Microsoft Dynamics AX in a Shared AOS Development Environment White Paper This document provides guidance for developing solutions when multiple development

More information

HP Enterprise Integration module for SAP applications

HP Enterprise Integration module for SAP applications HP Enterprise Integration module for SAP applications Software Version: 2.50 User Guide Document Release Date: May 2009 Software Release Date: May 2009 Legal Notices Warranty The only warranties for HP

More information

Connectivity Pack for Microsoft Guide

Connectivity Pack for Microsoft Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX

INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX INSTALL AND CONFIGURATION GUIDE Atlas 5.1 for Microsoft Dynamics AX COPYRIGHT NOTICE Copyright 2012, Globe Software Pty Ltd, All rights reserved. Trademarks Dynamics AX, IntelliMorph, and X++ have been

More information

SharePoint 2013 Business Intelligence Course 55042; 3 Days

SharePoint 2013 Business Intelligence Course 55042; 3 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc SharePoint 2013 Business Intelligence Course 55042; 3 Days Course Description

More information

Microsoft Dynamics AX 2012 MorphX Enhancements

Microsoft Dynamics AX 2012 MorphX Enhancements Microsoft Dynamics AX 2012 MorphX Enhancements Microsoft Dynamics AX 2012 enhances the developer experience by introducing a developer-centric workspace, a new and improved X++ editor, richer tools for

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

More information

The Essential Guide to Meeting Administrative Challenges in Multi-Tiered SharePoint Environments

The Essential Guide to Meeting Administrative Challenges in Multi-Tiered SharePoint Environments September 2010 The Essential Guide to Meeting Administrative Challenges in Multi-Tiered SharePoint Environments By Colin Spence Special Advertising Supplement to SharePointPro Connections T his essential

More information

LANDESK Service Desk. Desktop Manager

LANDESK Service Desk. Desktop Manager LANDESK Service Desk Desktop Manager LANDESK SERVICE DESK DESKTOP MANAGER GUIDE This document contains information, which is the confidential information and/or proprietary property of LANDESK Software,

More information

Budget Developer Install Manual 2.5

Budget Developer Install Manual 2.5 Budget Developer Install Manual 2.5 ARGUS Budget Developer Install Version 2.5 2/13/2013 ARGUS Software An Altus Group Company Application Server Installation for ARGUS Enterprise Version 9.1 2/13/2013

More information

SHAREPOINT 2010 FOUNDATION FOR END USERS

SHAREPOINT 2010 FOUNDATION FOR END USERS SHAREPOINT 2010 FOUNDATION FOR END USERS WWP Training Limited Page i SharePoint Foundation 2010 for End Users Fundamentals of SharePoint... 6 Accessing SharePoint Foundation 2010... 6 Logging in to your

More information

Microsoft Visual Studio Integration Guide

Microsoft Visual Studio Integration Guide Microsoft Visual Studio Integration Guide MKS provides a number of integrations for Integrated Development Environments (IDEs). IDE integrations allow you to access MKS Integrity s workflow and configuration

More information

Silect Software s MP Author

Silect Software s MP Author Silect MP Author for Microsoft System Center Operations Manager Silect Software s MP Author User Guide September 2, 2015 Disclaimer The information in this document is furnished for informational use only,

More information

Armanino McKenna LLP Welcomes You To Today s Webinar:

Armanino McKenna LLP Welcomes You To Today s Webinar: Armanino McKenna LLP Welcomes You To Today s Webinar: Business Intelligence Are You Data Rich & Information Poor? The presentation will begin in a few moments About the Presenter(s) John Horner, Director

More information

What s new in Access 2013

What s new in Access 2013 Work Smart by Microsoft IT What s new in Access 2013 Customization note: This document contains guidance and/or step-by-step installation instructions that can be reused, customized, or deleted entirely

More information

Quick Start Guide Mobile Entrée 4

Quick Start Guide Mobile Entrée 4 Table of Contents Table of Contents... 1 Installation... 2 Obtaining the Installer... 2 Installation Using the Installer... 2 Site Configuration... 2 Feature Activation... 2 Definition of a Mobile Application

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

The Jet Reports Suite of Products

The Jet Reports Suite of Products The Jet Reports Suite of Products The Jet Reports Suite of Products is an integrated reporting and business intelligence solution that ranges from individual ad-hoc reporting to enterprise level reporting

More information

DEPLOYMENT GUIDE Version 2.1. Deploying F5 with Microsoft SharePoint 2010

DEPLOYMENT GUIDE Version 2.1. Deploying F5 with Microsoft SharePoint 2010 DEPLOYMENT GUIDE Version 2.1 Deploying F5 with Microsoft SharePoint 2010 Table of Contents Table of Contents Introducing the F5 Deployment Guide for Microsoft SharePoint 2010 Prerequisites and configuration

More information

Business Intelligence in Microsoft Dynamics AX 2012

Business Intelligence in Microsoft Dynamics AX 2012 Business Intelligence in Microsoft Dynamics AX 2012 Microsoft Dynamics AX 2012 provides a flexible pre-built business intelligence (BI) solution for midmarket organizations. The use of built-in content

More information

CHAPTER 1: INTRODUCTION TO MICROSOFT DYNAMICS SURE STEP

CHAPTER 1: INTRODUCTION TO MICROSOFT DYNAMICS SURE STEP Chapter 1: Introduction to Microsoft Dynamics Sure Step CHAPTER 1: INTRODUCTION TO MICROSOFT DYNAMICS SURE STEP Objectives Introduction The objectives are: Define the purpose of Microsoft Dynamics Sure

More information

COURSE SYLLABUS COURSE TITLE:

COURSE SYLLABUS COURSE TITLE: 1 COURSE SYLLABUS COURSE TITLE: FORMAT: CERTIFICATION EXAMS: 55043AC Microsoft End to End Business Intelligence Boot Camp Instructor-led None This course syllabus should be used to determine whether the

More information

Desktop, Web and Mobile Testing Tutorials

Desktop, Web and Mobile Testing Tutorials Desktop, Web and Mobile Testing Tutorials * Windows and the Windows logo are trademarks of the Microsoft group of companies. 2 About the Tutorial With TestComplete, you can test applications of three major

More information

Implementing Data Models and Reports with Microsoft SQL Server

Implementing Data Models and Reports with Microsoft SQL Server Course 20466C: Implementing Data Models and Reports with Microsoft SQL Server Course Details Course Outline Module 1: Introduction to Business Intelligence and Data Modeling As a SQL Server database professional,

More information

Shavlik Patch for Microsoft System Center

Shavlik Patch for Microsoft System Center Shavlik Patch for Microsoft System Center User s Guide For use with Microsoft System Center Configuration Manager 2012 Copyright and Trademarks Copyright Copyright 2014 Shavlik. All rights reserved. This

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Microsoft Dynamics AX 2012

Microsoft Dynamics AX 2012 Dynamics AX 2012 New, Changed, and Deprecated Features for Dynamics AX 2012 Date: July 28, 2011 Disclaimer: This document provides a summary of the product-wide features that will be implemented in Dynamics

More information

Infor Enterprise Server Plug-in for Microsoft SQL Server Reporting Services Development Guide

Infor Enterprise Server Plug-in for Microsoft SQL Server Reporting Services Development Guide Infor Enterprise Server Plug-in for Microsoft SQL Server Reporting Services Development Guide Copyright 2015 Infor Important Notices The material contained in this publication (including any supplementary

More information

ORACLE APPLICATION EXPRESS 5.0

ORACLE APPLICATION EXPRESS 5.0 ORACLE APPLICATION EXPRESS 5.0 Key Features Fully supported nocost feature of the Oracle Database Simple 2-Tier Architecture Develop desktop and mobile applications 100% Browserbased Development and Runtime

More information

Colligo Email Manager 6.2. Offline Mode - User Guide

Colligo Email Manager 6.2. Offline Mode - User Guide 6.2 Offline Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 3 Checking for Updates 4 Updating Your License

More information

The focus of this course is on the SharePoint 2013 business intelligence platform and not on the SQL business intelligence services.

The focus of this course is on the SharePoint 2013 business intelligence platform and not on the SQL business intelligence services. Course Page - Page 1 of 11 SharePoint 2013 Business Intelligence M-55042 Length: 3 days Price: $1,795.00 Course Description This three-day instructor-led course provides students with the necessary knowledge

More information

Scheduling Software User s Guide

Scheduling Software User s Guide Scheduling Software User s Guide Revision 1.12 Copyright notice VisualTime is a trademark of Visualtime Corporation. Microsoft Outlook, Active Directory, SQL Server and Exchange are trademarks of Microsoft

More information

Using the Query Analyzer

Using the Query Analyzer Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

Authoring for System Center 2012 Operations Manager

Authoring for System Center 2012 Operations Manager Authoring for System Center 2012 Operations Manager Microsoft Corporation Published: November 1, 2013 Authors Byron Ricks Applies To System Center 2012 Operations Manager System Center 2012 Service Pack

More information

QAD Business Intelligence Release Notes

QAD Business Intelligence Release Notes QAD Business Intelligence Release Notes September 2008 These release notes include information about the latest QAD Business Intelligence (QAD BI) fixes and changes. These changes may affect the way you

More information