OVERVIEW 256 DELIVERING LOGIN SPECIFIC DATA IN COGNOS. Graceland University James M Mueller

Size: px
Start display at page:

Download "OVERVIEW 256 DELIVERING LOGIN SPECIFIC DATA IN COGNOS. Graceland University James M Mueller"

Transcription

1 OVERVIEW When a user logs into Cognos their information can be captured by the system. That information can be used by Cognos Authors to provide a myriad of options. Information Specific to the User Displaying who is running a report Providing optional Security Not all options are available in every situation and the goal of this document is to provide a variety of options to choose from. This document was designed around having Microsoft Active Directory as the LDAP and Jenzabar s CX as the ERP. If you have other systems, some modifications may need to be made, and some options may not work/apply. Graceland University James M Mueller This document is freely distributable and reproduceable as long as the authoring information is kept with it.

2 Contents OVERVIEW... 1 Contents... 2 Cognos Session Parameters Overview : Session Parameter Types : Using Session Parameters : Special Session Parameters... 3 Importing the Session Parameters a: User ID Number - Quickest Method (Custom LDAP) b: User ID Number - Longest Method (Standard CX)...5 2: Create the Calculations... 6 Using the Session Parameters : Access to Session Parameters : Prebuilt Filters... 7 Notes:... 8 Appendix... i Option 1: Session Parameter Calculations... ii Option 2: Session Parameter Filters...iv Option 3: Using aliases of userid_table... v 2 Graceland University James M Mueller

3 JAM 2011 Cognos Session Parameters Overview All of the options that are outlined in this document depend on a feature of Cognos: Session Parameters. Session Parameters (a type of Cognos Macro) is information that Cognos retrieves from the Authentication Provider when a user initially logs into Cognos Connection. Cognos Macros are the method with which that information can be shared back to the user and/or to CX. Why? Having this information can help give users information that is directly pertinent to them without their need to interact with a report. It also can prevent users from seeing information that isn t pertinent to them, allowing a type of security. But to do all of this we need to learn how to use Session Parameters, and a bit about Cognos Macros Macros are discussed in the Framework Manager help file, and are available in the Expression definition editor in Framework Manager under the Parameters Tab as Macro Functions and Session Parameters. All Macros that work in Framework Manager are also able to work in Report Studio. However they do not have syntax help, so an understanding of Macros will be required to use them. 1: Session Parameter Types These are the built in Session Parameters that are covered in this document. account.personalinfo.username account.personalinfo. account.personalinfo.givenname account.personalinfo.surname 2: Using Session Parameters All Macros begin and end with a # (hash) Like all Data Expressions, any Expression using a Macro must have good syntax. All Session Parameters will add the $ in front of them when you drag them into the Expression definition. If you manually type them you will need to make sure you add this. All Session Parameters must return in a format Cognos supports. 1 Integers and Dates need no adjustment 2 Strings need to be wrapped in sq() 3 Example: #sq($account.personalinfo.surname)# 3: Special Session Parameters The biggest help of all would to be able to pull the id from id_rec for the user who is logged into Cognos straight from the Authentication source. a) First you will need to add to your LDAP a method of storing id for every user. This document does not cover how to do this. b) Follow instructions from ibm.com/support/docview.wss?uid=swg on how to add the field to your Session Parameters. Name this field: usercxid c) After completing these steps the next time you open Framework Manager and open the Session Parameters in the Expression definition editor your Parameter will be listed. Graceland University James M Mueller 3

4 Importing the Session Parameters User ID Number will provide Report Studio authors the ability to filter reports based on who is logged in. To add this for Query Studio authors, filters using User Logged-In: Id will need to be created in Framework Manager in the packages wherever they make sense. The other Session Parameters will provide authors the ability to display information about the person running a report ON the report. This is useful for knowing who ran and printed a report. Two options are provided for getting Id to authors. The first requires id being loaded into LDAP and the second uses userid_table in CX. Each of the two options provides pros and cons about their usage. You will only need to do one. From a reporting / Cognos view, the best is 1a. 1a: User ID Number - Quickest Method (Custom LDAP) By getting id from id_rec into your LDAP (as outlined in Cognos Session Parameters Overview step 3) you will be able to quickly set up Cognos to be able to filter reports based on the user logged in. Advantages: This allows you to not have Cognos go back to CX to figure out who is logged in to create filters. This means there is a zero impact on the database or on speed of a report using this field. Drawbacks: You will need to have a process to get ID into your LDAP. This process may take time to set up, and this document doesn t provide support for how to get id into LDAP, just how to get it back out if it s there. 1: Standalone Folder Why? Having your Session Parameters stored in a separate Namespace and a separate Folder will allow you to only include the Session Parameters in Packages that you want them included in. a) Open your Project in Framework Manager b) Create the Namespace Extras 1 Click the [+] by CX Namespace 2 Right-click the Packaged Views Namespace 3 Click Create and then click Namespace 4 Name the new Namespace Extras c) Create the Folder Session Parameters 1 Right-click the Extras Namespace 2 Click Create and then click New Folder 3 Name the new Folder Session Parameters 4 Click the Finish button on the next window 2: Creating the Calculation Why? You will need this calculation to give to your authors to use. Report Studio authors will use this to create filters. Query Studio authors will require you to set up filters. a) Right-click the Folder Session Parameters and click Create and then click Calculation b) Name the calculation User Logged-In: ID Number c) Under Available Components: click on the tab Parameters d) Click the [+] by Session Parameters e) Drag account.personalinfo.usercxid to the Expression Definition f) Click the OK button g) Change the Usage from Fact to Identifier 4 Graceland University James M Mueller

