Building your own BMC Remedy AR System v7 Applications. Maruthi Dogiparthi

Size: px
Start display at page:

Download "Building your own BMC Remedy AR System v7 Applications. Maruthi Dogiparthi"

Transcription

1 Building your own BMC Remedy AR System v7 Applications Maruthi Dogiparthi

2 Agenda Introduction New Goodies Navigation, tree widgets Data Visualization Plug-in framework Development Guidelines Tools BMC Remedy Developer Plus Prefetch Profiler References Q&A

3 Navigation Bar What is the Navigation Bar in BMC Remedy Action Request System (AR System ) v7? A new control field for presenting navigation menus horizontally or vertically Key functionality Look and feel is fully customizable using style sheets, even on the User Tool. Displays rounded corners and rollover styles for modern look. Provides standard workflow support to hide/disable/highlight nodes. A vertical navigation bar can be multiple levels deep. Horizontal navigation bars support only single level. A developer can add separators for logical separation of nodes. The separator has no visual clue - just a blank space. A developer can easily add or convert existing control buttons to navigation bar nodes. Node labels can be localized.

4 Navigation Bar - Setup and Creation Horizontal Navigation Field Properties Since Horizontal fields can have only one level, only Menu Items can be added. The Add Menu button is disabled. Select item on click option is unchecked by default Fire workflow again on selected item option is set to Do not fire workflow by default.

5 Navigation Bar - Setup and Creation Vertical Navigation Field Properties Field can have any level menu. Select item on click option is checked by default. Fire workflow again on selected item option is set to Do not fire workflow by default. Navigation Initial State (explained on next slide)

6 Navigation Bar - Setup and Creation Navigation Initial State property defines which item is selected on Form Load. Attach Orphaned Items Lets the user add navigation items that have been orphaned Orphaning typically occurs when the parent Navigation items or other control fields like Menus or Buttons are deleted.

7 Navigation Bar - Workflow Workflow Capability All the workflow features for a button or menu field will work with Nav Bars. New Run Process command added to highlight specific item. PERFORM-ACTION-NAV-FIELD-SET-SELECTED-ITEM This will not fire workflow attached on that item. It will just select the item. Every navigation item is a new control field. All the relevant workflow (hide/disable etc) can be applied to individual Navigation item. Keyboard navigation is defined using Tab key to move from item to item (just like move from button to button). Enter will select the item.

8 Navigation Bar - Gotchas The height of Horizontal Navigation fields cannot be shrunk to less than 30 pixels. When deleting parent field, the Admin Tool will not delete the navigation item children fields. Instead, AR System marks their type as Menu. So when the user goes the Edit Menu Bar dialog, the children fields will be available there. The Attach Orphaned Items dialog will show these orphaned items as well. If there is not enough space to show the whole field, then Vertical field will have scroll bars and the Horizontal field will clip the items (i.e. no scroll bar will be available). In the Admin Tool, the preview always shows all the items expanded for a Vertical field.

9 Tree New Tree Control field allows graphical selection and manipulation of application data similar to in Windows Explorer. Allows users to drill down into data Enables user selection to drive custom-built workflow

10 Data Visualization Plug-in Framework Plug-in architecture for custom UI applications extensions Services handled by Mid-Tier Authentication and permissions Deployment Locale support Session support Event signaling for communicating with AR System (can be used to build workflows) From Client plug-in to Mid-Tier From Client plug-in to parent AR Form From parent AR Form to Client plug-in Drill down from Client plug-in to AR Form Services handled by Server Import/Export as part of applications Access rights on definitions

11 Plug-in Framework: How Does It Work? General Configuration Configure Plug-in Server(s) for a Mid-Tier Point Admin/User tool to a proper Mid-Tier Deployment Forms Data Visualization Module: To register a new Module (plug-in) Allows version control Data Visualization Definition To create instances of a module (plug-in) To specify behavioral definitions To specify access control Creation of a Data Visualization Field A Data Visualization Field is now used by BMC Remedy Flashboards, as well as other features found in BMC Remedy IT Service Management applications Add a data visualization field to an AR Form, select the definition

12 Server Forms for Plug-in Plug-in jar file Definition/Instance of a Plug-in

13 Configuring Plug-in with Admin Tool

14 Plug-in Framework: Architecture Client Data Visualization Field 1. Request 6. Return the graph/image with code for interactions 3. Redirect Request along with login context Mid-Tier Plug-in Container 4. Get definition(s) for request Plug-in 2.Download And Instantiate Plug-in 5. Validate permissions and return the definition(s) AR System Plug-in Code in Data Visualization Module form Plug-in Definitions in Data Visualization Definition form

15 Plug-in Framework: Summary Accelerates creating out-of-the-box solutions with easy integration through Mid-Tier Feature is intended for use by advanced AR System developers with Java skills

16 Development Guidelines What kind of applications are you developing? Customizing out-of-the-box applications vs. new applications Mashups Requirements, Design, Test, and Deploy Where are you spending most of your time? Bottlenecks Tool support Details

17 Build Business Logic in Filters Don t build business logic on the client build it in filters This best practice helps: Design Performance/scalability Integrations Security Take advantage of plug-ins: Use filter plug-ins over run process Use view forms or ARDBC to access data from other sources Use the Mid-Tier plug-in framework Share, re-use, and recycle

