2

Size: px
Start display at page:

Download "2"

Transcription

1 1

2 2

3 3

4 4

5 5

6 6

7 Sample prompt page layout. There are three HTML items. The first item is used to open a div tag, the second item closes the tag and holds the function script code, finally, the third item is used to replace the Finish button. 7

8 8

9 9

10 10

11 1. This section actually creates the button on the page. The button is named FinishButton2 so that we can call it. The only action attached is onclick it will call the CountSelected() script created instead of doing the normal finish button action. 2. This section scripts the button so that it will behave just like a normal Cognos Finish button. If we didn t add this, the button wouldn t have the enable/disable functionality tied to required prompts. Adding this, the prompt will only be enabled when all required prompts have been answered, just like using the normal Finish button. 3. To use this finish button function, we need to call the prompt button object. However, the prefix value ocv is different depending on how the report is called, it uses a different prefix for Report Studio, Interactive Cognos Viewer, and Batch Cognos Prompts, so we need to call the object to know what prefix to use. 4. This final section ties this functionality to the new Finish Button created above. 11

12 The user comes to the prompt page, sees the prompt and just automatically selects Select All to quickly move on to the report. However, when they click on Finish, the report does not run, and instead they get an alert telling them they selected too many values and they must only select 10 items or less. They go back to the prompt, deselect everything, and only pick a handful of items this time. On clicking finish the report now runs as expected. The user could keep hitting Finish all they want, but the report will not run until they satisfy the condition we defined. 12

13 1. Open the script and declare it as javascript. 2. Create the function, CountSelected() 3. Grab the prompt object we surrounded with the DIV tag. 4. Grab the input part of the object that will store the user selections. 5. Here we will count how many of the items the user has checked. 6. We now test this value, we are using less than 11 so that the user must only pick up to 10, this where we could easily change how many objects a user can select. 7. If the test is true, then the Finish action will be run, the same as clicking on the Finish button normally. 8. If the test didn t pass, the alert will pop up, and the Finish action will not be called, and can t be forced, until the user limits their selection. 13

14 Here, a user has a picklist box in which they can select any number of objects. They do a drag click on a bunch of objects and click finish. The alert comes up saying they selected 22 items and they must select 10 or less. They go back to the prompt, and select a correct number of items, then click on Finish. 14

15 Same basic script as the checkbox previously, with one major change. Since this is a different prompt, the tag name is different 1. In this case, once we grabbed the prompt object, we find the select tag, this one holds the prompt items, we then count the items in this array that have been selected. 15

16 Here is a Search and Select Prompt. A user enters the wildcard value of % and gets every possible member in the Results box. The user then does a drag select and adds a bunch of those elements to the choices box. However, when they click on finish, they are greeted with our now familiar alert box saying they have too many items selected. They go back, remove a lot of choices, leaving a correct number, click on Finish and the report runs. 16

17 1. This prompt is slightly different, no need to count the items, the OPTION element is an array of the records added to the selection box. 2. We check the length of values in this array and that gives us directly the count of items the user has selected and this value can now be tested. 17

18 This example has two different prompts, but they are each still limited to a selection of 10 or less. The user selects all in both prompts, but when the click on Finish, an alert box pops up to tell them they have more than 10 items selected in the checkbox prompt. They click OK, and another alert pops up to let them know that they have more than 10 items selected in the picklist prompt. They click OK and the final alert pops up informing the user that they need to fix the prompts first and then click on Finish again. They fix the picklist prompt, click on finish, but the checkbox prompt still fails, and they are informed to fix the prompts again. This time they fix the checkbox prompt as well, click on finish and the report runs. 18

19 Here is the prompt page for the Multiple Prompts. As before, the prompts are surrounded with HTML Elements, however, there is also a new one. The first element creates the div tag, the second element closes it and has the script to check this prompt. The third element creates another div tag with a different name, and the fourth element closes this div and has the script to check this prompt. The new, fifth element, has the script to get the return counters from the individual prompt scripts and determine if the prompts are good or not. The sixth element is our standard finish button. 19

20 1. A descriptive name for the functions around each prompt to be checked. 2. Don t check the value, just pass the value in a return. 20

21 1. A new function and a new descriptive name 2. Find and count the selected elements 3. Pass this value to the calling function 21

22 1. This function will check that all the prompts are good and then call the prompt action finish correctly. This is the function name to be called in the Finish button. 2. These variables set how many selections are good in the prompts, and how many prompts to be checked. We are only using two for demo purposes, but can set as many as needed for the prompt page. 3. This prompt will hold the number of good prompts. 4. Call the first prompt function and get back the number of checked values. 5. Call the second prompt function and get back the number of selected values. 6. This checks to see if the first prompt is limited correctly. 7. This checks to see if the second prompt is limited correctly. 8. This checks how many prompts are good, and finishes if they match the number of prompts, else it asks the user to fix the prompts. 22