5 JAM b: User ID Number - Longest Method (Standard CX) If you are unable to use Custom Session Parameters to bring in ID, you can still get a similar end result using the system as is to be able to filter reports based on the user logged in. Advantages: This does not require custom changes to your LDAP. Drawbacks: This requires Cognos to go to CX to get ID, increasing the load on CX and impacting the speed of Cognos reports. Also it may make you uncomfortable due to its odd join and can makes report SQL more complex. 1: Standalone Folder Why? Having your Session Parameters stored in a separate Namespace and a separate Folder will allow you to only include the Session Parameters in Packages that you want them included in. a) Open your Project in Framework Manager b) Create the Namespace Extras 1 Click the [+] by CX Namespace 2 Right-click the Packaged Views Namespace 3 Click Create and then click Namespace 4 Name the new Namespace Extras c) Create the Folder Session Parameters 1 Right-click the Extras Namespace 2 Click Create and then click New Folder 3 Name the new Folder Session Parameters 4 Click the Finish button on the next window 2. Create User ID Table: Logged In a) Copy User ID Table 1 Click the [+] by Common Schema Tables then click the [+] by Common Schema Lookups 2 Right-click the User ID Table Query Subject and Click Edit and then click Copy 3 Right-click the Common Data Source View Namespace and click Edit and then click Paste 4 Rename the new User ID Table Query Subject to User ID Table: Logged In b) Making the Filter 1 Double click the User ID Table: Logged In Query Subject 2 Click the Filters tab 3 Click the Add button 4 Name the Filter User Logged-in: Username 5 Drag Username to the Expression definition 6 Type after it the = symbol 7 Under Available Components: click on the tab Parameters 8 Click the [+] by Session Parameters 9 Drag account.personalinfo.username to the Expression Definition 10 Since this is a String we need to put inside the ## the String format:sq() Should now read the same as to the right 11 Click the OK Button 12 Click the OK Button 2.b10 Expression Definition [Extras].[User ID Table: Logged In].[ Username] = #sq($account.personalinfo.username)# Graceland University James M Mueller 5

6 3. Make the Join to id_rec Why? To be able to use the logged in information with a lot of fields in Cognos without allowing cross-joins we need to make a join to id_rec (which joins to most tables in Cognos). We don t want the join to affect data, so we make it have a strange join. a) Click on ID Record and ctrl-click on User ID Table: Logged in b) Click on the menu item Actions and then click Create and then click Relationship c) Create the Link (if Username is not SSN) 1 Select Social Security Number from ID Record 2 Select Username from User ID Table: Logged in 3 Set both Cardinalities to Set the Operator to <> d) Create the Link (if Username is SSN) 1 Select Name from ID Record 2 Select Username from User ID Table: Logged in 3 Set both Cardinalities to Set the Operator to <> e) Click the OK Button 4: Creating the Calculation Why? You will need this calculation to give to your authors to use. Report Studio authors will use this to create filters. Query Studio authors will require you to set up filters. a) Right-click the Folder Session Parameters and click Create and then click Calculation b) Name the calculation User Logged-In: ID Number c) Click the [+] by Common Schema Tables then click the [+] by Common Data Source View then click the [+] by User ID Table: Logged In d) Drag ID - Database to the Expression Definition e) Click the OK button f) Change the Usage from Fact to Identifier (see 1a:2.g for an image) 2: Create the Calculations a) Right-click the Folder Session Parameters and click Create and then click Calculation b) Name the calculation User Logged-In: Username c) Under Available Components: click on the tab Parameters d) Click the [+] by Session Parameters e) Drag account.personalinfo.username to the Expression Definition f) Since this is a String we need to put inside the ## the String format:sq() Should now read #sq($account.personalinfo.username)# g) Repeat steps b-g for each Session Parameter you want to include as per the chart to the right. 2.g Session Parameters account.personalinfo.username account.personalinfo. account.personalinfo.givenname account.personalinfo.surname User Logged-In: Username User Logged-In: User Logged-In: First Name User Logged-In: Last Name 6 Graceland University James M Mueller

7 Using the Session Parameters JAM 2011 After importing the Session Parameters in, you will need to create ways for authors to be able to use them. 1: Access to Session Parameters You may want to prevent certain Packages from having access to the Session Parameters so we set them up in their own folder. Now you need to choose which Packages should have access and give it to them. a) Add the Session Parameters Folder to the Package Definition of the Packages that you want to have access to it. 1 Click the [+] by Packages 2 Double-click the Package you want to add the folder to. Note: This takes a while to load. 3 The Package Definition window will open. 4 Click the [+] by the Extras Namespace 5 Click the next to the Session Parameters Folder which changes it to 6 Click the OK button 7 Publish the Package b) Repeat step 2.h for each Package you want to include the Folder in. 2: Prebuilt Filters For Query Studio authors to use Session Parameters they need to be made into prebuilt filters. For these instructions we are going to use cnslr_id from adm_rec as the example of how to create these filters. a) Click the [+] by Packaged Views then click the [+] by Recruiting and Admissions Information then click the [+] by Admissions Processing then click the [+] by Admissions Processing Filters b) Right-click the Admission Application Filters Folder and Click Create and then click Filter c) Name the Filter Admission Counselor Logged-In d) Click the [+] by Admission Application e) Drag Counselor ID Number to the Expression definition. f) Type after it the = symbol g) Click the [+] by Extras then click the [+] by Session Parameters h) Drag User Logged-In: ID Number to the Expression Definition. Should now read the same as to the right i) Click the OK Button 1.a5 Including Folder 2.h Expression Definition [Admissions Processing].[Admission Application].[Counselor ID Number] = [Extras].[User Logged-In: ID Number] Graceland University James M Mueller 7

8 Notes: 8 Graceland University James M Mueller

9 JAM 2011 Appendix The original document is housed at: ement/cognos_power_users/public.jnz?portlet=referenc e_documents under the JAM 2011 File Group. While the main document outlines two options for how to capture login information from Cognos and use it to drive reports, they are not the only methods. Outlined on the following pages are three other options. They are not as robust and flexible as the ones in the main document, but if you are unwilling to dive into those, these may provide you viable options instead Option 1: Session Parameter Calculations: This outlines how to bring in just the Session Parameters without the use of userid_table or the Custom Session Parameter. It is the simplest way to use Session Parameters and requires the least amount of setup. However it may not have much use, and isn t very flexible. Option 2: Session Parameter Filters: If you want a light version of using Session Parameters to filter your data, without the larger impact of the main document, this will give you that information. Option 3: Using aliases of userid_table: If the strange join presented in the main document isn t something that you find comfortable to use, you can get a similar effect of filtering for user id numbers using these instructions. While they require a similar amount of work for Authors to use, the Framework Manager requires more work. Graceland University James M Mueller i