18 Organize Forms Based on Usage, Data Models Do you really need 1,000 fields on that form? If a field is never visible, don t put it in view. Use temporary fields wisely, and don t be afraid of re-use. Use display only fields whenever data is not being saved. Data may be better accessed as a popup or elsewhere rather than being on the base form. Consider usability as well

19 Client Logic Client workflow (active links) often executes much more slowly than business logic because active links: Are further from the database and server Latency concerns Bandwidth concerns Use a less optimal interpreter (e.g. JS in a Web browser) Client performance has a high perceived impact to the user

20 Client Form Design and Layout Table field proliferation Page holders within page holders within page holders Unnecessarily common use of images (esp. BMP) May be able to use image swap on Web to help out Too many states on the same view Multiple field permission states, applied by hand Excessively large number of Change Fields on mode changes Don t pull unrelated information now if it s only used later Table/Flashboard/graphical plug-in field loads Data retrieval

21 Menus Large query style menus are a problem Large quantity of data Too much data displayed at the same level is hard to navigate and displays slowly (thousands of items) on the Web. Limit menus that load on open to ones that are truly dynamic Be especially careful moving from development into production to flip the switch back again. Most of the time, fairly static items (people, products, groups, versions, etc.) are safe to be loaded once only.

22 Queries Have the indexes correctly defined Check for any inefficient queries Look for unqualified queries Can result in a table scan

23 Table, View, and Tree Fields Table fields More than a few hundred rows of table data should be chunked instead (especially with AR System v6.3+). Load tables as late as possible and refresh as infrequently as possible. Table loop guides that change lots of data can run slowly in the native client. Beware of queries that execute badly. Refresh tables only that are needed to be refreshed. If you are on a certain tab, refresh the tables only on that tab. Defer loading Flashboards where appropriate Tree fields Minimize total nodes to <1,000 for optimal performance Chunking is not available; consider using tree and table combinations to improve usability and performance

24 Active Links Fetch related info in one go Use on get entry filters to pull related data for display Use hidden table columns to prepopulate other fields, other windows, or dialog boxes Use global fields Store small, simple bits of data (e.g. configuration) that will be accessed frequently to cache information Don t read the same record multiple times

25 Active Links In addition to efficiently fetching data, defer work A responsive UI to accomplish the task with a pause at the end is better than a sluggish UI throughout the whole process. Modify can be better than push field Modify only transmits values that have changed More maintainability Undoing and then redoing the same work (hiding/showing fields, changing background colours, etc.) Deeply nested guides

26 Things Not to Do in a Web Browser Don t disable built-in optimizations They show up in the Mid-Tier performance log. These are documented. The key ones are below. Never Use an indirect change field action to make a field visible Always try to avoid Using PERFORM-ACTION-ACTIVE-LINK Using browsers with compression disabled Clearing out Mid-Tier cache on a production system Prefetch can help you in most of the cases though

27 Remove Obsolete Objects It s fine to delete rather than disable workflow. Remove forms that are no longer appropriate. Remove old, unused menus. If something isn t called, it probably isn t needed.

28 Testing for Performance Use lots of data (where appropriate) Use slow machine (e.g. 266MHz Pentium) Use tools for example: Load testing tools Measurement tools Application explorer for simple optimisation suggestions Test over LAN, cable/isdn, modem Test within the customer environment Or a reasonable recreation of it

29 Use Logging to Review Efficiency The problem may not be where you thought is was. It could be lurking in a different tier. It could be because of the test scenario. Use the logs to diagnose problems, narrowing by tier: Mid-Tier performance log tells you Mid-Tier time and server API time. Server logs tell you server processing time and database (SQL) time. The profiler tool helps in advanced scenarios.

30 Tools BMC Remedy Developer Plus

31 BMC Remedy Developer Plus: Analyze This Analyze application

32 BMC Remedy Developer Plus: Drill Down Execution view: Is there redundant workflow?

33 Prefetch > Form-load time is high for the first user. > Configuring Prefetch Find <mid-tier-installation-dir>/web-inf/classes/prefetchconfig.xml. Edit prefetchconfig.xml. You can refer to XML Schema definition at <midtier-installation-dir>/documentation/prefetchconfig.xsd Restart your Mid-Tier server. > Using Prefetch <prefetch-server> <server-name>servername</server-name> <prefetchapp> <app-name>appname</app-name> <prefetch-form> <formname>formname</form-name> </prefetch-form> </prefetch-app> </prefetch-server> Per User group <perfetch-user>

34 Profiler > Setup for Profiling in the Mid-Tier Configuration

35 Profiler > Show Profile and Clear Profile buttons

36 More References Custom login.jsp SSO Performance and scalability benchmarks Differences in Windows\Web Clients Section 508 (Accessibility standard) support

37 Summary New widgets and features to help you further Best practices for maintainability, performance Tools

38 Q&A

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support Web Services Service Delivery & Support UNIVERSITY OF TASMANIA UTAS CMS Easy Edit Suite Workshop V3 Web Service, Service Delivery & Support UWCMS Easy Edit Suite Workshop: v3 Contents What is Easy Edit

