AxCMS.net Help & Support Center > Template Projects > Reporting Template Project

Size: px
Start display at page:

Download "AxCMS.net Help & Support Center > Template Projects > Reporting Template Project"

Transcription

1 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project Table Of Contents -Reporting Template Project - Installation - Configuration - Generating reports in Excel - Integration with MailCenter - Integrating Reporting to your solution - Sample Reports

2 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project Reporting Template Project Contents Concept Installation Configuration Generating reports in Excel Integration with MailCenter Integrating Reporting to your solution Sample Reports Concept Reporting Sample Project is a sample solution which extends AxCMS.net logging functionality with advanced data analysis and reporting. The focus of this application is to log actions to the AxActionLog and process the data into reports shown in Excel files. Actions defined in web.config are logged to the AxActionLog tables in the database. The AxDWH_Processor generates a Processor that loads new/changed data from databases to the data warehouse (DWH). Next the OLAP Cube is populated with data from Data Warehouse and the data is processed. Using data generated by OLAP Cube, you will be able to create and present various reports and charts in Excel. For more info about Action Loging please see our Developing guide here: Logging Action

3 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Installation Installation of Reporting Template Project Reporting Template Project Prerequisites Reporting Template currently requires Visual Studio 2005/ MS SQL Server 2005 to work. In addition to standart template projects prerequisites, Reporting Template Project requires the following services of MS SQL Server installed and started: Make sure you also include Business Intelligence Development Studio in your SQL Server installation, this is a required component to work with Cube projects in Visual Studio. Differences to standart template installation Installation of Reporting Template Project is almost the same as of Sample project. There are two main differences between Sample and Reporting Template project. The one is that all folders, virtual directories end with _ReportingSample instead of _Sample. The second difference is that the custom extension is set to.axcms instead of.sample. So, please, follow the Sample project installation guide, keeping in mind those 2 differences. Configuring HTTP-handlers for DocumentViewAction To enable AxCMS.net to log document views, you need to open virtual directory properties of AxCMSwebLive_ReportingSample in IIS manager, and create mappings for the following extensions.pdf.zip.xls.doc to aspnet_isapi.dll of Framework 2.0. If you want to add additional document extensions, you should add mappings for them in IIS manager as described before, and additionally add them them to the extension list in <httphandlers> section of your LS.Web.config <httphandlers> <add verb="*" path="*.pdf,*.zip,*.xls,*.doc" type="system.web.staticfilehandler" />

4 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Installation </httphandlers> Project structure AxDWH_Processor - ETL processor AxDWHProcessor.exe - executable file for processor, you can run it with parameters or run it without any parameters: AxDWHProcessor.exe - updates the data in cube from data warehouse AxDWHProcessor.exe createdatabase - creates new data warehouse database AxDWHProcessor.exe createdatabase recreate - deletes old data warehouse databse and creates a new one etl.config - main configuration file for ETL processor containing descriptions of all SQL connection strings for processor and Dimension/ Fact table mappings CreateDatabase.bat RunIntegration.bat - runs ETL processor in database creation mode - runs ETL processor in cube update mode AxDWHProcessor.exe.config - miscellaneous configurations for ETL processor AxCMSTemplates_ReportingSample - Templates Controls CSS Images RowControls TopMenu CmsSite.xml error.htm - put here the controls, used by template - put your css-files here - design-images, icons, etc. - custom elements (former: "row controls") - TopMenu extensions - describes the structure of your templates - the error page (has to be copied into cms- and/or live-root via PostBuild.build) ReportingSampleBaseTemplate.cs - inherit all your templates from this class

5 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Installation BaseTemplate.aspx ReportingSampleContext.cs - sample template. Use it or replace it with your own template - your own navigation context Extras - Extension for the Management System ArticleOverview[Detail Filter].aspx - Sample usage of the Overview/Detail pattern ExtraServices - Project for your custom web-services ReportingSample.BL - Project for your business logic (everything but the GUI) Resources_ReportingSample - Solution resources (will not be compiled) Reporting Components - contains sample reports Excel file - e.g. 3rd party DLLs used by your application Configuration - configuration files for all applications and environments DB - DB-scripts for the DB-structures you develop in your application DeploySample - automation scripts, not only for deployment Docs UnitTests_ReportingSample - Unit Tests SolutionAssemblyInfo.cs - here you set the version of the solution

6 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Configuration Configuration of Reporting Template Project Configuring SQL connections Please check the SQL connection strings and passwords in C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\Configuration\SampleDEV\etl.config and C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\Configuration\SamplePROD\etl.config make sure that any changes you make for Live System/Management System connections inside your MS.web.config and LS.web.config are also reflected in etl.config <SourceConnections> <Connection Name="LS" ConnectionString="Data Source=(local);Initial Catalog=AxCMS_Live_ReportingSample;UID= ReportingSample;PWD=AxinomCMS1;"/> <Connection Name="MS" ConnectionString="Data Source=(local);Initial Catalog=AxCMS_ReportingSample;UID= ReportingSample;PWD=AxinomCMS1;"/> <!--<Connection Name="MC" ConnectionString="Data Source=(local);Initial Catalog=AxCMS_MailCenter;UID=MailCenter;PWD=AxinomCMS1;"/>--> </SourceConnections> <DataWarehouseConnection ConnectionString="Data Source=(local);Initial Catalog=AxDWH_ReportingSample;Integrated Security=True;" /> <OlapCubeConnection Server="(local)" Database="Cube_ReportingSample" /> <!--<OlapCubeConnection Server="(local)" Database="Cube_ReportingSample_MC" />--> After making changes to configurations, please run C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\Deploy\PostBuild.bat to copy them to appropriate folders. Deploying Cube NB! If you are running VISTA, please launch all programs listed in this document with: Right click/run as Administrator, this is nessesary for them to work normally. First step is to create a Data Warehouse database based on ETL configuration. To create it, please run C:\Projects\AxCMS_ReportingSample\AxDWH_Processor\CreateDatabase.bat