23 23

24 In this example we have two prompts, one of them MUST be answered. Try to click finish and the alert pops up, answer one of the prompts, the report runs, can even answer both prompts, and the report shows up, the only limit is that at least one of the prompts is answered. 24

25 Like the other Multiple prompts page, each prompt is surrounded with HTML elements, the left tag creates the div tag, the right one closes the tag and runs the script to check how many items are selected. The fifth element will then check to make sure all the constraints are met on this prompt page, and finally the last element will create the Finish button. 25

26 The script looks the same, finding the element with the selection and counting how many elements are checked, then returning it back in Counter. 26

27 Again, this script looks the same as before, counting the objects and returning the count in Counter2. 27

28 1. The prompts used before to define the number of prompts to check, and the limit values for those prompts. 2. This new variable sets how many prompts are allowed to be answered, can be set to a value of 1 if you only want 1 prompt, up to the number of prompts on the page. 3. This new variable determines how many prompts MUST be answered. Can be set to 1 or more to require some prompts be answered, can be set to 0 to allow no prompts be answered. 4. These call the check prompts to determine how many selections were made. 5. These will check to see if the user answered too many prompts and set the good prompt counter. 28

29 1. These will check the prompt counters to determine if the prompts were answered. It will update the answered prompts counter for each prompt that was answered. 2. This will check to see if the answered prompts is larger than the number of answered prompts, if they answered too many, it will alert the user, else it will update the good prompt counter. 3. This will check to see if they answered enough prompts. If they didn t answer enough, it will alert the user and check the good prompt counter. 4. This will check to make sure the prompts were all answered correctly. It uses the number of prompts value, and adds two for the max and min answered prompt conditions. 29

30 In this example, there are two prompts, only one prompt is allowed, also, the prompts themselves are limited to only 10 selections. I pick values in both prompts, click finish and the error pops up. I then lose one, but go ahead and pick all the selections in the first one, and again it errors out. I only pick a couple in the first prompt, and it runs. I try it again, this time I don t pick any values, and again it runs, this is because I only set it to allow a maximum, but not a minimum. 30

31 Here is a truncated version of the same script used in the Multiple Prompts One is Required. The script is the same, we only adjust the variable values. 1. Here we set that only 1 prompt can be answered. 2. Here we say that there are 0 prompts required. 31

32 32

33 This example shows auto cascading prompts. There is a country filter, and then a radio filter. The user can select countries, up to three, and then either choose the Retailers in that Country to pick from, or the Sales Branches. This list of Retailers or Sales Branches will change as the user adds/removes countries. I search all countries, then I choose retailers, and the retailers prompt shows up, but empty. I double-click on a country, and the prompt is populated. I then click on a country and click on Insert, the prompt is updated. I click on Sales Branches, cause I want to search by those instead, and the prompts is changed. I add a couple more countries, and I get the alert that only 3 is allowed, I click on a country and click on remove and the prompt is again automatically updated. 33

34 (video) This shows the prompt page, and the bounding prompts. For the search and select, it looks normal, the div tag and the script to check the values. The radio box is slightly different, all that is happening is to bound the object in the div tag. Finally, the finish button script looks normal, but there is another prompt box next to the finish button that is new. 34

35 (video) Here we see some of the differences, the two prompts in the same table cell have render variables. The different prompts will render depending on what is picked in the Radio Box. Finally, this new HTML item has some different script code, this handles telling the page when to reprompt correctly. 35

36 This script sets up the conditions to watch on the page. 1. This new script is like the normal CountSelected(), it will test the number of countries selected whenever the page is reprompted, but it will NOT call the finish action as the user probably isn t done. 2. This function will call the CountSelection() and reprompt the page. 3. This function will add the onclick(testfunc()) to the radio button, reprompt whenever the radio button is clicked to signify a different radio prompt. 4. This function will add the onclick(testfunc()) to the Insert button, reprompt whenever a item is inserted into the selection list. 5. This function will add the ondblclick(testfunc()) to the results box, reprompt whenever a country is added to the selection with a double click. 6. This function will add the onclick(testfunc()) to the Remove button, reprompt whenever a country is Removed from the selection list. 7. This function will add the ondblclick(testfunc()) to the Selection box, reprompt whenever a country is removed with a double click. 36

37 8. These calls will start these functions to watch the actions. 36

38 1. Check to see how many options are in the selected list, if less than 4, the condition is true. 2. If true, don t finish, just return. 37

39 This is the function what will be called whenever an action is done on the page that we set to cause a reprompt. It will first test the number of countries and alert the user if there are too many, but it will continue the reprompt so the user can fix their issues. Then it will return to the calling function so the action functions can continue. 38