More information

Teamcenter 11.1 Systems Engineering and Requirements Management

Teamcenter 11.1 Systems Engineering and Requirements Management SIEMENS Teamcenter 11.1 Systems Engineering and Requirements Management Systems Architect/ Requirements Management Project Administrator's Manual REQ00002 U REQ00002 U Project Administrator's Manual 3

More information

Skills Exam Objective Objective Number

Skills Exam Objective Objective Number Overview 1 LESSON SKILL MATRIX Skills Exam Objective Objective Number Starting Excel Create a workbook. 1.1.1 Working in the Excel Window Customize the Quick Access Toolbar. 1.4.3 Changing Workbook and

More information

Oracle Policy Automation The modern enterprise advice platform

Oracle Policy Automation The modern enterprise advice platform Oracle Policy Automation The modern enterprise advice platform Release features and benefits (November 2017) v1.01 Program agenda 1 2 3 Overview of Oracle Policy Automation New features in release For

More information

EDGE, MICROSOFT S BROWSER

EDGE, MICROSOFT S BROWSER EDGE, MICROSOFT S BROWSER To launch Microsoft Edge, click the Microsoft Edge button (it s the solid blue E) on the Windows Taskbar. Edge Replaces Internet Explorer Internet Explorer is no longer the default

More information

Three OPTIMIZING. Your System for Photoshop. Tuning for Performance

Three OPTIMIZING. Your System for Photoshop. Tuning for Performance Three OPTIMIZING Your System for Photoshop Tuning for Performance 72 Power, Speed & Automation with Adobe Photoshop This chapter goes beyond speeding up how you can work faster in Photoshop to how to make

More information

XLCubed Version 9 QuickStart

XLCubed Version 9 QuickStart XLCubed Version 9 QuickStart 1 P a g e Contents Welcome... 3 Connecting to your data... 3 XLCubed for Pivot Table users... 3 Adding a Grid, and the Report Designer... 5 Working with Grids... 7 Grid Components...

More information

Unit 1: Working With Tables

Unit 1: Working With Tables Unit 1: Working With Tables Unit Overview This unit covers the basics of working with Tables and the Table wizard. It does not include working with fields, which is covered in Units 3 and 4. It is divided

More information

FileNET Guide for AHC PageMasters

FileNET Guide for AHC PageMasters ACADEMIC HEALTH CENTER 2 PageMasters have the permissions necessary to perform the following tasks with Site Tools: Application Requirements...3 Access FileNET...3 Login to FileNET...3 Navigate the Site...3

More information

The Connector. Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual

The Connector.  Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual The Connector Version 1.2 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2008 www.the-connector.com Page 1 of 86 Copyright and Disclaimer All rights

More information

Black Diamond. Black Diamond Advisor Experience: Portfolio View. Activation

Black Diamond. Black Diamond Advisor Experience: Portfolio View. Activation Advisor Experience: Portfolio View Portfolio View is the advisor s home for dynamic client reporting. It features a dashboard of reporting content that can be configured to your preferences. This User

More information

Introduction... 3 Compatibility... 4 Operating systems...4 BMC Action Request System / ITSM...4 Java web servers...4 Single-sign on integrations and

Introduction... 3 Compatibility... 4 Operating systems...4 BMC Action Request System / ITSM...4 Java web servers...4 Single-sign on integrations and Introduction... 3 Compatibility... 4 Operating systems...4 BMC Action Request System / ITSM...4 Java web servers...4 Single-sign on integrations and mechanisms...4 Mixing versions of SSO Plugin...4 Overview

More information

Oracle Application Express 5 New Features

Oracle Application Express 5 New Features Oracle Application Express 5 New Features 20th HrOUG conference October 16, 2015 Vladislav Uvarov Software Development Manager Database Server Technologies Division Copyright 2015, Oracle and/or its affiliates.

More information

COPYRIGHTED MATERIAL. Making Excel More Efficient

COPYRIGHTED MATERIAL. Making Excel More Efficient Making Excel More Efficient If you find yourself spending a major part of your day working with Excel, you can make those chores go faster and so make your overall work life more productive by making Excel

More information

The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity

The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2011 Page 1 of 99 What is The Connector? The Connector is a Microsoft Project

More information

FileNET Guide for AHC PageMasters

FileNET Guide for AHC PageMasters PageMasters have the permissions necessary to perform the following tasks with Site Tools: ACADEMIC HEALTH CENTER 2 Application Requirements...3 Access FileNET...3 Log in to FileNET...3 Navigate the Site...3

More information

I, J, K. Eclipse, 156

I, J, K. Eclipse, 156 Index A, B Android PhoneGap app, 158 deploying and running, 172 New Eclipse project, 158 Activity dialog, 162 application properties, 160 AVD, 170 configuration, 167 Launcher Icon dialog, 161 PhoneGap

More information

FileLoader for SharePoint

FileLoader for SharePoint End User's Guide FileLoader for SharePoint v. 2.0 Last Updated 6 September 2012 3 Contents Preface 4 FileLoader Users... 4 Getting Started with FileLoader 5 Configuring Connections to SharePoint 7 Disconnecting

More information

NetBrain Quick Start Guide For End Users