7 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Configuration After the process completes, open your solution and right click on the cube project you want to use and select Deploy from the context menu. ( we will use Cube_ReportingSample for this solution, but the process is the same for Cube_ReportingSample_MC) After the cube is succesfully deployed, we need to populate it with data from Data Warehouse. To do this, run the file C:\Projects\AxCMS_ReportingSample\AxDWH_Processor\RunIntegration.bat Final step is to process the data within cube. For this, right click Cube_ReportingSample project in your solution and select Process... from the context menu.

8 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Generating reports in Excel Generating reports in Excel Using data generated by Reporting Template Project cube, you will be able to create and present various reports and charts in Excel. Connecting to Reporting Template Cube in Excel The example Excel file provided with Reporting Template Project shows some basic reports using the data warehouse. C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\Reporting\Sample.xlsx or C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\Reporting\SampleMC.xlsx if you have MailCenter integrated If you are running Vista, find Start/Programs/Microsoft Office/Excel and right click/ Run as Administrator. Then in Excel, open the excel file instead of opening it directly. This is needed for cube connection to work. By default, it is configured to work with Cube_ReportingSample on localhost. To change this (if Cube is located on a different server than localhost or if you need to use the Cube_ReportingSample_MC for MailCenter reports), follow this instructions: Open the sheet in Excel Select the ribbon 'Data' Select 'Connections' Select the connection 'Reporting_Cube' Click the button 'Properties' Switch to tab 'Definition' Click "Browse" and select the connection file with correct cube to connect to If you don't have MailCenter integrated: C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\Reporting\Configuration\ReportingSample_Cube.odc If you have MailCenter integrated: C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\Reporting\Configuration\ReportingSample_Cube_MC.odc If the cube(s) are located on server different than localhost, you can change the connection details either in.odc files or directly in Connection string window Now, press Refresh in Workbook Connections to retrieve new data from cube.

9 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Generating reports in Excel Creating a report in Excel file Insert a PivotTable (or PivotChart if a chart should be shown with the table). Select to use an external data source and choose the Cube_reportingSample (Cube_reportingSampleMC for MailCenter reports) connection. Next select if you want to create the table on new worksheet or a existing worksheet.

10 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Generating reports in Excel The Privot Table Field List is opened to select values to the Table (and Chart) Select action value(s) for the report from Privot Table Field List i.e. LS Banner Click Count and LS Banner Impression Count. Numbers of Banner impressions and Banner clicks are shown in table. Select action info value(s) for the report from Privot Table Field List i.e. Create Date, HourOfDay

11 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Generating reports in Excel Number of Banner impressions and Banner clicks are shown in table and also what hour of the day the actions were made. Left click + hold and drag the HourOfDay option from the Column Labels area to the Row Labels area The table shows the hour when the action where made as rows.

12 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Integration with MailCenter Integration of Reporting Template Project with MailCenter Reporting Template Project can be integrated with Newsletter Template Project to use its databases to retrieve data for analysis and reporting. Launching compatibility upgrade SQL script Run the following SQL script C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\DB\Upgrad CenterDB.sql in Live database of MailCenterSample Configuring HTTP-handlers for DocumentViewAction and NewsLetterView To enable AxCMS.net to log document/ tracked newsletter views, you need to open virtual directory properties of AxCMSwebLive_MailCenterSample in IIS manager, and create mappings for the following extensions.pdf.zip.xls.doc.track to aspnet_isapi.dll of Framework 2.0. Configuring LS.web.config of MailCenterSample Now, you need to configure the LS.web.config of MailCenterSample to support action logging: ensure that AxActionLog is described inside <configsections>

13 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Integration with MailCenter <configsections> <section name="axactionlog" type="axinom.aecms.logging.axactionlogsectionhandler, AxCMS.BL" /></configsections> ensure that there is a <AxActionLog> section (you may need to add it if it's not present yet) inside <configuration> section with the following strings: <AxActionLog> <action class="axinom.aecms.logging.axpageviewaction" mode="on" /> <action class="axinom.aecms.logging.axdocumentviewaction" mode="on" /> <action class="axinom.aecms.logging.axloginaction" mode="on" /> <action class="axinom.aecms.logging.axregisteraction" mode="on" /> <action class="axinom.aecms.logging.axsearchaction" mode="on" /> <action class="axinom.aecms.logging.axteaseraction" mode="on" /> <action class="axinom.aecms.logging.axtrackedlinkaction" mode="on" /> <action class="axinom.aecms.logging.axsubscribeaction" mode="on" /> <action class="axinom.aecms.logging.axunsubscribeaction" mode="on" /> <action class="mailcentersample.bl.useractions.axnewsletterview" mode="on" /> </AxActionLog> ensure that the <httphandlers> section contains the following strings: <httphandlers> <add verb="*" path="*.track" type="mailcentersample.bl.newsletterviewtrackinghandler, MailCenterSample.BL" /> <add verb="*" path="*.pdf,*.zip,*.xls,*.doc" type="system.web.staticfilehandler" /> </httphandlers> Configuring MS.web.config of MailCenterSample MS.web.config of MailCenterSample also needs to be configured to support action logging: ensure that AxActionLog is described inside <configsections> <configsections> <section name="axactionlog" type="axinom.aecms.logging.axactionlogsectionhandler, AxCMS.BL" /></configsections> ensure that there is a <AxActionLog> section (you may need to add it if it's not present yet) inside <configuration> section with the following strings:

14 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Integration with MailCenter <AxActionLog> <action class="axinom.aecms.logging.axcmsloginaction" mode="on" /> <action class="axinom.aecms.addstructureelementactivity" mode="on" /> <action class="axinom.aecms.checkinactivity" mode="on" /> <action class="axinom.aecms.logging.checkoutaction" mode="on" /> <action class="axinom.aecms.classifyactivity" mode="on" /> <action class="axinom.aecms.cloneactivity" mode="on" /> <action class="axinom.aecms.createpagesnapshotfileactivity" mode="on" /> <action class="axinom.aecms.deleteactivity" mode="on" /> <action class="axinom.aecms.fillpropertiesactivity" mode="on" /> <action class="axinom.aecms.generatereportsactivity" mode="on" /> <action class="axinom.aecms.importuseractivity" mode="on" /> <action class="axinom.aecms.movedownactivity" mode="on" /> <action class="axinom.aecms.moveupactivity" mode="on" /> <action class="axinom.aecms.recoveractivity" mode="on" /> <action class="axinom.aecms.restoresnapshotactivity" mode="on" /> <action class="axinom.aecms.bulkoperations.objectcheckinactivity" mode="on" /> <action class="axinom.aecms.bulkoperations.objectdeleteactivity" mode="on" /> <action class="axinom.aecms.publish.publishdocumentactivity" mode="on" /> <action class="axinom.aecms.publish.publishmailtemplateactivity" mode="on" /> <action class="axinom.aecms.publish.publishnewsletteractivity" mode="on" /> <action class="axinom.aecms.publish.publishpageactivity" mode="on" /> <action class="axinom.aecms.publish.requestpublishingactivity" mode="on" /> <action class="axinom.aecms.publish.revokeapprovalpageactivity" mode="on" /> <action class="axinom.aecms.logging.axcmsloginaction" mode="on" /> </AxActionLog> ETL changes You need to change connection/description strings inside the C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\Configuration\SampleDEV\etl.config of Reporting Template Project for ETL processor to work with Newsletter Template Project and MailCenter data. Change LS and MS connection strings to use Newsletter Template database <Connection Name="LS" ConnectionString="Data Source=(local);Initial Catalog=AxCMS_Live_MailCenterSample;UID=MailCenterSample;PWD=AxinomCMS1;"/> <Connection Name="MS" ConnectionString="Data Source=(local);Initial Catalog=AxCMS_MailCenterSample;UID=MailCenterSample;PWD=AxinomCMS1"/> Uncomment and check connection for MailCenter database connection string, it must match those from your MailCenter. <Connection Name="MC" ConnectionString="Data Source=(local);Initial Catalog=AxCMS_MailCenter;UID=MailCenter;PWD=AxinomCMS1;"/>

15 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Integration with MailCenter Uncomment the MC SourceFact table connection in <CacheTables> <SourceFactTable Connection="MC" Table="MailArchive" Alias="MCArchive" IDColumn="MailID" DeleteIntegratedRows="false"/> Uncomment the Cube_ReportingSample_MC connection and comment the previous one. <!--<OlapCubeConnection Server="(local)" Database="Cube_ReportingSample" />--> <OlapCubeConnection Server="(local)" Database="Cube_ReportingSample_MC" /> Uncomment the MailCenter dimension tables <DimensionTable Name="DimMailRecipient" EnableSCD="false" SourceQuery="SELECT DISTINCT [To] FROM {{MCArchive}}"> <Columns> <Column Name="MailAddress" SourceColumn="To" BusinessKey="true"/> </Columns> </DimensionTable> <DimensionTable Name="DimMailOrder" EnableSCD="false" SourceQuery="SELECT DISTINCT [From], Subject, OrderID FROM {{MCArchive}}"> <Columns> <Column Name="OrderID" SourceColumn="OrderID" BusinessKey="true"/> <Column Name="Sender" SourceColumn="From" UnknownValue="Unknown"/> <Column Name="Subject" SourceColumn="Subject" UnknownValue="Unknown"/> </Columns> </DimensionTable> Uncomment the MailCenter facts table <FactTable Name="FactMCSentMail" SourceQuery="SELECT [To], TargetDate, OrderID, MailID, DateCreated, SendState, SendAttempts FROM {{MCArchive}}" SourceCacheTable="MCArchive"> <Columns> <Column Name="MailID" SourceColumn="MailID" BusinessKey="true"/> <Column Name="CreateDate" SourceColumn="DateCreated" TransformationAssemblyName="AxDWH_Transformations" TransformationClassName="Axionom.AxDWH_Transformations.DateTimeTransformation" References="DimTime"/> <Column Name="Recipient" SourceColumn="To" References="DimMailRecipient"/> <Column Name="OrderID" SourceColumn="OrderID" References="DimMailOrder"/> <Column Name="TargetDate" SourceColumn="TargetDate" TransformationAssemblyName="AxDWH_Transformations" TransformationClassName="Axionom.AxDWH_Transformations.DateTimeTransformation" References="DimTime"/> <Column Name="SendState" SourceColumn="SendState"/> <Column Name="SendAttempts" SourceColumn="SendAttempts"/> </Columns> </FactTable> After making changes to configurations, please run C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\Deploy\PostBuild.bat