40 This function tests the radio box. 1. Find the prompt itself with the div tag name 2. Find the different items in the prompt 3. Find the actual object that has the selection elements, in the radio box we use the class name to find the actual node object. 4. When the element is clicked, run the testfunc() 39

41 This function looks the same, the big difference is how we find the node. 1. We don t actually watch the selection box, instead we find the buttons, and then the Insert button and watch when that is clicked. The insert button has a title Add selected items to your choices, so we find that object and attach the onclick function. 2. The cuntion is slightly different, we wrap a settimeout around it. I found that it takes a little bit of time for Cognos to actually add the object to the selected list, so we want to make sure this is done before we call the reprompt. 40

42 Again, the basic design of the function is the same, the two differences here is what node we want to watch, and the type of watch. 1. In investigating this object, I found that inside the prompt object, and inside the div the node that users double click on has no class name, so I reference it that way. 2. Since I want to see if they add a value by double click, that is what I am watching. 41

43 Here we find the buttons again, and this time we look for the Remove button and watch when that one is clicked. 42

44 This time we are looking inside the select box, so we find the prompt, and the node items with select. Then we search those nodes and look for the class list control and watch this box for a double click action. 43

45 44

46 45

Creating Mailing Lables in IBM Cognos 8 Report Studio

Creating Mailing Lables in IBM Cognos 8 Report Studio Tip or Technique Creating Mailing Lables in IBM Cognos 8 Report Studio Product(s): IBM Cognos 8.4 Area of Interest: Reporting Creating Mailing Lables in IBM Cognos 8 Report Studio 2 Copyright and Trademarks

More information

Mail Merge Tutorial (for Word 2003-2007) By Allison King Spring 2007 (updated Fall 2007)

Mail Merge Tutorial (for Word 2003-2007) By Allison King Spring 2007 (updated Fall 2007) Mail Merge Tutorial (for Word 2003-2007) By Allison King Spring 2007 (updated Fall 2007) What is mail merge? You've probably heard it mentioned around the office or at an interview (especially for a temp

More information

Create a New Stock Item. Click Stock on top bar of buttons on main screen. To enter a new stock item onto the system click New.

Create a New Stock Item. Click Stock on top bar of buttons on main screen. To enter a new stock item onto the system click New. Chapter 6 Stock 139 140 Create a New Stock Item Click Stock on top bar of buttons on main screen. Stock Section To enter a new stock item onto the system click New. This will open the Stock Wizard. New

More information

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs HTML Form Widgets Review: HTML Forms HTML forms are used to create web pages that accept user input Forms allow the user to communicate information back to the web server Forms allow web servers to generate

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

More information

Using Rational Rose to Create Object-Oriented Diagrams

Using Rational Rose to Create Object-Oriented Diagrams Using Rational Rose to Create Object-Oriented Diagrams This is a brief overview to get students started in using Rational Rose to quickly create object-oriented models and diagrams. It is not by any means

More information

IST 195 Lab 11: MS Access

IST 195 Lab 11: MS Access Title of lab: Microsoft Access 2010 IST 195 Lab 11: MS Access Learning goal: Databases are collections of information, and database programs are designed to maintain data in structured tables. In this

More information

WHAT S NEW IN MS EXCEL 2013

WHAT S NEW IN MS EXCEL 2013 Contents Excel... 1 Filling empty cells using Flash Fill... 1 Filtering records using a Timeline... 2 Previewing with Quick Analysis... 4 Using Chart Advisor recommendations... 5 Finding errors and issues

More information

Getting Started with WebSite Tonight

Getting Started with WebSite Tonight Getting Started with WebSite Tonight WebSite Tonight Getting Started Guide Version 3.0 (12.2010) Copyright 2010. All rights reserved. Distribution of this work or derivative of this work is prohibited

More information

SPREADSHEETS. TIP! Whenever you get some new data, save it under a new name! Then if you mess things up, you can always go back to the original.

SPREADSHEETS. TIP! Whenever you get some new data, save it under a new name! Then if you mess things up, you can always go back to the original. SPREADSHEETS Spreadsheets are great tools for sorting, filtering and running calculations on tables of data. Journalists who know the basics can interview data to find stories and trends that others may

More information

ITS Training Class Charts and PivotTables Using Excel 2007

ITS Training Class Charts and PivotTables Using Excel 2007 When you have a large amount of data and you need to get summary information and graph it, the PivotTable and PivotChart tools in Microsoft Excel will be the answer. The data does not need to be in one

More information

MiraCosta College now offers two ways to access your student virtual desktop.

MiraCosta College now offers two ways to access your student virtual desktop. MiraCosta College now offers two ways to access your student virtual desktop. We now feature the new VMware Horizon View HTML access option available from https://view.miracosta.edu. MiraCosta recommends

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