NetBrain Quick Start Guide For End Users NetBrain Quick Start Guide For End Users Dynamic Documentation Network Analysis Visual Troubleshooting Automation Qapp Network Change Management Thin Client NetBrain Technologies, Inc. 2004-2016. All rights

More information

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions...

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions... SPARC S INSTRUCTIONS For Version 1.1 UNITED STATES DEPARTMENT OF AGRICULTURE Forest Service By Todd Rivas December 29, 1999 TABLE OF CONTENTS WHAT IS SPARC S?... 1 Definition And History... 1 Features...

More information

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward Perch Documentation U of M - Department of Computer Science Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward 1 TABLE OF CONTENTS Introduction to Perch History of Perch ---------------------------------------------

More information

BMC Remedy Action Request System Using a BIRT Editor to Create or Modify Web Reports

BMC Remedy Action Request System Using a BIRT Editor to Create or Modify Web Reports White Paper BMC Remedy Action Request System 7.6.04 Using a BIRT Editor to Create or Modify Web Reports September 2012 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com.

More information

A PRACTICAL GUIDE TO USING WIX TO BUILD A WEBSITE

A PRACTICAL GUIDE TO USING WIX TO BUILD A WEBSITE A PRACTICAL GUIDE TO USING WIX TO BUILD A WEBSITE AN AID TO ENABLE STUDENTS TO UNDERSTAND THE FUNDAMENTELS OF WEBSITE DESIGN WITHIN THE FRAMEWORK OF A WEBSITE PROJECT USING WEB DESIGN TOOLS YANNIS STEPHANOU

More information

NetBrain Quick Start Guide For End Users

NetBrain Quick Start Guide For End Users NetBrain Quick Start Guide For End Users Dynamic Documentation Network Analysis Visual Troubleshooting Automation Qapp Network Change Management Thin Client NetBrain Technologies, Inc. 2004-2015. All rights

More information

<Insert Picture Here> The Latest E-Business Suite R12.x OA Framework Rich User Interface Enhancements

<Insert Picture Here> The Latest E-Business Suite R12.x OA Framework Rich User Interface Enhancements 1 The Latest E-Business Suite R12.x OA Framework Rich User Interface Enhancements Padmaprabodh Ambale, Gustavo Jimenez Applications Technology Group The following is intended to outline

More information

Release Notes V9.5 (inc V9.4) Release Notes. Phone: Fax:

Release Notes V9.5 (inc V9.4) Release Notes. Phone: Fax: Release Notes V9.5 (inc V9.4) 2016 Release Notes Phone: 01981 590410 Fax: 01981 590411 E-mail: information@praceng.com RELEASE NOTES These Release Notes give you information regarding changes, modifications

More information

The main differences with other open source reporting solutions such as JasperReports or mondrian are:

The main differences with other open source reporting solutions such as JasperReports or mondrian are: WYSIWYG Reporting Including Introduction: Content at a glance. Create A New Report: Steps to start the creation of a new report. Manage Data Blocks: Add, edit or remove data blocks in a report. General

More information

User Interface Design. Interface Design 4. User Interface Design. User Interface Design. User Interface Design. User Interface Design

User Interface Design. Interface Design 4. User Interface Design. User Interface Design. User Interface Design. User Interface Design Specification of a conversation between the user and the computer. Generally results in either input, output or both. An important part of systems and software development. An intuitive and easy to use

More information

Content Author's Reference and Cookbook

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

More information

Using Sitecore 5.3.1

Using Sitecore 5.3.1 Using Sitecore 5.3.1 An End-User s Guide to Using and Administrating Sitecore Author: Sitecore Corporation Date: December 12, 2007 Release: Rev. 1.0 Language: English Sitecore is a registered trademark.

More information

Real Application Security Administration

Real Application Security Administration Oracle Database Real Application Security Administration Console (RASADM) User s Guide 12c Release 2 (12.2) E85615-01 June 2017 Real Application Security Administration Oracle Database Real Application

More information

Optimal Performance for your MacroView DMF Solution

Optimal Performance for your MacroView DMF Solution Adding Value Paper In this paper we identify 20 points to consider if you want to optimise the performance of your DMF solution. These points also apply to Message, the subset of DMF that runs in Outlook.

More information

ITP 342 Mobile App Dev. Interface Fun

ITP 342 Mobile App Dev. Interface Fun ITP 342 Mobile App Dev Interface Fun Human Interface Guidelines ios Human Interface Guidelines https://developer.apple.com/ library/ios/documentation/ userexperience/conceptual/ MobileHIG/index.html 2

More information

Title Selection in OASIS. Title Selection in OASIS

Title Selection in OASIS. Title Selection in OASIS Title Selection in OASIS Title Selection in OASIS Slide 2 - Agenda AGENDA Selecting Titles in OASIS A Selector s Guide Definitions - Administrator, Ratifier, Reviewer, Selector Selector Role in OASIS Administration

More information

AuraPlayer Server Manager User Guide

AuraPlayer Server Manager User Guide AuraPlayer Server Manager User Guide AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without

More information

Technical White Paper

Technical White Paper Technical White Paper Version 4.6 Pay Application Print Templates (PAPTs) This technical white paper is designed for Spitfire Project Management System users. It describes how to create PAPTs for use with