16 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Integration with MailCenter to copy them to appropriate folders. Recreating Data Warehouse to use Newsletter Template Project data To recreate Data Warehouse database, run the following command in C:\Projects\AxCMS_ReportingSample\AxDWH_Processor folder: axdwh_processor createdatabase recreate Deploying the Cube_ReportingSample_MC cube In AxCMS_ReportingSample solution, right click on the Cube_ReportingSample_MC project and select Deploy from the context menu. After the cube is succesfully deployed, we need to populate it with data from Data Warehouse. To do this, run the file C:\Projects\AxCMS_ReportingSample\AxDWH_Processor\RunIntegration.bat Like in configuration, final step is to process the data within cube. For this, right click Cube_ReportingSample_MC project in your solution and select Process... from the context menu.

17 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Integrating Reporting to your solution Integrating Reporting to your solution Copy Reporting directories First, copy the cube project you want to use: Copy C:\Projects\AxCMS_ReportingSample\Cube_ReportingSample directory (or C:\Projects\AxCMS_ReportingSample\Cube_ReportingSample_MC if you need MailCenter integration) to C:\Projects\AxCMS_YourProject\ Then, copy the cube processor: Copy C:\Projects\AxCMS_ReportingSample\AxDWH_Processor directory to C:\Projects\AxCMS_YourProject\ Then, copy the reporting Excel file and its assets: Copy C:\Projects\AxCMS_ReportingSample\Resources_ReportingSample\Reporting directory to C:\Projects\AxCMS_YourProject\Resources_YourProject\ Add Reporting Cube to your solution In Visual Studio, right click Solution AxCMS_YourProject, select Add/Existing Project, browse to the directory of the Cube project you just copied and add it to Visual Studio. Configure etl.config and deploy new cube Follow the steps of Configuring Template Project guide with this exception(s): You should edit etl.config located in C:\Projects\AxCMS_YourProject\AxDWH_Processor\etl.config and if you already had cube deployed, run axdwh_processor createdatabase recreate console command in AxDWH_Processor directory instead of CreateDatabase.bat After the cube is deployed and populated, you can work with it from Excel as usual.

18 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Sample Reports Sample Reports Excel Sample sheets The Reporting Solution comes with two sample Excel documents that already contain reports for different actions. At first the reports contain pre-generated data. Afterwards the files can be refreshed with data from cube and reports will show real actions done in Projects. Reporting Sample actions shown in Sample.xlsx The following actions are logged in Reporting Sample databases and can be presented in the Sample.xlsx file LS actions AxPageViewAction logged when pages are viewed in browser. Displayed on Sample.xlsx sheets: Page views over the day - This report shows the number of all page views and how they are distributed over the day PageViews by date and page type - In this report the number of page views and is arranged by the date where the page view happened and the type of the page that was viewed. AxBannerImpression and AxBannerClick banner impression is logged when a page whit banner in the content is viewed in browser. Banner click is logged when banner is clicked. Displayed on Sample.xlsx sheet: Banner Impressions/ Clicks - This report shows the number of banner impressions/ clicks for the day. AxSearchAction logged when Search is used. Displayed on Sample.xlsx sheet: Search statistics - This report shows the number of searches done for day and how successful they were. AxVote logged when a vote is given in Voting module. Displayed on Sample.xlsx sheet: LS Votes - This report shows the number of votes cast over the day. AxLoginAction logged when user logs in on live site. Displayed on Sample.xlsx sheet: LS User Login - This report shows the number of LS user logins over the day. MS actions PublishPageActivity logged when a page is published. Displayed on Sample.xlsx sheet: Published pages - This report shows the number of pages published over the day. PublishDocumentActivity logged when documents are published. Displayed on Sample.xlsx sheet: Published documents - This report shows the number of documents published over the day Mail Center actions shown in SampleMC.xlsx The following actions are logged in Mail Center Sample databases and can be presented in the LS actions AxPageViewAction logged when pages are viewed in browser. Displayed on Sample.xlsx sheets: Page views over the day - This report shows the number of all page views and how they are distributed over the day PageViews by date and page type - In this report the number of page views and is arranged by the date where the page view happened and the type of the page that was viewed. AxLoginAction logged when user logs in on live site. Displayed on Sample.xlsx sheet: LS User Login - This report shows the number of LS user logins over the day. AxSubscribeAction and AxUnSubscribeAction subscribe is logged when user subsribes to a newsletter and unsubscribe is logged when user unsubscribes from a newsletter. Displayed on SampleMC.xlsx sheet: Newsletter registration / deregistration - This report shows the number of all newsletter registrations and deregistrations and how they are distributed over the day. MS actions