10 Option 1: Session Parameter Calculations If you want to make Session Parameters accessible by authors with the ease of drag and drop, you need to create them as Calculations in Framework Manager first. Advantages: Having Session Parameters in their Packages allows report authors (both Query and Studio) to use them without having to know the syntax (something their studios don t provide them help with). They can easily place them on the report, and in the case of Report Studio, use them for advanced layouts and filters. Drawbacks: Session Parameter Calculations cannot be used by Query Studio authors to create filters. For Query Studio authors more work is required and that is outlined in Option 2. 1: General Information Namespace Why? Having them stored in the General Information Namespace will allow all authors immediate access to the Session Parameters since all packages reference it. h) Open your Project in Framework Manager i) Create the Folder Session Parameters 1 Click the [+] by CX and then click the [+] by Packaged Views 2 Right-click the General Information Namespace 3 Click Create and then click Folder 4 Name the new Folder Session Parameters 5 Click the Finish button on the next window j) Create the Calculations 1 Right-click the Folder Session Parameters and click Create and then click Calculation 2 Name the calculation User Logged-In: Username 3 Under Available Components: click on the tab Parameters 4 Click the [+] by Session Parameters 5 Drag account.personalinfo.username to the Expression Definition 6 Since this is a String we need to put inside the ## the String format:sq() Should now read #sq($account.personalinfo.username)# k) Repeat step 1.c for each Session Parameter you want to include as per the chart to the right. 1.d Session Parameters account.personalinfo.username account.personalinfo. account.personalinfo.givenname account.personalinfo.surname User Logged-In: Username User Logged-In: User Logged-In: First Name User Logged-In: Last Name ii Graceland University James M Mueller

11 JAM : Standalone Folder Why? Having them stored in a separate Namespace and a separate folder will allow you to only include the Session Parameters in Packages that you want them included in. c) Open your Project in Framework Manager d) Create the Folder Session Parameters 1 Click the [+] by CX 2 Right-click the Packaged Views Namespace 3 Click Create and then click Namespace 4 Name the new Namespace Extras 5 Right-click the Extras Namespace 6 Click Create and then click New Folder 7 Name the new Folder Session Parameters 8 Click the Finish button on the next window e) Complete instructions 1.c and 1.d using this folder f) Add the Folder to the Package Definition of the Packages that you want to have access to it. 1 Click the [+] by Packages 2 Double-click the Package you want to add the folder to. Note: This takes a while to load. 3 The Package Definition window will open. 4 Click the [+] by the Extras Namespace 5 Click the next to the Session Parameters Folder which changes it to 6 Click the OK button 7 Publish the Package g) Repeat step 2.h for each Package you want to include the Folder in. 2.h5 Including Folder Graceland University James M Mueller iii

12 Option 2: Session Parameter Filters If you want to make Session Parameters accessible by all authors to quickly make filters on data items (especially useful if you are using Special Session Parameters from section 3 of Cognos Session Parameters Overview) you will need to create filters wherever you feel they are useful. Advantages: While a Report Studio author can create a filter from a Calculation, Query Studio does not offer that flexibility. To give them filters, you will need to create them in the Model at every place they are needed. From the Users viewpoint, this is simple to use, and that is its main benefit. To use the filter, they just have to drag it to their report. Drawbacks: Unless you are using Cognos Session Parameters Overview section 3 to pull in id_rec.id for the user logged in, this Option may not be useful. Adding each filter where it is needed can take some time. 1: Example For this example we are going to use the user name captured by Active Directory to dynamically filter vch_rec. Why? This sample works in the standard package because of the join from vch_rec to userid_table. We are using this sample not because it may be useful but because you can do it without having to have special changes to your model. a) Open your Project in Framework Manager and click the [+] by the CX Namespace. b) Click the [+] by Packaged Views then click the [+] by Finance Information then click the [+] by General Ledger Accounts then click the [+] by General Ledger Account Filter then click the [+] by Transaction Entry Filters c) Right-click on Journal Filters click Create and then click Filter d) Create the Filter 1 Name the Filter Journals Prepared by User Logged-In 2 Click the [+] by Transaction Entries and then click the [+] by Journals 3 Drag Journal Preparer Username to the Expression Definition 4 Type after it the = symbol 5 Under Available Components: click on the tab Parameters 6 Click the [+] by Session Parameters 7 Drag account.personalinfo.username to the Expression Definition 8 Since this is a String we need to put inside the ## the String format:sq() Should now read the same as to the right 9 Click the OK Button Note: If you have done Option 1, you could have used the Calculation field in your filter for steps 1.d7 and 1.d8, instead of retyping the Macro. There is no difference in how the filter will function. 1.d8 Expression Definition [Transaction Entries].[Journals].[Journal Preparer Username] = #sq($account.personalinfo.username)# iv Graceland University James M Mueller

13 JAM 2011 Option 3: Using aliases of userid_table If you are not using Cognos Session Parameters Overview section 3 to pull in id_rec.id for the user logged in, this Option is very useful. It allows you to get the id_rec.id from the userid_table by filtering it with a Session Parameter. Advantages: By getting the id number of the person logged in, we can unlock a lot of options for dynamically changing reports. This is because many tables in CX have fields we can link to. This Option s example is adm_rec.cnslr_id. Drawbacks: Every place that you will want to filter on the id of the user logged in, you will need to create a new alias of the query subject, and make a join. Then you will have to create a Filter as per Option 2. This can be time consuming. 1: Making the Master Query Subject First thing we need to do is to create a Query Subject that we can use again and again wherever it is needed. Why? Creating a master that we can reuse will help to minimize the amount of maintenance needed to update the Project and minimize the time needed to add new filters. c) Open your Project in Framework Manager d) Create the Folder User ID for Filtering 1 Right-click the CX Namespace 2 Click Create and then click Namespace 3 Name the new Namespace Extras 4 Right-click the Extras Namespace 5 Click Create and then click New Folder 6 Name the new Folder User ID for Filtering 7 Click the Finish button on the next window. e) Copy User ID Table 1 Click the [+] by Common Schema Tables then click the [+] by Common Schema Lookups 2 Right-click the User ID Table Query Subject and Click Edit and then click Copy 3 Right-click the User ID for Filtering Folder and click Edit and then click Paste f) Making the Filter 13 Double click the new User ID Table Query Subject 14 Click the Filters tab 15 Click the Add button 16 Name the Filter User Logged-in: Username 17 Drag Username to the Expression definition 18 Type after it the = symbol 19 Under Available Components: click on the tab Parameters 20 Click the [+] by Session Parameters 21 Drag account.personalinfo.username to the Expression Definition 22 Since this is a String we need to put inside the ## the String format:sq() Should now read the same as to the right 23 Click the OK Button 24 Click the OK Button Note: If you have done Option 1, you could have used the Calculation field in your filter for steps 1.d7 through 1.d10, instead of retyping the Macro. There is no difference in how the filter will function. 1.d10 Expression Definition [Extras].[User ID Table].[ Username] = #sq($account.personalinfo.username)# Graceland University James M Mueller v