More information

COPYRIGHTED MATERIAL. Using Adobe Bridge. Lesson 1

COPYRIGHTED MATERIAL. Using Adobe Bridge. Lesson 1 Lesson Using Adobe Bridge What you ll learn in this lesson: Navigating Adobe Bridge Using folders in Bridge Making a Favorite Creating metadata Using automated tools Adobe Bridge is the command center

More information

SSO Plugin. Installation for BMC AR System. J System Solutions. Version 5.1

SSO Plugin. Installation for BMC AR System. J System Solutions.   Version 5.1 SSO Plugin Installation for BMC AR System J System Solutions http://www.javasystemsolutions.com Version 5.1 Introduction... 3 Compatibility... 4 Operating systems... 4 BMC Action Request System / ITSM...

More information

So You Want To Be A Rockstar Report Developer?

So You Want To Be A Rockstar Report Developer? So You Want To Be A Rockstar Report Developer? October 15-18, 2013 Charlotte, NC Melissa Coates, BI Architect BlueGranite Speaker Bio Melissa Coates Business Intelligence & Data Warehousing Developer BI

More information

Session ID vsphere Client Plug-ins. Nimish Sheth Manas Kelshikar

Session ID vsphere Client Plug-ins. Nimish Sheth Manas Kelshikar Session ID vsphere Client Plug-ins Nimish Sheth Manas Kelshikar Disclaimer This session may contain product features that are currently under development. This session/overview of the new technology represents

More information

ITP 342 Mobile App Dev. Interface Components

ITP 342 Mobile App Dev. Interface Components ITP 342 Mobile App Dev Interface Components Human Interface Guidelines ios Human Interface Guidelines (HIG) https://developer.apple.com/ library/ios/documentation/us erexperience/conceptual/m obilehig/index.html

More information

Documentation for the new Self Admin

Documentation for the new Self Admin Documentation for the new Self Admin The following documentation describes the structure of the new Self Admin site along with the purpose of each site section. The improvements that have been made to

More information

08/10/2018. Istanbul Now Platform User Interface

08/10/2018. Istanbul Now Platform User Interface 08/10/2018 Contents Contents...5 UI16... 9 Comparison of UI16 and UI15 styles... 11 Activate UI16... 15 Switch between UI16 and UI15...15 UI16 application navigator... 16 System settings for the user

More information

VMware AirWatch Chrome OS Platform Guide Managing Chrome OS Devices with AirWatch

VMware AirWatch Chrome OS Platform Guide Managing Chrome OS Devices with AirWatch VMware AirWatch Chrome OS Platform Guide Managing Chrome OS Devices with AirWatch Workspace ONE UEM v9.4 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard

More information

Enabling Performance & Stress Test throughout the Application Lifecycle

Enabling Performance & Stress Test throughout the Application Lifecycle Enabling Performance & Stress Test throughout the Application Lifecycle March 2010 Poor application performance costs companies millions of dollars and their reputation every year. The simple challenge

More information

Introduction to Adobe Acrobat X. Ken Dickinson Bay Area Computer Training

Introduction to Adobe Acrobat X. Ken Dickinson Bay Area Computer Training Introduction to Adobe Acrobat X Ken Dickinson Bay Area Computer Training www.bactrain.com Table of Contents What s the best way to create a PDF?... 3 Convert Microsoft Word, PowerPoint, and Excel files

More information

Introducing Microsoft Office Specialist Excel Module 1. Adobe Captivate Wednesday, May 11, 2016

Introducing Microsoft Office Specialist Excel Module 1. Adobe Captivate Wednesday, May 11, 2016 Slide 1 - Introducing Microsoft Office Specialist Excel 2013 Introducing Microsoft Office Specialist Excel 2013 Module 1 Page 1 of 25 Slide 2 - Lesson Objectives Lesson Objectives Understand what Microsoft

More information

Teacher Guide. Edline -Teachers Guide Modified by Brevard Public Schools Revised 6/3/08

Teacher Guide. Edline -Teachers Guide Modified by Brevard Public Schools  Revised 6/3/08 Teacher Guide Teacher Guide EDLINE This guide was designed to give you quick instructions for the most common class-related tasks that you will perform while using Edline. Please refer to the online Help

More information

Convert Your JavaScript Buttons for Lightning Experience

Convert Your JavaScript Buttons for Lightning Experience Convert Your JavaScript Buttons for Lightning Experience Version 1, 1 @salesforcedocs Last updated: January 8, 2019 Copyright 2000 2019 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

HostPress.ca. User manual. July Version 1.0. Written by: Todd Munro. 1 P age

HostPress.ca. User manual. July Version 1.0. Written by: Todd Munro. 1 P age HostPress.ca User manual For your new WordPress website July 2010 Version 1.0 Written by: Todd Munro 1 P age Table of Contents Introduction page 3 Getting Ready page 3 Media, Pages & Posts page 3 7 Live

More information

Oracle Application Express 5.1

Oracle Application Express 5.1 Oracle Application Express 5.1 New Features [Name] [Title] December 2016 2 Agenda 1 2 3 4 5 6 7 Oracle Application Express Overview Interactive Grid Oracle JET Charts Universal Theme Productivity Improvements