19 AxCMS.net Help & Support Center > Template Projects > Reporting Template Project > Sample Reports PublishPageActivity logged when a page is published. Displayed on Sample.xlsx sheet: Published pages - This report shows the number of pages published over the day. PublishDocumentActivity logged when documents are published. Displayed on Sample.xlsx sheet: Published documents - This report shows the number of documents published over the day MC actions PublishNewsletterActivity logged when a newsletter is published. Displayed on SampleMC.xlsx sheet: Sent Mail This report shows the number of send attempts and mails sent.

Business Intelligence with AxCMS.net

Business Intelligence with AxCMS.net White Paper: Business Intelligence Business Intelligence with AxCMS.net Abstract / Summary AxCMS.net supports Business Intelligence allowing you to have a complete overview about what is going on in your

More information

Release Document Version: 1.4-2013-05-30. User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office

Release Document Version: 1.4-2013-05-30. User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office Release Document Version: 1.4-2013-05-30 User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office Table of Contents 1 About this guide....6 1.1 Who should read this guide?....6 1.2 User profiles....6

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

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

WebSphere Business Monitor V7.0 Business space dashboards

WebSphere Business Monitor V7.0 Business space dashboards Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should

More information

Perceptive Intelligent Capture Solution Configration Manager

Perceptive Intelligent Capture Solution Configration Manager Perceptive Intelligent Capture Solution Configration Manager Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: February 2016 2015 Lexmark International Technology, S.A.

More information

Virtual Communities Operations Manual

Virtual Communities Operations Manual Virtual Communities Operations Manual The Chapter Virtual Communities (VC) have been developed to improve communication among chapter leaders and members, to facilitate networking and communication among

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

Video Administration Backup and Restore Procedures

Video Administration Backup and Restore Procedures CHAPTER 12 Video Administration Backup and Restore Procedures This chapter provides procedures for backing up and restoring the Video Administration database and configuration files. See the following

More information

Quick start. A project with SpagoBI 3.x

Quick start. A project with SpagoBI 3.x Quick start. A project with SpagoBI 3.x Summary: 1 SPAGOBI...2 2 SOFTWARE DOWNLOAD...4 3 SOFTWARE INSTALLATION AND CONFIGURATION...5 3.1 Installing SpagoBI Server...5 3.2Installing SpagoBI Studio and Meta...6

More information

Upgrading Litium Studio. From version 4.2.0.0C to 4.3

Upgrading Litium Studio. From version 4.2.0.0C to 4.3 Upgrading Litium Studio From version 4.2.0.0C to 4.3 Introduction This document describes how to upgrade Litium Studio from version 4.2.0.0C to 4.3 on a web server. Create backup 1. Backup the existing

More information

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

WebSphere Business Monitor V6.2 Business space dashboards

WebSphere Business Monitor V6.2 Business space dashboards Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 What this exercise is about... 2 Lab requirements... 2 What you should

More information

HarePoint Workflow Extensions for Office 365. Quick Start Guide

HarePoint Workflow Extensions for Office 365. Quick Start Guide HarePoint Workflow Extensions for Office 365 Quick Start Guide Product version 0.91 November 09, 2015 ( This Page Intentionally Left Blank ) HarePoint.Com Table of Contents 2 Table of Contents Table of

More information

Moving the Web Security Log Database

Moving the Web Security Log Database Moving the Web Security Log Database Topic 50530 Web Security Solutions Version 7.7.x, 7.8.x Updated 22-Oct-2013 Version 7.8 introduces support for the Web Security Log Database on Microsoft SQL Server

More information

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

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

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

Installing OneStop Reporting Products

Installing OneStop Reporting Products Installing OneStop Reporting Products Contents 1 Introduction 2 Product Overview 3 System Requirements 4 Deployment 5 Installation 6 Appendix 2010 OneStop Reporting http://www.onestopreporting.com support@onestopreporting.com

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

OneStop Reporting 3.7 Installation Guide. Updated: 2013-01-31

OneStop Reporting 3.7 Installation Guide. Updated: 2013-01-31 OneStop Reporting 3.7 Installation Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents System Requirements... 1 Obtaining the Software... 2 Obtaining Your

More information

Create a PivotTable or PivotChart report

Create a PivotTable or PivotChart report Page 1 of 5 Excel Home > PivotTable reports and PivotChart reports > Basics Create or delete a PivotTable or PivotChart report Show All To analyze numerical data in depth and to answer unanticipated questions

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

Fax User Guide 07/31/2014 USER GUIDE

Fax User Guide 07/31/2014 USER GUIDE Fax User Guide 07/31/2014 USER GUIDE Contents: Access Fusion Fax Service 3 Search Tab 3 View Tab 5 To E-mail From View Page 5 Send Tab 7 Recipient Info Section 7 Attachments Section 7 Preview Fax Section

More information

Install SQL Server 2014 Express Edition

Install SQL Server 2014 Express Edition How To Install SQL Server 2014 Express Edition Updated: 2/4/2016 2016 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders.

More information

SMB Intelligence. Budget Planning

SMB Intelligence. Budget Planning SMB Intelligence Budget Planning Introduction As an Excel-based data entry tool with a flexible SQL Server database and a powerful companion report writer (SMB Intelligence Reporting), SMB Intelligence

More information

Indiana University Business Intelligence Getting Started: PowerPivot bi.iu.edu