14 2: Using the Master Query Subject Now that we have a master, we can create the aliases that we will use to make our joins wherever we need them. Why? We don t want to use the same Query Subject for every join because that could cause loops in our model and make errors in reports. a) Right-click the User ID Table Query Subject and click Create and then click Alias Shortcut b) Rename the Shortcut User ID Table: adm_rec c) Make the Relationship 1 Click the [+] by CX then click the [+] by Admissions Schema Tables then click the [+] by Admissions Data Source View 2 Click on the Admissions Records Query Subject and ctrl-click on the User ID Table: adm_rec Shortcut. 3 Click on the menu item Actions and then click Create and then click Relationship 4 Link Counselor ID Number and ID Database 5 Set the cardinality to 1..1 for both Query Subjects Why? Cognos does weird things when you use the 0..n and 1..n options. It does a stitched query that can cause reports to work wrong. Since we are just using this to make a filter, we don t need it to have a 1..n setting. 6 Click the OK button d) Create the Filter 1 Click the [+] by Packaged Views then click the [+] by Recruiting and Admissions Information then click the [+] by Admissions Processing then click the [+] by Admissions Processing Filters 2 Right-click the Admission Application Filters Folder and Click Create and then click Filter 3 Name the Filter Admission Counselor Logged- In 4 Click the [+] by Admission Application 5 Drag Counselor ID Number to the Expression definition. 6 Type after it the = symbol 7 Click the [+] by Extras then click the [+] by User ID for Filtering then click the [+] by User ID Table: adm_rec 8 Drag ID - Database to the Expression Definition. Should now read the same as to the right 9 Click the OK Button 2.d8 Expression Definition [Admissions Processing].[Admission Application].[Counselor ID Number] = [Extras].[User ID Table: adm_rec].[id - Database] vi Graceland University James M Mueller

OVERVIEW JICS ATTENDANCE REPORTING WITH COGNOS. Graceland University James M Mueller

OVERVIEW JICS ATTENDANCE REPORTING WITH COGNOS. Graceland University James M Mueller OVERVIEW The Jenzabar Internet Campus Solution (JICS) provides educators a chance to record attendance data about their classes. By combining this information with CX Data, robust analysis can be done

More information

Join Queries in Cognos Analytics Reporting

Join Queries in Cognos Analytics Reporting Join Queries in Cognos Analytics Reporting Business Intelligence Cross-Join Error A join is a relationship between a field in one query and a field of the same data type in another query. If a report includes

More information

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4 Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4 Copyright 2012 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign,

More information

Remote Desktop How to guide

Remote Desktop How to guide CaseMap Remote Desktop for Windows User Contents How to open Remote Desktop Connection and Login to the Terminal Server... 2 How to save your connection settings and create a shortcut on your desktop...

More information

Report on Configurable Fields in Business Intelligence

Report on Configurable Fields in Business Intelligence Report on Configurable Fields in Business Intelligence Business Intelligence Configurable Fields Reporting The Platform Configurability feature in PlanSource HCM enables you to add new fields to PlanSource

More information

OSR Administration 3.7 User Guide. Updated:

OSR Administration 3.7 User Guide. Updated: OSR Administration 3.7 User Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents Introduction... 1 Who should read this manual... 1 What s included in this

More information

Tutorial by Philemon Yalamu

Tutorial by Philemon Yalamu Date: 27 th March 204 Tutorial by Philemon Yalamu http://www.artech.com.pg/ Introduction Adobe Audition is a professional audio editing program that works well with other programs in the Adobe Creative

More information

Installation of Microsoft SQL Server 2012 Setup MwPharm++ database

Installation of Microsoft SQL Server 2012 Setup MwPharm++ database Installation of Microsoft SQL Server 2012 Setup MwPharm++ database Datum: 12/15/2015 Strana: 1 Title Installation of Microsoft SQL Server 2012 & Setup MwPharm++ DB Author George Dousa Document No. 1.02

More information

The QuickCalc BASIC User Interface

The QuickCalc BASIC User Interface The QuickCalc BASIC User Interface Running programs in the Windows Graphic User Interface (GUI) mode. The GUI mode is far superior to running in the CONSOLE mode. The most-used functions are on buttons,

More information

Prism. Installation Guide

Prism. Installation Guide Prism Installation Guide Copyright 2001 Jenazabar, Inc. You may print any part or the whole of this documentation to support installations of Jenzabar software. Where the documentation is available in

More information

QTD and Supporting Files Installation Instructions

QTD and Supporting Files Installation Instructions QTD and Supporting Files Installation Instructions April 2017 Quality Training Systems www.qualitytrainingsystems.com support@qualitytrainingsystems.com 2017, Quality Training Systems Contents Introduction...

More information

Tivoli Common Reporting V2.x. Reporting with Tivoli Data Warehouse

Tivoli Common Reporting V2.x. Reporting with Tivoli Data Warehouse Tivoli Common Reporting V2.x Reporting with Tivoli Data Warehouse Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM Corporation 2012 This

More information

Perceptive Nolij Web. Administrator Guide. Version: 6.8.x

Perceptive Nolij Web. Administrator Guide. Version: 6.8.x Perceptive Nolij Web Administrator Guide Version: 6.8.x Written by: Product Knowledge, R&D Date: June 2018 Copyright 2014-2018 Hyland Software, Inc. and its affiliates.. Table of Contents Introduction...

More information

Date : June 3, IBM Cognos Open Mic. Extensible Visualization to Cognos Active Reports IBM Corporation

Date : June 3, IBM Cognos Open Mic. Extensible Visualization to Cognos Active Reports IBM Corporation Date : June 3, 2014 IBM Cognos Open Mic Extensible Visualization to Cognos Active Reports IBM Cognos Open Mic Team Presentor Technical Panel Member Agenda - What is RAVE - Prerequisites - Download and