More information

9/2/2006. Cool Solutions for LDAP and AR System

9/2/2006. Cool Solutions for LDAP and AR System 9/2/2006 Cool Solutions for LDAP and AR System Introduction IT organizations often maintain systems containing data that can be useful in conjunction with BMC Remedy packaged applications Active Directories

More information

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites Oracle Database Real Application Security Administration 12c Release 1 (12.1) E61899-04 May 2015 Oracle Database Real Application Security Administration (RASADM) lets you create Real Application Security

More information

Imagine. Create. Discover. User Manual. TopLine Results Corporation

Imagine. Create. Discover. User Manual. TopLine Results Corporation Imagine. Create. Discover. User Manual TopLine Results Corporation 2008-2009 Created: Tuesday, March 17, 2009 Table of Contents 1 Welcome 1 Features 2 2 Installation 4 System Requirements 5 Obtaining Installation

More information

Calendar & Buttons Dashboard Menu Features My Profile My Favorites Watch List Adding a New Request...

Calendar & Buttons Dashboard Menu Features My Profile My Favorites Watch List Adding a New Request... remitview User Guide 1 TABLE OF CONTENTS INTRODUCTION... 3 Calendar & Buttons... 3 GETTING STARTED.... 5 Dashboard.... 7 Menu Features... 8 PROFILE.... 10 My Profile... 10 My Favorites... 12 Watch List...

More information

HYPERION SYSTEM 9 BI+ GETTING STARTED GUIDE APPLICATION BUILDER J2EE RELEASE 9.2

HYPERION SYSTEM 9 BI+ GETTING STARTED GUIDE APPLICATION BUILDER J2EE RELEASE 9.2 HYPERION SYSTEM 9 BI+ APPLICATION BUILDER J2EE RELEASE 9.2 GETTING STARTED GUIDE Copyright 1998-2006 Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion H logo, and Hyperion s product

More information

CORNERSTONE CONNECT REDESIGN Phase 2 (new UI!) GLOBAL SEARCH CONNECT (new UI!)

CORNERSTONE CONNECT REDESIGN Phase 2 (new UI!) GLOBAL SEARCH CONNECT (new UI!) 1 CORNERSTONE CONNECT REDESIGN Phase 2 (new UI!) The next phase of Cornerstone Connect is here! The user interface and experience of Knowledge Bank and Communities have been completely redesigned. This

More information

Toad for Oracle Suite 2017 Functional Matrix

Toad for Oracle Suite 2017 Functional Matrix Toad for Oracle Suite 2017 Functional Matrix Essential Functionality Base Xpert Module (add-on) Developer DBA Runs directly on Windows OS Browse and navigate through objects Create and manipulate database

More information

Testing Documentation

Testing Documentation Testing Documentation Create-A-Page Group 9: John Campbell, Matthew Currier, Dan Martin 5/1/2009 This document defines the methods for testing Create-A-Page, as well as the results of those tests and the

More information

Introduction to Word 2010

Introduction to Word 2010 Introduction to Word 2010 Screen Elements 4 1 2 3 5 10 6 7 8 9 1. File Tab: The File tab will bring you into the Backstage View. The Backstage View is where you manage your files and the data about them

More information

Norcom. e-fileplan Electronic Cabinet System

Norcom. e-fileplan Electronic Cabinet System Norcom e-fileplan Electronic Cabinet System Revision 2.0 \ Phone: (866) 726-6328 Email:sales@norcom-inc.com e-fileplan Overview e-fileplan is an electronic filing cabinet and document imaging system. e-fileplan

More information

Oracle Application Express: Administration 1-2

Oracle Application Express: Administration 1-2 Oracle Application Express: Administration 1-2 The suggested course agenda is displayed in the slide. Each lesson, except the Course Overview, will be followed by practice time. Oracle Application Express:

More information

Advanced Development with the ArcGIS API for JavaScript. Jeremy Bartley, Kelly Hutchins, Derek Swingley

Advanced Development with the ArcGIS API for JavaScript. Jeremy Bartley, Kelly Hutchins, Derek Swingley Advanced Development with the ArcGIS API for JavaScript Jeremy Bartley, Kelly Hutchins, Derek Swingley Agenda FeatureLayer esri.request and Identity Manager OO JS Building your first Dijit Popups Working

More information

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey:

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey: Overview of Survey Administration The first thing you see when you open up your browser to the Ultimate Survey Software is the Login Page. You will find that you see three icons at the top of the page,

More information

IBM Case Manager Client

IBM Case Manager Client Presented by IBM developerworks ibm.com/developerworks/ IBM Case Manager Client Information Management 1 2011 IBM Corporation What is IBM Case Manager Client? A web-based application: Used by case workers

More information

RELEASE NOTES. Version NEW FEATURES AND IMPROVEMENTS

RELEASE NOTES. Version NEW FEATURES AND IMPROVEMENTS S AND S Implementation of the Google Adwords connection type Implementation of the NetSuite connection type Improvements to the Monarch Swarm Library Column sorting and enhanced searching Classic trapping

More information

1 Dashboards Administrator's Guide