Indiana University Business Intelligence Getting Started: PowerPivot bi.iu.edu Indiana University Business Intelligence Getting Started: PowerPivot PowerPivot What Is It? PowerPivot for Excel is a data analysis tool that delivers unmatched computational power directly within the

More information

ACTIVE DIRECTORY DEPLOYMENT

ACTIVE DIRECTORY DEPLOYMENT ACTIVE DIRECTORY DEPLOYMENT CASAS Technical Support 800.255.1036 2009 Comprehensive Adult Student Assessment Systems. All rights reserved. Version 031809 CONTENTS 1. INTRODUCTION... 1 1.1 LAN PREREQUISITES...

More information

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange User Mailbox Backup and Restore feature

More information

WEBFOCUS QUICK DATA FOR EXCEL

WEBFOCUS QUICK DATA FOR EXCEL WEBFOCUS QUICK DATA FOR EXCEL BRIAN CARTER INFORMATION BUILDERS SUMMIT 2008 USERS CONFERENCE JUNE 2008 Presentation Abstract: Even with the growing popularity and evolvement of Business Intelligence products

More information

MS-55115: Planning, Deploying and Managing Microsoft Project Server 2013

MS-55115: Planning, Deploying and Managing Microsoft Project Server 2013 MS-55115: Planning, Deploying and Managing Microsoft Project Server 2013 Description The goal of this three-day instructor-led course is to provide students with the knowledge and skills necessary to effectively

More information

USER GUIDE Deploying Your Application to WinHost

USER GUIDE Deploying Your Application to WinHost 2011 USER GUIDE Deploying Your Application to WinHost Table of Contents Deploying Your Application to WinHost... 2 Configuring the Settings in WinHost... 2 Deploying a Web Site Factory Application with

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

SNAMP Data Server Tutorial

SNAMP Data Server Tutorial SNAMP Data Server Tutorial The server hosted by UC Merced is a data server that is used to share data among the science teams and with the public. To ensure the proper data disclosure, a sharing level

More information

Composite.Community.Newsletter - User Guide

Composite.Community.Newsletter - User Guide Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This

More information

Event Based Interface

Event Based Interface Event Based Interface This application note describes how to configure the real-time Event Based interface between Mattec MES and CMS.. 1. Overview Mattec s sister company, CMS, is a leading provider of

More information

INSTALLATION GUIDE V2.1 (DRAFT)

INSTALLATION GUIDE V2.1 (DRAFT) INSTALLATION GUIDE V2.1 (DRAFT) Table of Contents Quick Install Sheet Guide (If you have installed AppTracker before)... 2 Assumptions... 2 SQL... 2 IIS... 2 Configuration... 2 Prerequisites... 3 Windows

More information

Top Navigation menu - Tabs. User Guide 1. www.magazento.com & www.ecommerceoffice.com

Top Navigation menu - Tabs. User Guide 1. www.magazento.com & www.ecommerceoffice.com User Guide User Guide 1 Extension Description Successful Websites ALWAYS have logical navigation that mirror real world navigational expectations and experiences. Good menus ALWAYS looks 100% clear, because

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

More information

Installation Manual Version 8.5 (w/sql Server 2005)

Installation Manual Version 8.5 (w/sql Server 2005) C ase Manag e m e n t by C l i e n t P rofiles Installation Manual Version 8.5 (w/sql Server 2005) T E C H N O L O G Y F O R T H E B U S I N E S S O F L A W Table of Contents - 2 - Table of Contents SERVER

More information

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO: INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software

More information

M4 Systems. Email Remittance (ER) User Guide

M4 Systems. Email Remittance (ER) User Guide M4 Systems Email Remittance (ER) User Guide M4 Systems Ltd Tel: 0845 5000 777 International: +44 (0)1443 863910 www.m4systems.com www.dynamicsplus.net Table of Contents Introduction ------------------------------------------------------------------------------------------------------------------

More information

Telelogic DASHBOARD Installation Guide Release 3.6

Telelogic DASHBOARD Installation Guide Release 3.6 Telelogic DASHBOARD Installation Guide Release 3.6 1 This edition applies to 3.6.0, Telelogic Dashboard and to all subsequent releases and modifications until otherwise indicated in new editions. Copyright

More information

SAP BusinessObjects Financial Consolidation Web User Guide

SAP BusinessObjects Financial Consolidation Web User Guide SAP BusinessObjects Financial Consolidation Document Version: 10.0 Support Package 18 2016-02-19 SAP BusinessObjects Financial Consolidation Web User Guide Content 1 General user functions....12 1.1 To

More information

Synchronization with Microsoft Team Foundation Server 2010

Synchronization with Microsoft Team Foundation Server 2010 Synchronization with Microsoft Team Foundation Server 2010 How To Setup March 19, 2011 v. 2 INTRODUCTION 3 PREREQUISITES 3 INSTALLATION 3 DEPLOYMENT SCENARIOS 4 SINGLE SERVER SCENARIO 4 DISTRIBUTED SCENARIO

More information

This is a training module for Maximo Asset Management V7.1. It demonstrates how to use the E-Audit function.

This is a training module for Maximo Asset Management V7.1. It demonstrates how to use the E-Audit function. This is a training module for Maximo Asset Management V7.1. It demonstrates how to use the E-Audit function. Page 1 of 14 This module covers these topics: - Enabling audit for a Maximo database table -