More information

Advanced BIAR Participant Guide

Advanced BIAR Participant Guide State & Local Government Solutions Medicaid Information Technology System (MITS) Advanced BIAR Participant Guide October 28, 2010 HP Enterprise Services Suite 100 50 West Town Street Columbus, OH 43215

More information

Content Editor for Personal Web Pages

Content Editor for Personal Web Pages Content Editor for Personal Web Pages Welcome to the MyNikken tutorial with a step-by-step guide for using your web page manager. The webpages toolbar offers you a number of ways to customize your site.

More information

Getting Started With MySaleManager.NET

Getting Started With MySaleManager.NET Getting Started With MySaleManager.NET Welcome to MySaleManager.NET! We are glad you chose us to be the provider for automation services at your Consignment Event. This guide is designed to help you gets

More information

ADOBE ACROBAT 7.0 CREATING FORMS

ADOBE ACROBAT 7.0 CREATING FORMS ADOBE ACROBAT 7.0 CREATING FORMS ADOBE ACROBAT 7.0: CREATING FORMS ADOBE ACROBAT 7.0: CREATING FORMS...2 Getting Started...2 Creating the Adobe Form...3 To insert a Text Field...3 To insert a Check Box/Radio

More information

Advanced Client Phone Training

Advanced Client Phone Training Advanced Client Phone Training Interaction Client Last Updated December 19, 2008 This document outlines advanced features and configuration of the Interaction Client. DVS, Inc. 60 Revere Dr., Suite 201

More information

Database Program Instructions

Database Program Instructions Database Program Instructions 1) Start your Comparative Rating software by double-clicking the icon on your desktop. 2) Click on the button on the Comparative Rating Software Main Menu. 3) A message Loading

More information

Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: info@bluepecan.co.

Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: info@bluepecan.co. Excel Pivot Tables 1 Table of Contents Pivot Tables... 3 Preparing Data for a Pivot Table... 3 Creating a Dynamic Range for a Pivot Table... 3 Creating a Pivot Table... 4 Removing a Field... 5 Change the

More information

Data Analysis with Microsoft Excel 2003

Data Analysis with Microsoft Excel 2003 Data Analysis with Microsoft Excel 2003 Working with Lists: Microsoft Excel is an excellent tool to manage and manipulate lists. With the information you have in a list, you can sort and display data that

More information

[COGNOS DATA TRAINING FAQS] This is a list of frequently asked questions for a Cognos user

[COGNOS DATA TRAINING FAQS] This is a list of frequently asked questions for a Cognos user 2010 [COGNOS DATA TRAINING FAQS] This is a list of frequently asked questions for a Cognos user Table of Contents 1. How do I run my report in a different format?... 1 2. How do I copy a report to My Folder?...

More information

SQL Server 2005: Report Builder

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

More information

edgebooks Quick Start Guide 4

edgebooks Quick Start Guide 4 edgebooks Quick Start Guide 4 memories made easy SECTION 1: Installing FotoFusion Please follow the steps in this section to install FotoFusion to your computer. 1. Please close all open applications prior

More information

Chapter 14: Links. Types of Links. 1 Chapter 14: Links

Chapter 14: Links. Types of Links. 1 Chapter 14: Links 1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and

More information

Google Sites. How to create a site using Google Sites

Google Sites. How to create a site using Google Sites Contents How to create a site using Google Sites... 2 Creating a Google Site... 2 Choose a Template... 2 Name Your Site... 3 Choose A Theme... 3 Add Site Categories and Descriptions... 3 Launch Your Google

More information

Maximizing Performance on Cognos, Workflow, and BDMS

Maximizing Performance on Cognos, Workflow, and BDMS Maximizing Performance on Cognos, Workflow, and BDMS System Configuration In order Cognos, Banner Document Management (ApplicationXtender), and Banner Workflow to work optimally, some initial configuration

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.5 Content Author's Reference and Cookbook Rev. 110621 Sitecore CMS 6.5 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Using an external style sheet with Dreamweaver (CS6)

Using an external style sheet with Dreamweaver (CS6) Using an external style sheet with Dreamweaver (CS6) nigelbuckner.com 2012 This handout explains how to create an external style sheet, the purpose of selector types and how to create styles. It does not

More information

BusinessObjects: General Report Writing for Version 5

BusinessObjects: General Report Writing for Version 5 BusinessObjects: General Report Writing for Version 5 Contents 1 INTRODUCTION...3 1.1 PURPOSE OF COURSE...3 1.2 LEVEL OF EXPERIENCE REQUIRED...3 1.3 TERMINOLOGY...3 1.3.1 Universes...3 1.3.2 Objects...4