1 Dashboards Administrator's Guide 1 Dashboards Administrator's Guide Page 1 2 Dashboards Administrator's Guide Table of Contents FAQs... 4 Q: Why does my browser tell me Microsoft Silverlight is required when I am trying to view a Visualization?

More information

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 Query Studio Training Guide Cognos 8 February 2010 DRAFT Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 2 Table of Contents Accessing Cognos Query Studio... 5

More information

ServiceWise/CustomerWise 10.1

ServiceWise/CustomerWise 10.1 Page 1 of 35 ServiceWise/CustomerWise 10.1 Highlights Widescreen and multi monitor support Unified incident level attachments New HTML5 ProjectPlan with resource management Doubled number of available

More information

Drag and Drop Form Builder. Data Verity #2 Erikka Baker James Miller Jordan Schmerge

Drag and Drop Form Builder. Data Verity #2 Erikka Baker James Miller Jordan Schmerge Drag and Drop Form Builder Data Verity #2 Erikka Baker James Miller Jordan Schmerge June 21, 2016 Table of Contents Introduction Requirements System Architecture Technical Design Component Highlighting

More information

LOCKBOX IMAGE ARCHIVE User Guide

LOCKBOX IMAGE ARCHIVE User Guide LOCKBOX IMAGE ARCHIVE User Guide 2018 First Tennessee Bank National Association operating as First Tennessee Bank and Capital Bank. Member FDIC. TABLE OF CONTENTS INTRODUCTION.. 3 MINIMUM SYSTEM REQUIREMENTS...

More information

Excel4apps Wands 5 Architecture Excel4apps Inc.

Excel4apps Wands 5 Architecture Excel4apps Inc. Excel4apps Wands 5 Architecture 2014 Excel4apps Inc. Table of Contents 1 Introduction... 3 2 Overview... 3 3 Client... 3 4 Server... 3 4.1 Java Servlet... 4 4.2 OAF Page... 4 4.3 Menu and Function... 4

More information

Software Requirements Specification. for WAVED. Version 3.0. Prepared By:

Software Requirements Specification. for WAVED. Version 3.0. Prepared By: Software Requirements Specification for WAVED Version 3.0 Prepared By: Sean Bluestein, Kristian Calhoun, Keith Horrocks, Steven Nguyen, Hannah Pinkos Advisor: Kurt Schmidt Stakeholder: Climate Central

More information

What s New AccessVia Publishing Platform Features and Improvements

What s New AccessVia Publishing Platform Features and Improvements ACCESSVIA 3131 Western Avenue #530 Seattle WA 98121.1028 +1.206.285.4994 www.accessvia.com What s New AccessVia Publishing Platform Features and Improvements v8.5.265 to v8.6.272 May 8, 2014 Overview New

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

Lava New Media s CMS. Documentation Page 1

Lava New Media s CMS. Documentation Page 1 Lava New Media s CMS Documentation 5.12.2010 Page 1 Table of Contents Logging On to the Content Management System 3 Introduction to the CMS 3 What is the page tree? 4 Editing Web Pages 5 How to use the

More information

CROMWELLSTUDIOS. Content Management System Instruction Manual V1. Content Management System. V1

CROMWELLSTUDIOS. Content Management System Instruction Manual V1.   Content Management System. V1 Content Management System Instruction Manual V1 www.cromwellstudios.co.uk Cromwell Studios Web Services Content Management System Manual Part 1 Content Management is the system by which you can change

More information

Database Manual Suite Version 2.8. Page 1 of 82. Noventri Suite Database Manual SF REV 03 3/21/14

Database Manual Suite Version 2.8. Page 1 of 82. Noventri Suite Database Manual SF REV 03 3/21/14 Database Manual Suite Version 2.8 Page 1 of 82 Database Manual Table of Contents 1 Overview... 4 2 Database Image/Text General... 5 3 Data Text... 8 4 ODBC... 12 4.4 ODBC Connect... 13 4.4.1 General...

More information

IQCare Troubleshooting Guide

IQCare Troubleshooting Guide Last updated: January 17, 2013 Table of Contents General... 3 Q: Is IQCare an internet application? Why does it run on a browser?... 3 Q: What are the machine requirements for IQCare to run with good performance?...

More information

The CHECKBOX Quick Start Guide

The CHECKBOX Quick Start Guide The CHECKBOX Quick Start Guide This guide will provide step-by-step directions in order to help you get started faster with Checkbox. First, Some Basic Concepts The CHECKBOX Survey Lifecycle Create Edit

More information

Perceptive Nolij Web. Release Notes. Version: 6.8.x

Perceptive Nolij Web. Release Notes. Version: 6.8.x Perceptive Nolij Web Release Notes 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 Perceptive Nolij Web

More information

VMware AirWatch Chrome OS Platform Guide Managing Chrome OS Devices with AirWatch

VMware AirWatch Chrome OS Platform Guide Managing Chrome OS Devices with AirWatch VMware AirWatch Chrome OS Platform Guide Managing Chrome OS Devices with AirWatch AirWatch v9.3 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

CHAPTER. The Role of PL/SQL in Contemporary Development