More information

Slide 1. Slide 2. Slide 3

Slide 1. Slide 2. Slide 3 Cognos is the reporting system for SMARTT. It is used to analyze program performance and student demographics. Cognos retrieves data stored in the SMARTT System to create reports that help users answer

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

Student Manual. Cognos Analytics

Student Manual. Cognos Analytics Student Manual Cognos Analytics Join Queries in Cognos Analytics Reporting Cross-Join Error A join is a relationship between a field in one query and a field of the same data type in another query. If

More information

Day 1 Agenda. Brio 101 Training. Course Presentation and Reference Material

Day 1 Agenda. Brio 101 Training. Course Presentation and Reference Material Data Warehouse www.rpi.edu/datawarehouse Brio 101 Training Course Presentation and Reference Material Day 1 Agenda Training Overview Data Warehouse and Business Intelligence Basics The Brio Environment

More information

Tivoli Common Reporting V2.x. Training on Security Permissions

Tivoli Common Reporting V2.x. Training on Security Permissions Tivoli Common Reporting V2.x Training on Security Permissions Preethi C Mohan Bhanu P Velampati IBM India Ltd. India Software Labs, Bangalore preethi.mohan@in.ibm.com bhanu.prathap@in.ibm.com Copyright

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Designer/Player 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 3 Who should read this manual... 3 What s included in this manual... 3 Symbols

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

What is CMS? How do I access my CMS site? How do I log into the CMS site? www1

What is CMS? How do I access my CMS site? How do I log into the CMS site? www1 What is CMS? CMS stands for Content Management System and it is a generic name for a web application used for managing websites and web content. Web content is documents, news, events, and images. MSN.com

More information

Display No Data Content for RAVE visualizations used in IBM Cognos Report Studio

Display No Data Content for RAVE visualizations used in IBM Cognos Report Studio Tip or Technique Display No Data Content for RAVE visualizations used in IBM Cognos Product(s): IBM Cognos 10.2.2 Area of Interest: Reporting 2 Display No Data Content for RAVE visualizations used in IBM

More information

Enhancements Guide. Applied Business Services, Inc. 900 Wind River Lane Suite 102 Gaithersburg, MD General Phone: (800)

Enhancements Guide. Applied Business Services, Inc. 900 Wind River Lane Suite 102 Gaithersburg, MD General Phone: (800) Enhancements Guide Applied Business Services, Inc. 900 Wind River Lane Suite 102 Gaithersburg, MD 20878 General Phone: (800) 451-7447 Support Telephone: (800) 451-7447 Ext. 2 Support Email: support@clientaccess.com

More information

EDITING AN EXISTING REPORT

EDITING AN EXISTING REPORT Report Writing in NMU Cognos Administrative Reporting 1 This guide assumes that you have had basic report writing training for Cognos. It is simple guide for the new upgrade. Basic usage of report running

More information

InsightSoftware.com. for Oracle E-Business Suite

InsightSoftware.com. for Oracle E-Business Suite for Oracle E-Business Suite Insight Version: 2012.2 for EBS Document Version: 1.0 Last Updated: November 28, 2012 Contents 1. General Information 3 Upgrading Information: Repository 3 Customer Service

More information

Admissions & Intro to Report Editing Participants Guide

Admissions & Intro to Report Editing Participants Guide IBM Cognos Analytics Admissions & Intro to Report Editing Participants Guide Welcome to Cognos - Admissions and Introduction to Report Editing! Today s objectives include: Gain a Basic Understanding of

More information

OSR Composer 3.7 User Guide. Updated:

OSR Composer 3.7 User Guide. Updated: OSR Composer 3.7 User Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents Introduction... 1 Who should read this manual... 1 What s included in this manual...

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Composer 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 2 Who should read this manual... 2 What s included in this manual... 2 Symbols and

More information

What s New in Cognos. Cognos Analytics Participant s Guide

What s New in Cognos. Cognos Analytics Participant s Guide What s New in Cognos Cognos Analytics Participant s Guide Welcome to What s New in Cognos! Illinois State University has undergone a version upgrade of IBM Cognos to Cognos Analytics. All functionality

More information

General Guidelines: SAS Analyst

General Guidelines: SAS Analyst General Guidelines: SAS Analyst The Analyst application is a data analysis tool in SAS for Windows (version 7 and later) that provides easy access to basic statistical analyses using a point-and-click

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

OneStop Reporting 4.5 OSR Administration User Guide

OneStop Reporting 4.5 OSR Administration User Guide OneStop Reporting 4.5 OSR Administration User Guide Doc. Version 1.2 Updated: 10-Dec-14 Copyright OneStop Reporting AS Contents Introduction... 1 Who should read this manual... 1 What s included in this

More information

Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager)

Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager) Contents Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager)... 2 Reports... 3 Add a report... 3 Run a report...15 Jobs...15 Introduction...15 Simple jobs....15 Bursting jobs....16 Data

More information

COGNOS (R) 8 GUIDELINES FOR MODELING METADATA FRAMEWORK MANAGER. Cognos(R) 8 Business Intelligence Readme Guidelines for Modeling Metadata

COGNOS (R) 8 GUIDELINES FOR MODELING METADATA FRAMEWORK MANAGER. Cognos(R) 8 Business Intelligence Readme Guidelines for Modeling Metadata COGNOS (R) 8 FRAMEWORK MANAGER GUIDELINES FOR MODELING METADATA Cognos(R) 8 Business Intelligence Readme Guidelines for Modeling Metadata GUIDELINES FOR MODELING METADATA THE NEXT LEVEL OF PERFORMANCE

More information

QUERY STUDIO. Transaction Detail by Department (Year to Date)

QUERY STUDIO. Transaction Detail by Department (Year to Date) QUERY STUDIO Transaction Detail by Department (Year to Date) Starting Screen Click MANAGE FILE Click MY PREFERENCES Whe you begin building your query, set your preferences to Preview with No Data. This

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

Creating the Data Layer

Creating the Data Layer Creating the Data Layer When interacting with any system it is always useful if it remembers all the settings and changes between visits. For example, Facebook has the details of your login and any conversations

More information

USING SOUNDMINER V4PRO - V4.5