More information

My ø Business User guide

My ø Business User guide My ø Business User guide Contents Page 1 Contents Welcome to your My ø Business user guide. It s easy to use. Move your mouse over the page to get to the section you want. Click on the links at the top

More information

Page 18. Using Software To Make More Money With Surveys. Visit us on the web at: www.takesurveysforcash.com

Page 18. Using Software To Make More Money With Surveys. Visit us on the web at: www.takesurveysforcash.com Page 18 Page 1 Using Software To Make More Money With Surveys by Jason White Page 2 Introduction So you re off and running with making money by taking surveys online, good for you! The problem, as you

More information

Working together with Word, Excel and PowerPoint 2013

Working together with Word, Excel and PowerPoint 2013 Working together with Word, Excel and PowerPoint 2013 Information Services Working together with Word, Excel and PowerPoint 2013 Have you ever needed to include data from Excel or a slide from PowerPoint

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

WEB DESIGN COURSE CONTENT

WEB DESIGN COURSE CONTENT WEB DESIGN COURSE CONTENT INTRODUCTION OF WEB TECHNOLOGIES Careers in Web Technologies How Websites are working Domain Types and Server About Static and Dynamic Websites Web 2.0 Standards PLANNING A BASIC

More information

MAIL MERGE TUTORIAL. (For Microsoft Word 2003-2007 on PC)

MAIL MERGE TUTORIAL. (For Microsoft Word 2003-2007 on PC) MAIL MERGE TUTORIAL (For Microsoft Word 2003-2007 on PC) WHAT IS MAIL MERGE? It is a way of placing content from a spreadsheet, database, or table into a Microsoft Word document Mail merge is ideal for

More information

BulkSMS Text Messenger Product Manual

BulkSMS Text Messenger Product Manual BulkSMS Text Messenger Product Manual 1. Installing the software 1.1. Download the BulkSMS Text Messenger Go to www.bulksms.com and choose your country. process. Click on products on the top menu and select

More information

TRIAL SOFTWARE GUIDE 1. PURPOSE OF THIS GUIDE 2. DOWNLOAD THE TRIALSOFTWARE 3. START WIDS 4. OPEN A SAMPLE COURSE, PROGRAM

TRIAL SOFTWARE GUIDE 1. PURPOSE OF THIS GUIDE 2. DOWNLOAD THE TRIALSOFTWARE 3. START WIDS 4. OPEN A SAMPLE COURSE, PROGRAM TRIAL SOFTWARE GUIDE Thank you for trying the WIDS software! We appreciate your interest and look forward to hearing from you. Please contact us at (800) 677-9437 if you have any questions about your trial

More information

Form Management Admin Guide

Form Management Admin Guide Form Management Admin Guide Getting around the navigation Model Management (Admin/Technical). Create, edit and manage the basic template of content models. Form Builder - Lets you create properties in

More information

Microsoft Word 2010: How to Resize and Move Clip Art

Microsoft Word 2010: How to Resize and Move Clip Art Microsoft Word 2010: How to Resize and Move Clip Art Resizing Clip Art If your clip art is too big or too small you can resize to suit your needs. Click on your image with the left mouse button. You should

More information

Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade. Exercise: Creating two types of Story Layouts

Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade. Exercise: Creating two types of Story Layouts Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade Exercise: Creating two types of Story Layouts 1. Creating a basic story layout (with title and content)

More information

There are numerous ways to access monitors:

There are numerous ways to access monitors: Remote Monitors REMOTE MONITORS... 1 Overview... 1 Accessing Monitors... 1 Creating Monitors... 2 Monitor Wizard Options... 11 Editing the Monitor Configuration... 14 Status... 15 Location... 17 Alerting...

More information

The web server administrator needs to set certain properties to insure that logging is activated.

The web server administrator needs to set certain properties to insure that logging is activated. Access Logs As before, we are going to use the Microsoft Virtual Labs for this exercise. Go to http://technet.microsoft.com/en-us/bb467605.aspx, then under Server Technologies click on Internet Information

More information

Excel 2007: Basics Learning Guide

Excel 2007: Basics Learning Guide Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Graphing Parabolas With Microsoft Excel

Graphing Parabolas With Microsoft Excel Graphing Parabolas With Microsoft Excel Mr. Clausen Algebra 2 California State Standard for Algebra 2 #10.0: Students graph quadratic functions and determine the maxima, minima, and zeros of the function.

More information

Creating a New Search

Creating a New Search Getting Started The information search feature in AVImark allows the user to create and save queries to find specific information in the program. The Information Search in version 2010.4 and later now

More information

Designing and Implementing Forms 34

Designing and Implementing Forms 34 C H A P T E R 34 Designing and Implementing Forms 34 You can add forms to your site to collect information from site visitors; for example, to survey potential customers, conduct credit-card transactions,