More information

RoboMail Mass Mail Software

RoboMail Mass Mail Software RoboMail Mass Mail Software RoboMail is a comprehensive mass mail software, which has a built-in e-mail server to send out e-mail without using ISP's server. You can prepare personalized e-mail easily.

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

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

R i o L i n x s u p p o r t @ r i o l i n x. c o m 1 / 3 0 / 2 0 1 2

R i o L i n x s u p p o r t @ r i o l i n x. c o m 1 / 3 0 / 2 0 1 2 XTRASHARE INSTALLATION GUIDE This is the XtraShare installation guide Development Guide How to develop custom solutions with Extradium for SharePoint R i o L i n x s u p p o r t @ r i o l i n x. c o m

More information

Trial version of GADD Dashboards Builder

Trial version of GADD Dashboards Builder Trial version of GADD Dashboards Builder Published 2014-02 gaddsoftware.com Table of content 1. Introduction... 3 2. Getting started... 3 2.1. Start the GADD Dashboard Builder... 3 2.2. Example 1... 3

More information

SAP BUSINESS OBJECT ANALYSIS FOR EXCEL DEVELOPER GUIDE

SAP BUSINESS OBJECT ANALYSIS FOR EXCEL DEVELOPER GUIDE STEP 1: Log on to Business Object Analysis for Excel. Path: Start All Programs SAP Business Intelligence Analysis for Microsoft Excel Click Microsoft Excel will appear Figure 1 STEP 2: Choose Microsoft

More information

Overview What is a PivotTable? Benefits

Overview What is a PivotTable? Benefits Overview What is a PivotTable? Benefits Create a PivotTable Select Row & Column labels & Values Filtering & Sorting Calculations Data Details Refresh Data Design options Create a PivotChart Slicers Charts

More information

GUARD1 PLUS SE Administrator's Manual

GUARD1 PLUS SE Administrator's Manual GUARD1 PLUS SE Administrator's Manual Version 4.4 30700 Bainbridge Road Solon, Ohio 44139 Phone 216-595-0890 Fax 216-595-0991 info@guard1.com www.guard1.com i 2010 TimeKeeping Systems, Inc. GUARD1 PLUS

More information

GoDaddy (CentriqHosting): Data driven Web Application Deployment