USING SOUNDMINER V4PRO - V4.5 F V T E C H D O C USING SOUNDMINER V4PRO V4.5 So you re looking for some sound effects for your movie... Here is an introduction to using Soundminer, which will help you navigate our sound effects library

More information

Calculations that Span Dimensions

Calculations that Span Dimensions Tip or Technique Calculations that Span Dimensions Product(s): Report Studio, Crosstabs, Dimensional Expressions Area of Interest: Reporting Calculations that Span Dimensions 2 Copyright Copyright 2008

More information

Define the Slide Animation Direction on the deck control.

Define the Slide Animation Direction on the deck control. IBM Cognos Report Studio: Author Active Reports allows students to build on their Report Studio experience by using active report controls to build highly interactive reports that can be consumed by users.

More information

One Identity Manager User Guide for One Identity Manager Tools User Interface and Default Functions

One Identity Manager User Guide for One Identity Manager Tools User Interface and Default Functions One Identity Manager 8.0.1 User Guide for One Identity Manager Tools User Interface and Default Functions Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information

More information

Updating your reports when changes are applied to the reporting package

Updating your reports when changes are applied to the reporting package Dealing with Package Updates Updating your reports when changes are applied to the reporting package e.g. SSN Masking Packages aren t Perfect! Already, many yof the edelivered e Cognos os packages ages

More information

KB_SQL Release Notes Version 4.3.Q2. Knowledge Based Systems, Inc.

KB_SQL Release Notes Version 4.3.Q2. Knowledge Based Systems, Inc. KB_SQL Release Notes Version 4.3.Q2 Copyright 2003 by All rights reserved., Ashburn, Virginia, USA. Printed in the United States of America. No part of this manual may be reproduced in any form or by any

More information

Building reports using the Web Intelligence HTML Report Panel

Building reports using the Web Intelligence HTML Report Panel Building reports using the Web Intelligence HTML Report Panel Building reports using the Web Intelligence HTML Report Panel Copyright 2008 Business Objects. All rights reserved. Business Objects owns the

More information

Keep Track of Your Passwords Easily

Keep Track of Your Passwords Easily Keep Track of Your Passwords Easily K 100 / 1 The Useful Free Program that Means You ll Never Forget a Password Again These days, everything you do seems to involve a username, a password or a reference

More information

Setting up and Connecting to a MSSQL database

Setting up and Connecting to a MSSQL database Setting up and Connecting to a MSSQL database Setting Up MSSQL... 1 SQL Server Instance... 1 Why do we need socdbconnect and socadminuser?... 1 On the Client... 1 Creating an ODBC Data Source... 1 Setting

More information

Xton Access Manager GETTING STARTED GUIDE

Xton Access Manager GETTING STARTED GUIDE Xton Access Manager GETTING STARTED GUIDE XTON TECHNOLOGIES, LLC PHILADELPHIA Copyright 2017. Xton Technologies LLC. Contents Introduction... 2 Technical Support... 2 What is Xton Access Manager?... 3

More information

Getting started with the Teradata connector

Getting started with the Teradata connector Getting started with the Teradata connector This document provides instructions to quickly get you up and running connecting to Teradata in TIBCO Spotfire, using the Spotfire Teradata connector. The Spotfire

More information

Microsoft Access 2010

Microsoft Access 2010 www.jwalkonline.org/main michael@jwalkonline.org @MichaelJWalk Microsoft Access 2010 Part 3 Michael J. Walk It's about control: use advanced features of Access to control data entry, automate processes,

More information

CONFIGURING LDAP. What is LDAP? Getting Started with LDAP

CONFIGURING LDAP. What is LDAP? Getting Started with LDAP CONFIGURING LDAP In this tutorial you will learn how to manage your LDAP Directories within your EmailHosting.com account. We will walkthrough how to setup your directories and access them with your email

More information

COGNOS (R) 8 FRAMEWORK MANAGER USER GUIDE. Framework Manager User Guide Framework Manager 8.1

COGNOS (R) 8 FRAMEWORK MANAGER USER GUIDE. Framework Manager User Guide Framework Manager 8.1 COGNOS (R) 8 FRAMEWORK MANAGER USER GUIDE Framework Manager User Guide 01-08-2005 Framework Manager 8.1 Cognos(R) 8 Business Intelligence Readme Framework Manager User Guide USER GUIDE THE NEXT LEVEL OF

More information

Roadmap to UPK 3.1 Session #1 UPK 3.1 Practice Exercises. A Solbourne White Paper April 2008

Roadmap to UPK 3.1 Session #1 UPK 3.1 Practice Exercises. A Solbourne White Paper April 2008 Roadmap to UPK 3.1 Session #1 UPK 3.1 Practice Exercises A Solbourne White Paper April 2008 COPYRIGHT & TRADEMARKS Copyright 2008, Solbourne. The information contained in this document is subject to change

More information

Quick Guide to Installing and Setting Up MySQL Workbench

Quick Guide to Installing and Setting Up MySQL Workbench Quick Guide to Installing and Setting Up MySQL Workbench If you want to install MySQL Workbench on your own computer: Go to: http://www.mysql.com/downloads/workbench/ Windows Users: 1) You will need to

More information

For many people, learning any new computer software can be an anxietyproducing

For many people, learning any new computer software can be an anxietyproducing 1 Getting to Know Stata 12 For many people, learning any new computer software can be an anxietyproducing task. When that computer program involves statistics, the stress level generally increases exponentially.

More information

Teradata SQL Features Overview Version

Teradata SQL Features Overview Version Table of Contents Teradata SQL Features Overview Version 14.10.0 Module 0 - Introduction Course Objectives... 0-4 Course Description... 0-6 Course Content... 0-8 Module 1 - Teradata Studio Features Optimize

More information

UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab

UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab Description IT Analytics has a diverse and powerful way of displaying data to your users. In this lab, you will learn how to

More information

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2)

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2) TRAINING & REFERENCE murach s Oracle SQL and PL/SQL (Chapter 2) works with all versions through 11g Thanks for reviewing this chapter from Murach s Oracle SQL and PL/SQL. To see the expanded table of contents

More information

Evolution Query Builder Manual

Evolution Query Builder Manual Evolution Query Builder Manual PayData A Vermont Company Working for You! Page 1 of 37 Report Writer Introduction... 3 Creating Customized Reports... 4 Go to Client RW Reports... 4 Reports Tab... 4 Details