More information

Introduction. Inserting Clip Art and Pictures. Word 2010. To Locate Clip Art:

Introduction. Inserting Clip Art and Pictures. Word 2010. To Locate Clip Art: Word 2010 Inserting Clip Art and Pictures Introduction Images are a great way to liven up a document, and Word offers a couple of ways of inserting images. There are built-in Clip Art images for just about

More information

Developing Web and Mobile Dashboards with Oracle ADF

Developing Web and Mobile Dashboards with Oracle ADF Developing Web and Mobile Dashboards with Oracle ADF In this lab you ll build a web dashboard that displays data from the database in meaningful ways. You are going to leverage Oracle ADF the Oracle Application

More information

5. Tutorial. Starting FlashCut CNC

5. Tutorial. Starting FlashCut CNC FlashCut CNC Section 5 Tutorial 259 5. Tutorial Starting FlashCut CNC To start FlashCut CNC, click on the Start button, select Programs, select FlashCut CNC 4, then select the FlashCut CNC 4 icon. A dialog

More information

Reading an email sent with Voltage SecureMail. Using the Voltage SecureMail Zero Download Messenger (ZDM)

Reading an email sent with Voltage SecureMail. Using the Voltage SecureMail Zero Download Messenger (ZDM) Reading an email sent with Voltage SecureMail Using the Voltage SecureMail Zero Download Messenger (ZDM) SecureMail is an email protection service developed by Voltage Security, Inc. that provides email

More information

IBM BPM V8.5 Standard Consistent Document Managment

IBM BPM V8.5 Standard Consistent Document Managment IBM Software An IBM Proof of Technology IBM BPM V8.5 Standard Consistent Document Managment Lab Exercises Version 1.0 Author: Sebastian Carbajales An IBM Proof of Technology Catalog Number Copyright IBM

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

Filtered Views for Microsoft Dynamics CRM

Filtered Views for Microsoft Dynamics CRM Filtered Views for Microsoft Dynamics CRM Version 4.2.13, March 5, 2010 Copyright 2009-2010 Stunnware GmbH - 1 of 32 - Contents Overview... 3 How it works... 4 Setup... 5 Contents of the download package...

More information

Newsletter Sign Up Form to Database Tutorial

Newsletter Sign Up Form to Database Tutorial Newsletter Sign Up Form to Database Tutorial Introduction The goal of this tutorial is to demonstrate how to set up a small Web application that will send information from a form on your Web site to a

More information

Communications Express E-mail Filters

Communications Express E-mail Filters Communications Express E-mail Filters Last modified on 10/05/2006 NOTE ON SPAM: Our spam filtering system (PureMessage) rates the likeliness of messages from off campus being spam. For those messages with

More information

Importing TSM Data into Microsoft Excel using Microsoft Query

Importing TSM Data into Microsoft Excel using Microsoft Query Importing TSM Data into Microsoft Excel using Microsoft Query An alternate way to report on TSM information is to use Microsoft Excel s import facilities using Microsoft Query to selectively import the

More information

Volunteers for Salesforce Installation & Configuration Guide Version 3.76

Volunteers for Salesforce Installation & Configuration Guide Version 3.76 Volunteers for Salesforce Installation & Configuration Guide Version 3.76 July 15, 2015 Djhconsulting.com 1 CONTENTS 1. Overview... 4 2. Installation Instructions... 4 2.1 Requirements Before Upgrading...

More information

Digital Marketing EasyEditor Guide Dynamic

Digital Marketing EasyEditor Guide Dynamic Surveys ipad Segmentation Reporting Email Sign up Email marketing that works for you Landing Pages Results Digital Marketing EasyEditor Guide Dynamic Questionnaires QR Codes SMS 43 North View, Westbury

More information

Implementing Specialized Data Capture Applications with InVision Development Tools (Part 2)