CHAPTER. The Role of PL/SQL in Contemporary Development CHAPTER 1 The Role of PL/SQL in Contemporary Development 4 Oracle PL/SQL Performance Tuning Tips & Techniques When building systems, it is critical to ensure that the systems will perform well. For example,

More information

Business Edition Basic License User Guide

Business Edition Basic License User Guide Business Edition Basic License User Guide Table of Contents 1. Dashboard-----------------------------------------------------------------------------------------3 2. Catalog Search-----------------------------------------------------------------------------------4

More information

NMS Spectrum Analyzer Application

NMS Spectrum Analyzer Application NMS Spectrum Analyzer Application Spectrum View Window... 3 Context Sensitive Menus for Spectrum View Window... 3 Add Horizontal Line... 4 Add Vertical Line... 4 Show Lines... 4 Hide Lines... 4 Delete

More information

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved VisualPST 2.4 Visual object report editor for PowerSchool Copyright 2004-2015 Park Bench Software, LLC All Rights Reserved www.parkbenchsoftware.com This software is not free - if you use it, you must

More information

Spark is a mobile application that allows teachers to capture, track, and and share their students important learning moments.

Spark is a mobile application that allows teachers to capture, track, and and share their students important learning moments. Heuristic Evaluation of Spark Problem Spark is a mobile application that allows teachers to capture, track, and and share their students important learning moments. Violations Found 1 [H2-10: Help & Documentation]

More information

Table of Contents. Table of Contents 3

Table of Contents. Table of Contents 3 User Guide for Administrators EPiServer 7 CMS Revision A, 2012 Table of Contents 3 Table of Contents Table of Contents 3 Introduction 5 About this Documentation 5 Accessing EPiServer Help System 5 Online

More information

BindTuning Installation Instructions, Setup Guide. Tiles Web Part Setup Guide

BindTuning Installation Instructions, Setup Guide. Tiles Web Part Setup Guide BindTuning Installation Instructions, Setup Guide Tiles Web Part Setup Guide This documentation was written by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves,

More information

docalpha Monitoring Station

docalpha Monitoring Station ARTSYL DOCALPHA MONITORING STATION MANUAL 1. docalpha Architecture Overview... 3 1.1. Monitoring Station Overview... 4 2. What's New in docalpha Monitoring Station 4.5... 4 3. Working with Monitoring Station...

More information

Content Author's Reference and Cookbook

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

More information

Connect with Remedy Smart IT 2.0: Configurability and Customization Webinar Q&A

Connect with Remedy Smart IT 2.0: Configurability and Customization Webinar Q&A Connect with Remedy Smart IT 2.0: Configurability and Customization Webinar Q&A Presentation References BMC Remedy with Smart IT 2.0 User Documentation: Administering https://docs.bmc.com/docs/smartit20/administering-749669934.html

More information

eschoolplus+ Cognos Query Studio Training Guide Version 2.4

eschoolplus+ Cognos Query Studio Training Guide Version 2.4 + Training Guide Version 2.4 May 2015 Arkansas Public School Computer Network This page was intentionally left blank Page 2 of 68 Table of Contents... 5 Accessing... 5 Working in Query Studio... 8 Query

More information

Usability. Daniela Rosner. Web Architecture, October 9, School of Information UC Berkeley

Usability. Daniela Rosner. Web Architecture, October 9, School of Information UC Berkeley Usability Daniela Rosner Web Architecture, 290-03 October 9, 2007 School of Information UC Berkeley Outline Introduction what is usability Best Practices common solutions Design Patterns shared languages

More information

Creating Web Mapping Applications. Nikki Golding

Creating Web Mapping Applications. Nikki Golding Creating Web Mapping Applications Nikki Golding Agenda Web Mapping and Map Services Fundamentals ArcGIS Web Mapping Applications - ArcGIS.com Viewer - ArcGIS Explorer Online - ArcGIS Viewer for Flex -

More information

Using Dreamweaver. 4 Creating a Template. Logo. Page Heading. Home About Us Gallery Ordering Contact Us Links. Page content in this area

Using Dreamweaver. 4 Creating a Template. Logo. Page Heading. Home About Us Gallery Ordering Contact Us Links. Page content in this area 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan that is shown below. Logo Page Heading

More information

Proprietary Rights 2014 Qarbon.com, Inc. All rights reserved

Proprietary Rights 2014 Qarbon.com, Inc. All rights reserved User Manual Proprietary Rights 2014 Qarbon.com, Inc. All rights reserved The information contained in this manual is subject to change at any time and without prior notice. No part of this manual may be

More information

Altima Lookbook Professional Magento ecommerce Extension Version 1.6.9

Altima Lookbook Professional Magento ecommerce Extension Version 1.6.9 Altima Lookbook Professional Magento ecommerce Extension Version 1.6.9 Compatibility: Community Edition: 1.4.x.x, 1.5.x.x, 1.6.x.x, 1.7.x.x, 1.8.x.x, 1.9.x.x Enterprise Edition: 1.9 and later Release date:

More information

HP Database and Middleware Automation

HP Database and Middleware Automation HP Database and Middleware Automation For Windows Software Version: 10.10 SQL Server Database Refresh User Guide Document Release Date: June 2013 Software Release Date: June 2013 Legal Notices Warranty

More information