More information

Learning vrealize Orchestrator in action V M U G L A B

Learning vrealize Orchestrator in action V M U G L A B Learning vrealize Orchestrator in action V M U G L A B Lab Learning vrealize Orchestrator in action Code examples If you don t feel like typing the code you can download it from the webserver running on

More information

If your Mac keeps asking for the login keychain password

If your Mac keeps asking for the login keychain password If your Mac keeps asking for the login keychain password The password of your macos user account might not match the password of your login keychain. Either create a new login keychain or update it with

More information

Shawn Dorward, MVP. Getting Started with Power Query

Shawn Dorward, MVP. Getting Started with Power Query Shawn Dorward, MVP Getting Started with Power Query Meet our Presenter InterDyn Artis specializes in the implementation, service and support of Microsoft Dynamics Enterprise Resource Planning (ERP) and

More information

Lime Survey is a survey tool hosted internally at the University.

Lime Survey is a survey tool hosted internally at the University. Lime Survey What is LimeSurvey? Lime Survey is a survey tool hosted internally at the University. Why would I use LimeSurvey? Compared with other tools like Course Resources or Microsoft Forms, Lime Survey

More information

prepared by Kirk Dunphy

prepared by Kirk Dunphy prepared by Kirk Dunphy Discussion Topics Part I Business Intelligence and Analytics Reports Cognos Business Intelligence What is happening? Why did it happen? What is going to happen? reporting analysis

More information

IBM Cognos Analytics: Author Reports Advanced (v11.0)

IBM Cognos Analytics: Author Reports Advanced (v11.0) Course Guide IBM Cognos Analytics: Author Reports Advanced (v11.0) Course code B6059 ERC 2.0 IBM Training Preface April, 2016 NOTICES This information was developed for products and services offered in

More information

Security Permissions in TCR 2.x

Security Permissions in TCR 2.x Security Permissions in TCR 2.x Dan Krissell November 10, 2011 Contents Overview... 2 Authentication... 2 Authorization... 2 Where do I find my users and groups to assign access?... 3 How to implement

More information

Working with SQL SERVER EXPRESS

Working with SQL SERVER EXPRESS Table of Contents How to Install SQL Server 2012 Express Edition... 1 Step 1.... 1 Step 2.... 2 Step 3.... 3 Step 4.... 3 Step 5.... 4 Step 6.... 5 Step 7.... 5 Step 8.... 6 Fixing Database Start-up Connection

More information

Upgrading Access FactoryMaster

Upgrading Access FactoryMaster Upgrading Access FactoryMaster Copyright 2014 Access UK Ltd All rights reserved consulting software solutions www.theaccessgroup.com Table of Contents Upgrading Access FactoryMaster... 1 Part 1: Upgrade

More information

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge.

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge. IBM Cognos Analytics Create a Crosstab The following instructions cover how to create a crosstab report in IBM Cognos Analytics. A crosstab is a report type in Cognos that displays an analytical look at

More information

5. A small dialog window appears; enter a new password twice (this is different from Dori!) and hit Go.

5. A small dialog window appears; enter a new password twice (this is different from Dori!) and hit Go. Installing Wordpress from JMA Lab to JMA Server 1. Take note these instructions are streamlined for the JMA lab they can t be performed in this fashion from home! 2. Wordpress is a database driven web

More information

Perceptive Business Insight

Perceptive Business Insight Perceptive Business Insight Advanced Design and Setup Guide Version: 7.0.x Written by: Product Knowledge, R&D Date: August 2016 2015 Perceptive Software. All rights reserved. Lexmark and Perceptive Software

More information

Rocket City Cognos User Group Workshop August 23, Jonathan McKnight Dynetics, Inc.

Rocket City Cognos User Group Workshop August 23, Jonathan McKnight Dynetics, Inc. Rocket City Cognos User Group Workshop August 23, 2012 Jonathan McKnight Dynetics, Inc. Jonathan.mcknight@dynetics.com Application Analyst at Dynetics, Inc. since 2007 Worked with Cognos products for ten

More information

Installation and Configuration Guide

Installation and Configuration Guide Senturus Analytics Connector Version 2.2 Installation and Configuration Guide Senturus Inc. 533 Airport Blvd. Suite 400 Burlingame CA 94010 P 888 601 6010 F 650 745 0640 2017 Senturus, Inc. Table of Contents

More information

What s New in SAS Studio?

What s New in SAS Studio? ABSTRACT Paper SAS1832-2015 What s New in SAS Studio? Mike Porter, Amy Peters, and Michael Monaco, SAS Institute Inc., Cary, NC If you have not had a chance to explore SAS Studio yet, or if you re anxious

More information

Linking Reports to your Database in Crystal Reports 2008

Linking Reports to your Database in Crystal Reports 2008 Linking Reports to your Database in Crystal Reports 2008 After downloading and saving a report on your PC, either (1) browse-to the report using Windows Explorer and double-click on the report file or

More information

Volume NATIONAL GUARD YOUTH CHALLENGE PROGRAM. Cadet Tacking Database Operations Manual

Volume NATIONAL GUARD YOUTH CHALLENGE PROGRAM. Cadet Tacking Database Operations Manual Volume 1 NATIONAL GUARD YOUTH CHALLENGE PROGRAM Cadet Tacking Database Operations Manual NATIONAL GUARD YOUTH CHALLENGE PROGRAM Cadet Tracking Database Operations Manual Table of Contents Table of Contents...

More information

IBM Cognos Framework Manager: Design Metadata Models (V10.2)

IBM Cognos Framework Manager: Design Metadata Models (V10.2) Kod szkolenia: Tytuł szkolenia: B5252PL IBM Cognos Framework Manager: Design Metadata Models (V10.2) Dni: 5 Opis: Course materials for this course are available in: English French German Spanish (Spain)

More information

MICROSOFT DYNAMICS CRM

MICROSOFT DYNAMICS CRM MICROSOFT DYNAMICS CRM 2013-2016 Table of Contents Microsoft Dynamics 2013-2015... 3 Quick Start Guide... 4 Videos...11 Microsoft Dynamics CRM 2013-2015 Overview Video...12 The CommuniGator Integration

More information

ActiveVOS Fundamentals