Implementing Specialized Data Capture Applications with InVision Development Tools (Part 2) Implementing Specialized Data Capture Applications with InVision Development Tools (Part 2) [This is the second of a series of white papers on implementing applications with special requirements for data

More information

Q. The Phone Manager call banner disappears after being displayed for a couple of seconds...5 Q. The Phone Manager icon in the taskbar is blue and

Q. The Phone Manager call banner disappears after being displayed for a couple of seconds...5 Q. The Phone Manager icon in the taskbar is blue and Phone Manager FAQ s Q. The Phone Manager call banner disappears after being displayed for a couple of seconds...5 Q. The Phone Manager icon in the taskbar is blue and has a cross on it. 5 Q. Some options

More information

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT Tegrity: Getting Started with Lecture Capture (Last updated: 2/23/15) ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents: Table of Contents:... 2 Overview... 1 Objectives...

More information

Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients

Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients Technical Paper Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients A practical introduction to SAS Information Map Studio and SAS Web Report Studio for new and experienced

More information

Introduction to scripting with Unity

Introduction to scripting with Unity Introduction to scripting with Unity Scripting is an essential part of Unity as it defines the behaviour of your game. This tutorial will introduce the fundamentals of scripting using Javascript. No prior

More information

Microsoft Access 3: Understanding and Creating Queries

Microsoft Access 3: Understanding and Creating Queries Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex

More information

TABLE OF CONTENTS BACKGROUND: HIGH IMPACT EMAIL 4.0 PROFESSIONAL AND ACT!. 3 SELECT MAIL MERGE OPTION ON THE MAIN SCREEN.0 TEMPLATE.

TABLE OF CONTENTS BACKGROUND: HIGH IMPACT EMAIL 4.0 PROFESSIONAL AND ACT!. 3 SELECT MAIL MERGE OPTION ON THE MAIN SCREEN.0 TEMPLATE. TABLE OF CONTENTS BACKGROUND: HIGH IMPACT EMAIL 4.0 PROFESSIONAL AND ACT!... 3 SELECT MAIL MERGE OPTION ON THE MAIN SCREEN... 4 SELECT A HIGH IMPACT EMAIL 4.0 TEMPLATE... 5 SELECT A PROFILE TO BE USED

More information

Chapter 19: XML. Working with XML. About XML

Chapter 19: XML. Working with XML. About XML 504 Chapter 19: XML Adobe InDesign CS3 is one of many applications that can produce and use XML. After you tag content in an InDesign file, you save and export the file as XML so that it can be repurposed

More information

understand how image maps can enhance a design and make a site more interactive know how to create an image map easily with Dreamweaver

understand how image maps can enhance a design and make a site more interactive know how to create an image map easily with Dreamweaver LESSON 3: ADDING IMAGE MAPS, ANIMATION, AND FORMS CREATING AN IMAGE MAP OBJECTIVES By the end of this part of the lesson you will: understand how image maps can enhance a design and make a site more interactive

More information

While Loops and Animations

While Loops and Animations C h a p t e r 6 While Loops and Animations In this chapter, you will learn how to use the following AutoLISP functions to World Class standards: 1. The Advantage of Using While Loops and Animation Code

More information

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

Installing Lync. Configuring and Signing into Lync

Installing Lync. Configuring and Signing into Lync Microsoft Lync 2013 Contents Installing Lync... 1 Configuring and Signing into Lync... 1 Changing your Picture... 2 Adding and Managing Contacts... 2 Create and Manage Contact Groups... 3 Start an Instant

More information

Auto Attendant User Guide

Auto Attendant User Guide This user guide is everything you need to be able to correctly setup your Auto Attendant. This involves setting your time schedules, configuring your Auto Attendant, recording and submitting your greetings,

More information

Basic Website Creation. General Information about Websites

Basic Website Creation. General Information about Websites Basic Website Creation General Information about Websites Before you start creating your website you should get a general understanding of how the Internet works. This will help you understand what goes

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Written by: Chris Jaun (cmjaun@us.ibm.com) Sudha Piddaparti (sudhap@us.ibm.com) Objective In this

More information

Downloading & Using Data from the STORET Warehouse: An Exercise

Downloading & Using Data from the STORET Warehouse: An Exercise Downloading & Using Data from the STORET Warehouse: An Exercise August 2012 This exercise addresses querying or searching for specific water resource data, and the respective methods used in collecting

More information

How To Use A Development Site Safely

How To Use A Development Site Safely Developer Sandbox User Guide Show Your Results, Not Your Work Version 1.0 Overview Developer Sandbox lets you work on your Miva Merchant site without letting the world see the construction debris. Unlike

More information

FORMS. Introduction. Form Basics

FORMS. Introduction. Form Basics FORMS Introduction Forms are a way to gather information from people who visit your web site. Forms allow you to ask visitors for specific information or give them an opportunity to send feedback, questions,

More information

How To Use The Unify Intelligence Center On A Pc Or Macbook Or Macrocessor On A Computer Or Macosade On A Macbook (For Macro Recipebook) On A Mobile Device On A Web Browser On A Desktop Or

How To Use The Unify Intelligence Center On A Pc Or Macbook Or Macrocessor On A Computer Or Macosade On A Macbook (For Macro Recipebook) On A Mobile Device On A Web Browser On A Desktop Or The Unified Intelligence Center interface is organized by dashboards. are web pages that display reports, scheduled reports, sticky notes, and web-based elements, such as URLs and web widgets, that are

More information

How to Schedule Report Execution and Mailing

How to Schedule Report Execution and Mailing SAP Business One How-To Guide PUBLIC How to Schedule Report Execution and Mailing Release Family 8.8 Applicable Releases: SAP Business One 8.81 PL10 and PL11 SAP Business One 8.82 PL01 and later All Countries

More information

Getting Started with CashierPRO Inventory Management

Getting Started with CashierPRO Inventory Management Getting Started with CashierPRO Inventory Management Overview CashierPRO keeps track of a number of attributes of each SKU (Stock Keeping Unit) in the store. Some attributes are required (like SKU# and

More information

Web Dashboard. User Manual. Build 2.0 2015-09-17

Web Dashboard. User Manual. Build 2.0 2015-09-17 Web Dashboard User Manual Build 2.0 2015-09-17 This is the official user manual on using SAMLite web dashboard to perform reporting and administrative tasks. This manual describes each section of reporting

More information

How to do Split testing on your WordPress site using Google Website Optimizer

How to do Split testing on your WordPress site using Google Website Optimizer How to do Split testing on your WordPress site using Google Website Optimizer If you are now at a stage where you ve read enough about the merits of split testing that you want to want to jump in and try

More information

Cognos 8 Report Studio Creating Multi Query Reports

Cognos 8 Report Studio Creating Multi Query Reports Cognos 8 Report Studio Creating Multi Query Reports By Kim De Leon Instructions are based on Cognos 8 BI, Report Studio, version 82 1 Click on Query Explorer and Click on Queries Query1 will display (Rename

More information

P I M S - X P a y m e n t T y p e s

P I M S - X P a y m e n t T y p e s Creating New Payment Type Record Listing Payment Type Records Configuring Creditcard Processing Configuring Internal Giftcard Processing CHAPTER 07 P I M S - X P a y m e n t T y p e s Payment Types 101

More information

Creating a table of contents quickly in Word

Creating a table of contents quickly in Word Creating a table of contents quickly in Word This note shows you how to set up a table of contents that can be generated and updated quickly and easily, even for the longest and most complex documents.

More information

Mail Merge Creating Mailing Labels 3/23/2011

Mail Merge Creating Mailing Labels 3/23/2011 Creating Mailing Labels in Microsoft Word Address data in a Microsoft Excel file can be turned into mailing labels in Microsoft Word through a mail merge process. First, obtain or create an Excel spreadsheet

More information

Packages... 1. Opening the Package Maintenance Form... 2. Adding a New Package... 2. Edit Package Item Details Form... 11

Packages... 1. Opening the Package Maintenance Form... 2. Adding a New Package... 2. Edit Package Item Details Form... 11 Packages Packages... 1 Opening the Package Maintenance Form... 2 Adding a New Package... 2 Edit Package Item Details Form... 11 Profit, Margin, Markup... 14 Package Details & Price Tag Options... 14 Package

More information

How to Use New Relic Custom Dashboards & Why You d Want To

How to Use New Relic Custom Dashboards & Why You d Want To TUTORIAL How to Use New Relic Custom Dashboards & Why You d Want To by Alan Skorkin Contents Introduction 3 Why Use Custom Dashboards at All? 4 Creating an Overview Dashboard from Existing Charts 4 Creating

More information

Copy Documents from your Computer (H Drive) to a Flash Drive

Copy Documents from your Computer (H Drive) to a Flash Drive Copy Documents from your Computer (H Drive) to a Flash Drive Why? You are moving to another school district and want to take your files with you You are moving to another school and want to make sure you

More information

How to make internal links in a Word document

How to make internal links in a Word document White Paper July 2014 How to make internal links in a Word document Making internal links in a Word document Usually a link is designed to go to another web page to your website or to a landing page or

More information

Usability Test Results

Usability Test Results Usability Test Results Task: Starting Position: 1 Home Scene Lauren DiVito March 6, 2014 Moderator Script: Evaluation Measures: Notes to Moderator: Task: Starting Position: Moderator Script: Evaluation

More information

Excel 2007 - Using Pivot Tables

Excel 2007 - Using Pivot Tables Overview A PivotTable report is an interactive table that allows you to quickly group and summarise information from a data source. You can rearrange (or pivot) the table to display different perspectives

More information

Outlook 2013 ~ Advanced

Outlook 2013 ~ Advanced Mail Using Categories 1. Select the message that for the category. 2. Select the appropriate category. 3. The category color displays next to the message. Renaming Categories 1. Select a message. 2. Select

More information

Module 6.3 Client Catcher The Sequence (Already Buying Leads)

Module 6.3 Client Catcher The Sequence (Already Buying Leads) Module 6.3 Client Catcher The Sequence (Already Buying Leads) Welcome to Module 6.3 of the Client Catcher entitled The Sequence. I recently pulled over 300 of the local lead generation explosion members

More information