GoDaddy (CentriqHosting): Data driven Web Application Deployment GoDaddy (CentriqHosting): Data driven Web Application Deployment Process Summary There a several steps to deploying an ASP.NET website that includes databases (for membership and/or for site content and

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

Eylean server deployment guide

Eylean server deployment guide Eylean server deployment guide Contents 1 Minimum software and hardware requirements... 2 2 Setting up the server using Eylean.Server.Setup.exe wizard... 2 3 Manual setup with Windows authentication -

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

IceWarp Server Windows Installation Guide

IceWarp Server Windows Installation Guide IceWarp Unified Communications IceWarp Server Windows Installation Guide Version 11.3 Published on 2/6/2015 Contents IceWarp Server Windows... 4 Pre-requisites... 5 Launch Installer Wizard... 6 Select

More information

BSDI Advanced Fitness & Wellness Software

BSDI Advanced Fitness & Wellness Software BSDI Advanced Fitness & Wellness Software 6 Kellie Ct. Califon, NJ 07830 http://www.bsdi.cc SOFTWARE BACKUP/RESTORE INSTRUCTION SHEET This document will outline the steps necessary to take configure the

More information

Using Delphi Data with Excel and Access

Using Delphi Data with Excel and Access $FDGHPLF&RPSXWLQJ &RPSXWHU 7UDLQLQJ 6XSSRUW 6HUYLFHV 1HWZRUNLQJ6HUYLFHV :HEHU%XLOGLQJ Using Delphi Data with Excel and Access Using Delphi Data The raw data used to create the CSU financial, human resource,

More information

ResPAK Internet Module

ResPAK Internet Module ResPAK Internet Module This document provides an overview of the ResPAK Internet Module which consists of the RNI Web Services application and the optional ASP.NET Reservations web site. The RNI Application

More information

Installation Instructions Release Version 15.0 January 30 th, 2011

Installation Instructions Release Version 15.0 January 30 th, 2011 Release Version 15.0 January 30 th, 2011 ARGUS Software: ARGUS Valuation - DCF The contents of this document are considered proprietary by ARGUS Software, the information enclosed and any portion thereof

More information

BillQuick Web i Time and Expense User Guide

BillQuick Web i Time and Expense User Guide BillQuick Web i Time and Expense User Guide BQE Software Inc. 1852 Lomita Boulevard Lomita, California 90717 USA http://www.bqe.com Table of Contents INTRODUCTION TO BILLQUICK... 3 INTRODUCTION TO BILLQUICK

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

More information

Web+Center Version 7.x Windows Quick Install Guide 2 Tech Free Version Rev March 7, 2012

Web+Center Version 7.x Windows Quick Install Guide 2 Tech Free Version Rev March 7, 2012 Web+Center Version 7.x Windows Quick Install Guide 2 Tech Free Version Rev March 7, 2012 1996-2012 Internet Software Sciences Welcome to the Web+Center Installation and Configuration guide. This document

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

Business Explorer (BEx)

Business Explorer (BEx) SAP Business Warehouse/Business Intelligence Reporting Business Explorer (BEx) Washington State HRMS Business Warehouse/Business Intelligence (BW/BI) BW/BI Power User Workshop Materials General Topics

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

MS SQL Express installation and usage with PHMI projects

MS SQL Express installation and usage with PHMI projects MS SQL Express installation and usage with PHMI projects Introduction This note describes the use of the Microsoft SQL Express 2008 database server in combination with Premium HMI projects running on Win31/64

More information

XMailer Reference Guide

XMailer Reference Guide XMailer Reference Guide Version 7.00 Wizcon Systems SAS Information in this document is subject to change without notice. SyTech assumes no responsibility for any errors or omissions that may be in this

More information

F9 Integration Manager

F9 Integration Manager F9 Integration Manager User Guide for use with QuickBooks This guide outlines the integration steps and processes supported for the purposes of financial reporting with F9 Professional and F9 Integration

More information

BackupAgent Management Console 4.0.1 User Manual

BackupAgent Management Console 4.0.1 User Manual BackupAgent Management Console 4.0.1 User Manual May 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes

More information

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange InfoStore Backup and Restore feature in

More information

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

Table of Contents. Table of Contents 3

Table of Contents. Table of Contents 3 User Guide EPiServer 7 Mail Revision A, 2012 Table of Contents 3 Table of Contents Table of Contents 3 Introduction 5 About This Documentation 5 Accessing EPiServer Help System 5 Online Community on EPiServer

More information

Orientation Course - Lab Manual

Orientation Course - Lab Manual Orientation Course - Lab Manual Using the Virtual Managed Workplace site for the lab exercises Your instructor will provide the following information before the first lab exercise begins: Your numerical

More information

Installation Guide: Delta Module Manager Launcher

Installation Guide: Delta Module Manager Launcher Installation Guide: Delta Module Manager Launcher Overview... 2 Delta Module Manager Launcher... 2 Pre-Installation Considerations... 3 Hardware Requirements... 3 Software Requirements... 3 Virtualisation...

More information

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 1 Table of Contents Chapter 1: Installation Overview... 3 Introduction... 3 Minimum Requirements...

More information

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day benday@benday.com v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

Cross Bulk Mailer 6.1 User Guide

Cross Bulk Mailer 6.1 User Guide http://dnnmodule.com/ Page 1 of 16 Cross Bulk Mailer 6.1 User Guide (The best email marketing module for DNN 7) http://dnnmodule.com 7/26/2015 Cross Software, China Skype: xiaoqi98@msn.com QQ: 35206992

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

4cast Server Specification and Installation

4cast Server Specification and Installation 4cast Server Specification and Installation Version 2015.00 10 November 2014 Innovative Solutions for Education Management www.drakelane.co.uk System requirements Item Minimum Recommended Operating system

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

SalesPad for Dynamics GP DataCollection Installation & Setup

SalesPad for Dynamics GP DataCollection Installation & Setup SalesPad for Dynamics GP DataCollection Installation & Setup A software product created by SalesPad Solutions, LLC Copyright 2004-2011 www.salespad.net Contact Information SalesPad Solutions, LLC. 3200

More information

Mail Merge Microsoft Word and Excel Queries Scott Kern Senior Consultant

Mail Merge Microsoft Word and Excel Queries Scott Kern Senior Consultant Mail Merge Microsoft Word and Excel Queries Scott Kern Senior Consultant What We ll Cover 1. Enabling database connections through Microsoft Excel 2. Accessing the data stored in the SQL Database via the

More information

Online Backup Management Console 3.8 User Manual

Online Backup Management Console 3.8 User Manual Online Backup Management Console 3.8 User Manual September 2010 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human

More information

HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE

HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE Copyright 1998-2013 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means

More information

Visual COBOL ASP.NET Shopping Cart Demonstration

Visual COBOL ASP.NET Shopping Cart Demonstration Visual COBOL ASP.NET Shopping Cart Demonstration Overview: The original application that was used as the model for this demonstration was the ASP.NET Commerce Starter Kit (CSVS) demo from Microsoft. The

More information

Visual Studio.NET Database Projects

Visual Studio.NET Database Projects Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project

More information

HIRSCH Velocity Web Console Guide

HIRSCH Velocity Web Console Guide HIRSCH Velocity Web Console Guide MAN012-1112 HIRSCH Velocity Web Console Guide MAN012-1112, November 2012 Version 1.1 Copyright 2012 Identive Group. All rights reserved. ScramblePad and ScrambleProx are

More information

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved.

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved. Version 3.2 User Guide Copyright 2002-2009 Snow Software AB. All rights reserved. This manual and computer program is protected by copyright law and international treaties. Unauthorized reproduction or

More information

The basic steps involved in installing FLEETMATE Enterprise Edition and preparing it for initial use are as follows:

The basic steps involved in installing FLEETMATE Enterprise Edition and preparing it for initial use are as follows: Overview Thank you for choosing to install FLEETMATE, low-cost fleet maintenance management software that can help you become proactive with fleet maintenance, extend the useful life of your fleet assets,

More information

Windows Azure Support in Kentico CMS 5.5 R2

Windows Azure Support in Kentico CMS 5.5 R2 Windows Azure Support in Kentico CMS 5.5 R2 Table of Contents Introduction and prerequisites... 3 Deployment to Windows Azure (using a prepared package)... 4 Conversion of an existing Kentico website to

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information