ActiveVOS Fundamentals Lab #12 Page 1 of 9 - ActiveVOS Fundamentals ActiveVOS Fundamentals Lab #12 Adding a People Activity to the Process Lab #12 Page 2 of 9 - ActiveVOS Fundamentals Lab Plan In this lab we will add a Human

More information

Contents 1. OVERVIEW GUI Working with folders in Joini... 4

Contents 1. OVERVIEW GUI Working with folders in Joini... 4 Joini User Guide Contents 1. OVERVIEW... 3 1.1. GUI... 3 2. Working with folders in Joini... 4 2.1. Creating a new folder... 4 2.2. Deleting a folder... 5 2.3. Opening a folder... 5 2.4. Updating folder's

More information

COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM)

COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM) COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM) GETTING STARTED Cognos ReportNet Getting Started 07-05-2004 Cognos ReportNet 1.1MR1 Type the text for the HTML TOC entry Type the text for the HTML

More information

SQLMap Editor. Summary. Description. Display. Main features. SQLMap Tree

SQLMap Editor. Summary. Description. Display. Main features. SQLMap Tree SQLMap Editor Summary The SQLMap Editor is a tool for conveniently editing SQL map files. Knowledge of XML syntax is not required in order to use the editor s form UI to create SQL map files. The editor

More information

GoPrint Server Migration

GoPrint Server Migration GoPrint Server Migration The following steps walks you through migrating a current GoPrint system to a new Windows server focusing on migrating the current database as well as keeping the same server name.

More information

Kermit 95 SSH Installation Instructions

Kermit 95 SSH Installation Instructions Kermit 95 SSH Installation Instructions Kermit 95 is a licensed product, not free software, and its use with WordStock is licensed as well. If you re installing Kermit 95 on a computer which is replacing

More information

Reading Sample. Creating New Documents and Queries Creating a Report in Web Intelligence Contents. Index. The Authors

Reading Sample. Creating New Documents and Queries Creating a Report in Web Intelligence Contents. Index. The Authors First-hand knowledge. Reading Sample In this sample chapter, you l l start in Chapter 2 by creating your first document and query in SAP BusinessObjects BI. In this process, we ll explore the query panel,

More information

GENERAL NAVIGATION REFERENCE GUIDE FOR BANNER 7.X

GENERAL NAVIGATION REFERENCE GUIDE FOR BANNER 7.X GENERAL NAVIGATION REFERENCE GUIDE FOR BANNER 7.X Table of Contents I. Banner Basics A. Launching Banner...1 B. Main or General Menu...2 C. Setting Personal Preferences...3 D. My Links Customization of

More information

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server.

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server. CODD SERVER ACCESS INSTRUCTIONS OVERVIEW Codd (codd.franklin.edu) is a server that is used for many Computer Science (COMP) courses. To access the Franklin University Linux Server called Codd, an SSH connection

More information

MITEL. Live Content Suite. Mitel Live Content Suite Installation and Administrator Guide Release 1.1

MITEL. Live Content Suite. Mitel Live Content Suite Installation and Administrator Guide Release 1.1 MITEL Live Content Suite Mitel Live Content Suite Installation and Administrator Guide Release 1.1 NOTICE The information contained in this document is believed to be accurate in all respects but is not

More information

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2 IBM Cognos Analytics Welcome to Introduction to Cognos! Today s objectives include: Gain a Basic Understanding of Cognos View a Report Modify a Report View a Dashboard Request Access to Cognos Table of

More information

Sage Intelligence: Report Writing Methodology Agenda

Sage Intelligence: Report Writing Methodology Agenda Sage Intelligence: Report Writing Methodology Agenda Report Structure Report Writing Methodology Report Writing Best Practices The purpose of this webinar is to provide the best possible guidelines on

More information

If this is the first time you have run SSMS, I recommend setting up the startup options so that the environment is set up the way you want it.

If this is the first time you have run SSMS, I recommend setting up the startup options so that the environment is set up the way you want it. Page 1 of 5 Working with SQL Server Management Studio SQL Server Management Studio (SSMS) is the client tool you use to both develop T-SQL code and manage SQL Server. The purpose of this section is not

More information

A report like this could help sales people or marketers to determine which organizations should be targeted in future sales and product promotions.

A report like this could help sales people or marketers to determine which organizations should be targeted in future sales and product promotions. Creating an OMS Profile Score Report Introduction Sitecore Analytics has a number of existing reports that can be used out of the box, such as Top Landing Pages and Latest Human Sessions. Although you

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

More information

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9.

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9. Page 1 of 71 This section describes several common tasks that you'll need to know in order to use Creator successfully. Examples include launching Creator and opening, saving and closing Creator documents.

More information

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS)

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) Installation Guide NEC NEC Corporation October 2010 NDA-30362, Revision 15 Liability Disclaimer NEC Corporation reserves the right

More information

Using the New UCOP UAT Validation Reports for Graduate Admissions

Using the New UCOP UAT Validation Reports for Graduate Admissions To access the new UAT validation reports in Cognos for Graduate Admissions data, please follow the instructions outlined below: 1. Copy and paste the following link into your browser - http://data.ucop.edu.

More information

A Guide to CMS Functions

A Guide to CMS Functions 2017-02-13 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Contents 1 INTRODUCTION... 3 1.1 Who Should Read This Guide 3 1.2 What You Will Learn 3 2 WHAT IS A CMS

More information

EMIS - Excel Reference Guide

EMIS - Excel Reference Guide EMIS - Excel Reference Guide Create Source Data Files Create a Source Data File from your Student Software program. Current Year (valid as of the day pulled) Previous Year (used when reviewing data that

More information

Ten Things You ve Gotta Try in LogMeIn Rescue

Ten Things You ve Gotta Try in LogMeIn Rescue Ten Things You ve Gotta Try in LogMeIn Rescue Ten Things You ve Gotta Try New to LogMeIn Rescue? This guide will get you started. Tip: Complete how-to reference is available at help.logmein.com. Do this

More information

Maximizing the Power of Excel With Macros and Modules

Maximizing the Power of Excel With Macros and Modules Maximizing the Power of Excel With Macros and Modules Produced by SkillPath Seminars The Smart Choice 6900 Squibb Road P.O. Box 2768 Mission, KS 66201-2768 1-800-873-7545 www.skillpath.com Maximizing the

More information