Generating Specification Documents from Models using BIRT

Size: px
Start display at page:

Download "Generating Specification Documents from Models using BIRT"

Transcription

1 2nd Biannual Symposium On Eclipse Open Source Software & OMG Open Specifications June 22, 2010 Generating Specification Documents from Models using BIRT Maged Elaasar Senior Software Engineer IBM Rational Modeling Tools Session 2 : Specification Authoring 2010 IBM Corporation

2 Outline The need to generate specification documents from models Introduction to BIRT and its integration in RSM modeling tool Designing a specification document template using BIRT Limitations of using BIRT for document generation 2

3 The need for generating specification documents The current process of producing specification documents: Specification documents are maintained in a word processing tool (e.g. Frame Maker). Metamodels are maintained as UML models using a UML tool (e.g. RSM) Changes are applied separately to both artifacts leading to inconsistencies (~30% of issues) Hard to do global changes to document structure or style Hard to keep repeated information consistent throughout the spec document Hard to producing alternative document design or content 3

4 Characteristics of a Desired Solution Link documentation to metamodels Documentation can either be embedded in metamodels (Comments) or in external files Documentation can be done in a textual markup language (e.g. HTML/RTF) Define a profile with stereotypes to organize documentation Can be applied to the metamodel itself Can be applied by separate document model with references to metamodels Define a document template that extracts and layouts content form metamodels Define the structure, layout and style of the document sections Define queries to extract information from metamodels Link the document sections from the corresponding model queries A candidate tool for template authoring and generation is BIRT. Used to generate the Diagram Definition specification 4

5 What is BIRT? BIRT - Business Intelligence and Reporting Tools Provides visual report authoring experience Supports a variety of report content (text, tables, charts etc) Creates various output formats (HTML, PDF, DOC, etc) Natively works with data in tabular format, but Provides Open Data Access (ODA) interface to map other data to native format: RSM tool implements ODA to define: A mapping from EMF-based models An extension to handle UML profiles An extension to handle GMF diagrams 5

6 BIRT Report Template Values Data Report Data Report Parameters Points of variability of the report Data Sources The raw data being reported on Data Sets Subsets of the data sources fetched using queries and mapped to a tabular format Report Layout/Style Text Image Table Chart 6

7 BIRT Report Editor Report Data Report Layout / Style Report Widgets Report Properties 7

8 Report Parameters Report parameters allow authors to capture variability in a report Report parameters can be configured with various styles and presented with various widgets Text Box Dynamic Combo Box Static Combo Box 8

9 Data Sources Specify how to access data (models) and meta data (metamodels / profiles) 9

10 Data Sets Data sets define queries against data sources and put the result into a tabular format (with rows and columns) Data sets can be defined with parameters 10

11 Data Sets Row mapping: specifies a query to collect model elements representing the rows of a table Expression: an XPath query that collects elements Type: the type of elements being collected Stereotypes: the stereotypes applied to row elements being collected 11

12 Data Sets Column mapping: define columns representing data extracted from row elements name: user specified name for the column query: expression to extract primitive data from each row element type: the primitive type of the query result 12

13 XPath Functions Prepackaged EMF-Generic Functions geturi( xpath ) gets the URI of a given element resolveuri( uri ) resolves the given URI to its element instanceof( xpath, type ) checks if a given element conforms to a given type getxmiid( xpath ) gets the unique GUID of an element getxmitype( xpath ) gets the type of an element oclquery( xpath, OCL statement ) gets a subset of given elements that satisfy given OCL condition oclevaluate( xpath, OCL statement ) evaluates the given OCL expression on the given element Prepackaged GMF-Specific Functions getdiagramimage( xpath, maxwidth, maxheight ) renders given diagram subject to given maximum resolution getdiagramhtmlimage( xpath, path, tilewidth, tileheight ) renders the given diagram as HTML tile grid Prepackaged UML-Specific Functions getdiagrams( xpath ) gets the diagram of the given UML namespace element getelementswithstereotype( xpath, stereotype ) gets a subset of given elements with given stereotype getstereotypepropertyvalue( xpath, stereotype attribute ) gets value of a given stereotype attribute Custom Functions Implement org.eclipse.jet.xpath.xpathfunction interface with one method Object evaluate(list args) Package implementation in a PDE plugin and register it with the org.eclipse.jet.xpathfunctions extension point 13

14 Row Query Examples To get All interfaces All kinds of classes All first level packages All class diagrams contained by any package All attributes of a class parameter All interfaces whose owner s name is specified All diagrams whose name starts with the st All attributes owned by classes All classes with a given stereotype Query expression //Interface instanceof(//*, uml:class ) Model/nestedPackages getdiagrams(//package)[@type = Class ] resolveuri($classuri)/ownedattribute //Interface[owner/@name=$owner_name] getdiagrams(//*)[upper-case(substring(@name,1,2))='st'] oclevaluate(//class, self.ownedattributes ) getelementswithstereotype(//class, Profile1::Stereotype1 ) 14

15 Column Query Examples To get The name of the element The URI (unique id) of the element The type of the element The isabstract attribute of a class The count of attributes of a class The diagram s image blob up to a maximum resolution The diagram s image as an HTML grid of tiles A value derived using an OCL expression A value of a stereotype attribute Query getxmiid(.) = true count(/.ownedattribute) getdiagramimage(., $maxwidth, $maxheight) getdiagramhtmlimage(., /temp, $tilewidth, $tileheight) oclevaluete(., self.getqualifiedname() ) getstereotypepropertyvalue(., Profile1::Stereotype1::property1 ) 15

16 Report Design Use the palette view to insert various widgets in your reports Static text HTML Text Computed Text (Static / HTML) e.g. for model doc Image : embedded, from URL, from expression, e.g. for diagrams Table with rows / columns Chats of various kinds 16

17 Report Design Link the report widgets to data in your data sets 17

18 Report Generation BIRT supports 2-phase generation of reports: Generation Phase: generates an intermediate output-independent document Presentation Phase: renders the intermediate document to specific output (e.g. PDF) BIRT elements can be scripted (in Java Script) at various generation events Define reusable code snippets in global java script functions in report 18

19 Other BIRT Features Report Libraries: report parts can be defined in report libraries imported by report Master Pages: several can be defined and linked to report sections Report Themes: themes can be defined in CSS style sheets and applied to report 19

20 Designing a specification document template using BIRT Analyze the current specification document template components: Cover Page Legal Statements Issues Page Preface Table of Contents Submission material (Section 0) Front Matter Metamodels Annexes Index Editable directly Fixed by OMG Generated from Model Post Processing 20

21 Designing a specification document template using BIRT Create report library with a separate page (Grid) for each component This way each component can be manipulated separately Create report design whose body integrates the components in order Editing occurs in the library and report picks changes automatically 21

22 Designing a specification document template using BIRT Define one or more master pages and link each Grid to one of them This way each grid can have different headers, footers, page number style etc. Define a theme using a CSS style sheet Styles are either pre-defined (apply automatically) or user-defined (apply manually) 22

23 Designing a specification document template using BIRT Define one UML data source for each set of related metamodels Define data sets from the data source Define a unique key column (use URI for EMF elements) Define data set parameters (use URI to identify elements) Define the content of the grid with nested tables bound to data sets Packages Classes Attributes Associations Operations 23

24 Designing a specification document template using BIRT Use the following widgets: Use Text widget for static text content (regular or markup) Ex: This <b>state</b> class can do this. Use Dynamic Text widget for dynamic text content (calculated with script) Use Shared Image widget for adding figures from files Use Dynamic Image widget for adding diagrams (from models) Create a separate widget for content that need to be bookmarked content that need to be in TOC Use scripts to automatically numbers sections, figures and tables Apply appropriate styles from theme to text elements 24

25 Designing a specification document template using BIRT Implement cross-referencing: Add bookmarks: Use naming conventions for naming bookmarks of numbered items: Sections: Section_<name> (e.g. Section_UML::Kernel::Class) Figures: Figure_<name> (e.g. Figure_Kernel Package) Tables: Table_<name> (e.g. Table_Classifier Notations) Write a script to build bookmark names to numbers map Add cross-references: Insert [[bookmark_name]] to specify a cross-reference in the text Ex. as can be found in Section [[Section_UML::Kernel::Classifier]]. Write a script to substitute them with cross-reference links Ex. as can be found in Figure

26 Limitations of using BIRT No support for embedded TOC or Index in the template itself Workaround: do post processing to add these in the output format TOC nesting in PDF output is based only on table nesting Workaround: batched BIRT to base it on used TOC styles (TOC1, TOC2 etc) No support for resize image proportionally to fit container in PDF output Only supported are original size, exact size or % of container size Workaround: use original size but ensure diagrams are small enough to fit Master pages do not support alternating page number placement page number restarts Roman numbers BIRT is an active project and could fix these issues in the future 26

27 27

28 Copyright IBM Corporation All rights reserved. The information contained in these materials is provided for informational purposes only, and is provided AS IS without warranty of any kind, express or implied. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, these materials. Nothing contained in these materials is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software. References in these materials to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in these materials may change at any time at IBM s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. IBM, the IBM logo, Rational, the Rational logo, Telelogic, the Telelogic logo, and other IBM products and services are trademarks of the International Business Machines Corporation, in the United States, other countries or both. Other company, product, or service names may be trademarks or service marks of others. 28

Innovate 2013 Automated Mobile Testing

Innovate 2013 Automated Mobile Testing Innovate 2013 Automated Mobile Testing Marc van Lint IBM Netherlands 2013 IBM Corporation Please note the following IBM s statements regarding its plans, directions, and intent are subject to change or

More information

IBM Rational Software Development Conference IBM Rational Software. Presentation Agenda. Development Conference

IBM Rational Software Development Conference IBM Rational Software. Presentation Agenda. Development Conference IBM Rational Software Development Conference 2008 UML to EGL without writing code and deploy as Java or COBOL Reginaldo Barosa Executive IT Specialist, TechWorks Americas rbarosa@us.ibm.com Session 20036

More information

Using Question/Answer Wizards and Process Slots to configure an RMC process/wbs

Using Question/Answer Wizards and Process Slots to configure an RMC process/wbs IBM Software Group Using Question/Answer Wizards and Process Slots to configure an RMC process/wbs Bruce MacIsaac Rational Method Composer Product Manager bmacisaa@us.ibm.com Agenda Process builder Process

More information

HATS APPLICATION DEVELOPMENT FOR A MOBILE DEVICE

HATS APPLICATION DEVELOPMENT FOR A MOBILE DEVICE HATS APPLICATION DEVELOPMENT FOR A MOBILE DEVICE The process for developing a Rational HATS Web application for a mobile device is the same as developing any Rational HATS Web application, with some considerations

More information

IBM Social Rendering Templates for Digital Data Connector

IBM Social Rendering Templates for Digital Data Connector IBM Social Rendering Templates for Digital Data Dr. Dieter Buehler Software Architect WebSphere Portal / IBM Web Content Manager Social Rendering Templates for DDC- Overview This package demonstrates how

More information

Developing Enterprise Services for Mobile Devices using Rational Software Architect / Worklight

Developing Enterprise Services for Mobile Devices using Rational Software Architect / Worklight Developing Enterprise Services for Mobile Devices using Rational Software Architect / Worklight Sandeep Katoch Architect, Rational Software Architect Development sakatoch@in.ibm.com Agenda Introduction

More information

MSS VSOC Portal Single Sign-On Using IBM id IBM Corporation

MSS VSOC Portal Single Sign-On Using IBM id IBM Corporation MSS VSOC Portal Single Sign-On Using IBM id Changes to VSOC Portal Sign In Page Users can continue to use the existing Client Sign In on the left and enter their existing Portal username and password.

More information

Lotus Symphony. Siew Chen Way Lotus Technical Consultant

Lotus Symphony. Siew Chen Way Lotus Technical Consultant Lotus Symphony Siew Chen Way Lotus Technical Consultant What is Lotus Symphony? A set of office productivity applications Create, edit, share documents, spreadsheets, and presentations Can handle the majority

More information

Value of managing and running automated functional tests with Rational Quality Manager

Value of managing and running automated functional tests with Rational Quality Manager Value of managing and running automated functional tests with Rational Quality Manager Shinoj Zacharias (Shinoj.zacharias@in.ibm.com) Senior Software Engineer, Technical Lead IBM Software Fariz Saracevic

More information

Effective PMR Submission Best Practice. IBM Learn Customer Support

Effective PMR Submission Best Practice. IBM Learn Customer Support Effective PMR Submission Best Practice IBM Learn Customer Support PMR Best Practices When submitting a PMR, please make sure you provide as much information as you have. This allows the team to troubleshoot,

More information

RUP for Systems Z and other Legacy Systems

RUP for Systems Z and other Legacy Systems IBM Software Group RUP for Systems Z and other Legacy Systems Susan M Burk Senior Managing Consultant IBM smburk@us.ibm.com 413-726-9361 2006 IBM Corporation Agenda Objectives A Quick Introduction to RUP

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

Benchmarking z/os Development Tasks - Comparing Programmer Productivity using RDz and ISPF

Benchmarking z/os Development Tasks - Comparing Programmer Productivity using RDz and ISPF IBM Software Group Benchmarking z/os Development Tasks - Comparing Programmer Productivity using RDz and ISPF Jon Sayles RDz Technical Enablement jsayles@us.ibm.com 2010 IBM Corporation Agenda and Disclaimer

More information

ISAM Federation STANDARDS AND MAPPINGS. Gabriel Bell IBM Security L2 Support Jack Yarborough IBM Security L2 Support.

ISAM Federation STANDARDS AND MAPPINGS. Gabriel Bell IBM Security L2 Support Jack Yarborough IBM Security L2 Support. ISAM Federation STANDARDS AND MAPPINGS Gabriel Bell IBM Security L2 Support Jack Yarborough IBM Security L2 Support July 19, 2017 Agenda ISAM Federation Introduction Standards and Protocols Attribute Sources

More information

Lotus Technical Night School XPages and RDBMS

Lotus Technical Night School XPages and RDBMS Lotus Technical Night School XPages and RDBMS Note: Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing

More information

Lab DSE Designing User Experience Concepts in Multi-Stream Configuration Management

Lab DSE Designing User Experience Concepts in Multi-Stream Configuration Management Lab DSE-5063 Designing User Experience Concepts in Multi-Stream Configuration Management February 2015 Please Note IBM s statements regarding its plans, directions, and intent are subject to change or

More information

This document describes the features supported by the new PDF emitter in BIRT 2.0.

This document describes the features supported by the new PDF emitter in BIRT 2.0. Report PDF Emitter Version: Draft 2 Abstract This document describes the features supported by the new PDF emitter in BIRT 2.0. Document Revisions Version Date Description of Changes Draft 2 8/12/2005

More information

AD406: What s New in Digital Experience Development with IBM Web Experience Factory

AD406: What s New in Digital Experience Development with IBM Web Experience Factory AD406: What s New in Digital Experience Development with IBM Web Experience Factory Jonathan Booth, Senior Architect, Digital Experience Tooling, IBM Adam Ginsburg, Product Manager, Digital Experience

More information

Adobe RoboHelp (2019 release)

Adobe RoboHelp (2019 release) (2019 release) An all-new way to create for you. An amazing experience for your customers. Version comparison chart Available 11 2015 release 2017 release 2019 release Authoring Productivity Snippets within

More information

Getting Started with Rational Team Concert

Getting Started with Rational Team Concert Getting Started with Rational Team Concert or RTC in 16 Steps Kai-Uwe Maetzel IBM Rational Software kai-uwe_maetzel@us.ibm.com SDP 20 2009 IBM Corporation This Presentation is Good for You if You know

More information

Towards A Common Build Infrastructure: Designing For Reusability

Towards A Common Build Infrastructure: Designing For Reusability Towards A Common Build Infrastructure: Designing For Reusability Nick Boldt, Release Engineer Eclipse Modeling Project IBM Rational Software Toronto, Canada 1 Agenda History of EMFT / Modeling Project

More information

Unified Modeling Language (MDT UML2) 3.0 Galileo Simultaneous Release Review. 4 June, 2009

Unified Modeling Language (MDT UML2) 3.0 Galileo Simultaneous Release Review. 4 June, 2009 Unified Modeling Language (MDT UML2) 3.0 Galileo Simultaneous Release Review 4 June, 2009 http://www.eclipse.org/projects/dev_process/development_pr ocess.php#6_3_3_release_review 1 Galileo Simultaneous

More information

WP710 Language: English Additional languages: None specified Product: WebSphere Portal Release: 6.0

WP710 Language: English Additional languages: None specified Product: WebSphere Portal Release: 6.0 General information (in English): Code: WP710 Language: English Additional languages: Brand: Lotus Additional brands: None specified Product: WebSphere Portal Release: 6.0 WW region: WorldWide Target audience:

More information

SCREEN COMBINATION FEATURE IN HATS 7.0

SCREEN COMBINATION FEATURE IN HATS 7.0 SCREEN COMBINATION FEATURE IN HATS 7.0 This white paper provides details regarding screen combination feature in HATS 7.0. What is Screen combination in HATS 7.0? HATS 7.0 can combine together multiple

More information

IBM InfoSphere Data Replication s Change Data Capture (CDC) Fast Apply IBM Corporation

IBM InfoSphere Data Replication s Change Data Capture (CDC) Fast Apply IBM Corporation IBM InfoSphere Data Replication s Change Data Capture (CDC) Fast Apply Agenda - Overview of Fast Apply - When to use Fast Apply - The available strategies & when to use - Common concepts - How to configure

More information

IBM Infrastructure Suite for z/vm and Linux: Introduction IBM Tivoli OMEGAMON XE on z/vm and Linux

IBM Infrastructure Suite for z/vm and Linux: Introduction IBM Tivoli OMEGAMON XE on z/vm and Linux IBM Infrastructure Suite for z/vm and Linux: Introduction IBM Tivoli OMEGAMON XE on z/vm and Linux August/September 2015 Please Note IBM s statements regarding its plans, directions, and intent are subject

More information

UX400. OpenUI5 Development Foundations COURSE OUTLINE. Course Version: 02 Course Duration: 5 Day(s)

UX400. OpenUI5 Development Foundations COURSE OUTLINE. Course Version: 02 Course Duration: 5 Day(s) UX400 OpenUI5 Development Foundations. COURSE OUTLINE Course Version: 02 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

IBM Rational Software

IBM Rational Software IBM Rational Software Development Conference 2008 Benefits realized in using Rational Functional Tester and Performance Tester Presenters Name Sumika Mukerji & Sharath TS sumika.mukerji@accenture.com sharath.t.s@accenture.com

More information

IBM Application Performance Analyzer for z/os Version IBM Corporation

IBM Application Performance Analyzer for z/os Version IBM Corporation IBM Application Performance Analyzer for z/os Version 11 IBM Application Performance Analyzer for z/os Agenda Introduction to Application Performance Analyzer for z/os A tour of Application Performance

More information

Business Intelligence and Reporting Tools

Business Intelligence and Reporting Tools Business Intelligence and Reporting Tools Release 1.0 Requirements Document Version 1.0 November 8, 2004 Contents Eclipse Business Intelligence and Reporting Tools Project Requirements...2 Project Overview...2

More information

Rational Asset Manager V7.5.1 packaging October, IBM Corporation

Rational Asset Manager V7.5.1 packaging October, IBM Corporation https://jazz.net/projects/rational-asset-manager/ Rational Asset Manager V7.5.1 packaging October, 2011 IBM Corporation 2011 The information contained in this presentation is provided for informational

More information

Revolutionize the Way You Work With IMS Applications Using IBM UrbanCode Deploy Evgeni Liakhovich, IMS Developer

Revolutionize the Way You Work With IMS Applications Using IBM UrbanCode Deploy Evgeni Liakhovich, IMS Developer Revolutionize the Way You Work With IMS Applications Using IBM UrbanCode Deploy Evgeni Liakhovich, IMS Developer evgueni@us.ibm.com * 2016 IBM Corporation Trademarks, copyrights, disclaimers IBM, the IBM

More information

ISAM Advanced Access Control

ISAM Advanced Access Control ISAM Advanced Access Control CONFIGURING TIME-BASED ONE TIME PASSWORD Nicholas J. Hasten ISAM L2 Support Tuesday, November 1, 2016 One Time Password OTP is a password that is valid for only one login session

More information

Technical Deep Dive Session

Technical Deep Dive Session Technical Deep Dive Session Today s agenda Planning your Lotus Notes & Domino 8 Rollout: Why Everyone Will Want Lotus Notes 8 Hardware and Software Requirements Install and Upgrade Options Pre-upgrade

More information

Deploying IMS Applications with IBM UrbanCode Deploy

Deploying IMS Applications with IBM UrbanCode Deploy Deploying IMS Applications with IBM UrbanCode Deploy Evgeni Liakhovich, IMS Develper evgueni@us.ibm.com * IMS Technical Symposium 2015 Trademarks, copyrights, disclaimers IBM, the IBM logo, and ibm.com

More information

REST APIs on z/os. How to use z/os Connect RESTful APIs with Modern Cloud Native Applications. Bill Keller

REST APIs on z/os. How to use z/os Connect RESTful APIs with Modern Cloud Native Applications. Bill Keller REST APIs on z/os How to use z/os Connect RESTful APIs with Modern Cloud Native Applications Bill Keller bill.keller@us.ibm.com Important Disclaimer IBM s statements regarding its plans, directions and

More information

[CONFIGURE NEW PAYMENT METHOD IN STORE FRONT]

[CONFIGURE NEW PAYMENT METHOD IN STORE FRONT] 2009 [CONFIGURE NEW PAYMENT METHOD IN STORE FRONT] [This document is helpful for adding a new payment method in websphere commerce Store Front. Here we are adding Discover Credit Card as a new payment

More information

What s New in the IBM Lotus Notes Client. Kevin O Connell, Consulting Manager, IBM Asia Pacific

What s New in the IBM Lotus Notes Client. Kevin O Connell, Consulting Manager, IBM Asia Pacific Technical Track What s New in the IBM Lotus Notes Client Kevin O Connell, Consulting Manager, IBM Asia Pacific ID101 What's New in the IBM Lotus Notes Client Kevin O'Connell Asia Pacific Consulting Manager

More information

What's New in IBM WebSphere Portlet Factory and Introducing IBM Lotus Connections 2.5 Portlets

What's New in IBM WebSphere Portlet Factory and Introducing IBM Lotus Connections 2.5 Portlets What's New in IBM WebSphere Portlet Factory 6.1.5 and Introducing IBM Lotus Connections 2.5 Portlets Jason Cornell, Product Manager WebSphere Portlet Factory and Dashboard Accelerator 2009 IBM Corporation

More information

What's New in QuarkXPress 10.1

What's New in QuarkXPress 10.1 What's New in QuarkXPress 10.1 CONTENTS Contents What's New in QuarkXPress 10.1...3 New features...4 Dynamic guides...4 Notes...4 Books...4 Redline...5 Other new features...5 Legal notices...6 ii WHAT'S

More information

2010 Exceptional Web Experience

2010 Exceptional Web Experience 2010 Exceptional Web Experience Session Code: TECH-D07 Session Title: What's New In IBM WebSphere Portlet Factory Jonathan Booth, Senior Architect, WebSphere Portlet Factory, IBM Chicago, Illinois 2010

More information

InfoSphere Guardium 9.1 TechTalk Reporting 101

InfoSphere Guardium 9.1 TechTalk Reporting 101 InfoSphere Guardium 9.1 TechTalk Reporting 101 Click to add text Dario Kramer, Senior System Architect dariokramer@us.ibm.com 2013 IBM Corporation Acknowledgements and Disclaimers Availability. References

More information

Creating Custom Dojo Widgets Using WTP

Creating Custom Dojo Widgets Using WTP Creating Custom Dojo Widgets Using WTP Nick Sandonato IBM Rational Software WTP Source Editing Committer nsandona@us.ibm.com Copyright IBM Corp., 2009. All rights reserved; made available under the EPL

More information

WebSphere Commerce Developer Professional

WebSphere Commerce Developer Professional Software Product Compatibility Reports Product WebSphere Commerce Developer Professional 8.0.1+ Contents Included in this report Operating systems Glossary Disclaimers Report data as of 2018-03-15 02:04:22

More information

Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring. Timothy Burris, Cloud Adoption & Technical Enablement

Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring. Timothy Burris, Cloud Adoption & Technical Enablement Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring Timothy Burris, Cloud Adoption & Technical Enablement Copyright IBM Corporation 2017 IBM, the IBM logo and ibm.com

More information

What s New in IBM Rational Software Architect 8.5 and Rational Software Architect Design Manager 4.0 Beta

What s New in IBM Rational Software Architect 8.5 and Rational Software Architect Design Manager 4.0 Beta What s New in IBM Rational Software Architect 8.5 and Rational Software Architect Design Manager 4.0 Beta Sandeep Kohli STSM, Product Lead Rational Software Architect & Design Management sandeep.kohli@in.ibm.com

More information

American Indian College Fund

American Indian College Fund American Indian College Fund Resource Repository Development Plan May 2017 The following is a detailed description of the functional requirements for the new Resource Repository and the development approach

More information

What's New in IBM Notes 9.0 Social Edition

What's New in IBM Notes 9.0 Social Edition What's New in IBM Notes 9.0 Social Edition Jaitirth V. Shirole Advisory Software Engineer, IBM http://www.ibm.com/developerworks/mydeveloperworks/profiles/user/jaitirth Snehal Devasthali System Software

More information

IBM SPSS Text Analytics for Surveys

IBM SPSS Text Analytics for Surveys Software Product Compatibility Reports Product IBM SPSS Text Analytics for Surveys 4.0.1.0 Contents Included in this report Operating systems Hypervisors (No hypervisors specified for this product) Prerequisites

More information

Hands-on Lab Session 9011 Working with Node.js Apps in IBM Bluemix. Pam Geiger, Bluemix Enablement

Hands-on Lab Session 9011 Working with Node.js Apps in IBM Bluemix. Pam Geiger, Bluemix Enablement Hands-on Lab Session 9011 Working with Node.js Apps in IBM Bluemix Pam Geiger, Bluemix Enablement Copyright IBM Corporation 2017 IBM, the IBM logo and ibm.com are trademarks of International Business Machines

More information

BOD410 SAP Lumira 2.0 Designer

BOD410 SAP Lumira 2.0 Designer BOD410 SAP Lumira 2.0 Designer. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

PeopleTools 8.55: Mobile Application Platform

PeopleTools 8.55: Mobile Application Platform PeopleTools 8.55: Mobile Application Platform November 2016 PeopleTools 8.55: Mobile Application Platform This software and related documentation are provided under a license agreement containing restrictions

More information

Using Hive for Data Warehousing

Using Hive for Data Warehousing An IBM Proof of Technology Using Hive for Data Warehousing Unit 5: Hive Storage Formats An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2013 US Government Users Restricted Rights -

More information

IBM Lotus Notes 8.5 Version to Version Comparison IBM Corporation

IBM Lotus Notes 8.5 Version to Version Comparison IBM Corporation IBM Lotus Notes 8.5 Version to Version Comparison Overview This presentation highlights the evolutionary value provided across selected releases of IBM Lotus Notes software by outlining selected enhancements

More information

SCM380 SAP MII - Manufacturing Integration and Intelligence Fundamentals

SCM380 SAP MII - Manufacturing Integration and Intelligence Fundamentals SCM380 SAP MII - Manufacturing Integration and Intelligence Fundamentals. COURSE OUTLINE Course Version: 10 Course Duration: 4 SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All

More information

Upgrading the DOORS and Change integration data to the OSLC-CM integration

Upgrading the DOORS and Change integration data to the OSLC-CM integration Upgrading the DOORS and Change integration data to the OSLC-CM integration Krishnakanth Naik Priyadarshini Rautray Yuvaraj Patil June 13, 2012 Page 1 of 31 INTRODUCTION...3 BENEFITS OF THE OSLC-CM INTEGRATION...5

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS Borland Together FREQUENTLY ASKED QUESTIONS GENERAL QUESTIONS What is Borland Together? Borland Together is a visual modeling platform that enables software teams to consistently deliver on-time, high

More information

IBM Rational Rhapsody Gateway Add On. Rhapsody Coupling Notes

IBM Rational Rhapsody Gateway Add On. Rhapsody Coupling Notes Rhapsody Coupling Notes Rhapsody IBM Rational Rhapsody Gateway Add On Rhapsody Coupling Notes License Agreement No part of this publication may be reproduced, transmitted, stored in a retrieval system,

More information

VPAT. Voluntary Product Accessibility Template. Version 1.3

VPAT. Voluntary Product Accessibility Template. Version 1.3 VPAT Voluntary Product Accessibility Template Version 1.3 To: Our valued Federal Government Customers From: Symantec Corporation Re: Accessibility to Software Under Section 508 For More Information Contact:

More information

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2013, Oracle and/or its affiliates. All rights Creating Custom PDF reports with APEX 4.2.2 Marc Sewtz Senior Software Development Manager Oracle USA Inc. New York, NY 2 Copyright 2013, Oracle

More information

IBM MaaS360 Kiosk Mode Settings

IBM MaaS360 Kiosk Mode Settings IBM MaaS360 Kiosk Mode Settings Configuration Settings for Kiosk Mode Operation IBM Security September 2017 Android Kiosk Mode IBM MaaS360 provides a range of Android device management including Samsung

More information

Db2 Analytics Accelerator V5.1 What s new in PTF 5

Db2 Analytics Accelerator V5.1 What s new in PTF 5 Ute Baumbach, Christopher Watson IBM Boeblingen Laboratory Db2 Analytics Accelerator V5.1 What s new in PTF 5 Legal Disclaimer IBM Corporation 2017. All Rights Reserved. The information contained in this

More information

Copyright and Trademark Information Trademarks Disclaimer; No Warranty

Copyright and Trademark Information Trademarks Disclaimer; No Warranty Copyright and Trademark Information Under the copyright laws, this document may not be copied, photocopied, reproduced, translated, or reduced to any electronic medium or machine-readable form, in whole

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

Using Hive for Data Warehousing

Using Hive for Data Warehousing An IBM Proof of Technology Using Hive for Data Warehousing Unit 1: Exploring Hive An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2013 US Government Users Restricted Rights - Use,

More information

IBM Rational Application Developer for WebSphere Software, Version 7.0

IBM Rational Application Developer for WebSphere Software, Version 7.0 Visual application development for J2EE, Web, Web services and portal applications IBM Rational Application Developer for WebSphere Software, Version 7.0 Enables installation of only the features you need

More information

Course Syllabus. Course Title. Who should attend? Course Description. Adobe Dreamweaver CC 2014

Course Syllabus. Course Title. Who should attend? Course Description. Adobe Dreamweaver CC 2014 Course Title Adobe Dreamweaver CC 2014 Course Description Adobe Dreamweaver CC (Creative Clouds) is the world's most powerful web design program. Our Dreamweaver course ''certified by Adobe ''includes

More information

IDERA ER/Studio Software Architect Evaluation Guide. Version 16.5/2016+ Published February 2017

IDERA ER/Studio Software Architect Evaluation Guide. Version 16.5/2016+ Published February 2017 IDERA ER/Studio Software Architect Evaluation Guide Version 16.5/2016+ Published February 2017 2017 IDERA, Inc. All rights reserved. IDERA and the IDERA logo are trademarks or registered trademarks of

More information

Oracle APEX 18.1 New Features

Oracle APEX 18.1 New Features Oracle APEX 18.1 New Features May, 2018 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

UML 2.5: Specification Simplification

UML 2.5: Specification Simplification A division of Data Access Technologies, Inc. UML 2.5: Specification Simplification Presented at the Third Biannual Workshop on Eclipse Open Source Software and OMG Open Specifications Ed Seidewitz Timeline

More information

Veritas NetBackup OpsCenter Reporting Guide. Release 8.0

Veritas NetBackup OpsCenter Reporting Guide. Release 8.0 Veritas NetBackup OpsCenter Reporting Guide Release 8.0 Veritas NetBackup OpsCenter Reporting Guide Legal Notice Copyright 2016 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo

More information

Ensuring a smooth upgrade to Sametime and IFR 1

Ensuring a smooth upgrade to Sametime and IFR 1 Ensuring a smooth upgrade to Sametime 8.5.2 and 8.5.2 IFR 1 Tony Payne, Sametime L3 February 29,2012 2011 IBM Corporation Agenda Plan Prepare Execute Troubleshoot Validate Known Fixes 2011 IBM Corporation

More information

Hands-on Lab Session 9020 Working with JSON Web Token. Budi Darmawan, Bluemix Enablement

Hands-on Lab Session 9020 Working with JSON Web Token. Budi Darmawan, Bluemix Enablement Hands-on Lab Session 9020 Working with JSON Web Token Budi Darmawan, Bluemix Enablement Copyright IBM Corporation 2017 IBM, the IBM logo and ibm.com are trademarks of International Business Machines Corp.,

More information

Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1

Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Name of Product: Marketplace Simulations Date: September 20, 2017 Contact information:

More information

End User s Guide Release 5.0

End User s Guide Release 5.0 [1]Oracle Application Express End User s Guide Release 5.0 E39146-04 August 2015 Oracle Application Express End User's Guide, Release 5.0 E39146-04 Copyright 2012, 2015, Oracle and/or its affiliates. All

More information

Understanding scan coverage in AppScan Standard

Understanding scan coverage in AppScan Standard IBM Security AppScan Standard Open Mic Webcast January 27, 2015 Understanding scan coverage in AppScan Standard Panelists Shahar Sperling Software Architect at Application Security AppScan Tal Rabinovitch

More information

IBM Lotus Notes in XenApp Environments

IBM Lotus Notes in XenApp Environments IBM Lotus Notes in XenApp Environments Open Mic Webcast September 28, 2011 11:00 AM EDT 2011 IBM Corporation Open Mic Webcast: IBM Lotus Notes in XenApp environments September 28 th @ 11:00 AM EDT (15:00

More information

Using Hive for Data Warehousing

Using Hive for Data Warehousing An IBM Proof of Technology Using Hive for Data Warehousing Unit 5: Hive Storage Formats An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2015 US Government Users Restricted Rights -

More information

GRAPHIC WEB DESIGNER PROGRAM

GRAPHIC WEB DESIGNER PROGRAM NH128 HTML Level 1 24 Total Hours COURSE TITLE: HTML Level 1 COURSE OVERVIEW: This course introduces web designers to the nuts and bolts of HTML (HyperText Markup Language), the programming language used

More information

Data Express 4.0. Data Subset Extraction

Data Express 4.0. Data Subset Extraction Data Express 4.0 Data Subset Extraction Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2014. All rights reserved. MICRO FOCUS,

More information

ThingWorx Manufacturing Apps Customization Guide 8.0.1

ThingWorx Manufacturing Apps Customization Guide 8.0.1 ThingWorx Manufacturing Apps Customization Guide 8.0.1 Copyright 2017 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc. and

More information

Manipulating Database Objects

Manipulating Database Objects Manipulating Database Objects Purpose This tutorial shows you how to manipulate database objects using Oracle Application Express. Time to Complete Approximately 30 minutes. Topics This tutorial covers

More information

IBM Rational Software

IBM Rational Software IBM Rational Software Development Conference 2008 Architecture and Customization of the IBM Rational Team Concert Connectors for ClearCase and ClearQuest John Vasta ClearQuest Connector Lead, IBM jrvasta@us.ibm.com

More information

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group 2008 IBM Corporation Agenda XPage overview From palette to properties: Controls, Ajax

More information

Extending TPTP for Database Unit Testing

Extending TPTP for Database Unit Testing IBM TM Software Group, Information Management Extending TPTP for Database Unit Testing Wei Liu, Hong-Lee Yu, Der-Ping Chou, Don Clare IBM Data Tools Copyright IBM Corp., 2008. All rights reserved. Source

More information

What's New in IBM Notes 9.0 Social Edition IBM Corporation

What's New in IBM Notes 9.0 Social Edition IBM Corporation What's New in IBM Notes 9.0 Social Edition IBM Client Strategy The flexible and comprehensive collaboration solution the client the server Universal access Remain productive regardless of location Browser

More information

A Day In the Life demo One example using COBOL/CICS

A Day In the Life demo One example using COBOL/CICS A Day In the Life demo One example using COBOL/CICS David Hawreluk EM Specialist IBM New York dhawrel@us.ibm.com Regi Barosa Executive IT Specialist IBM Boston rbarosa@us.ibm.com January, 22 2013 IBM s

More information

Open Mic Webcast: Troubleshooting freetime (busytime) issues in Lotus Notes

Open Mic Webcast: Troubleshooting freetime (busytime) issues in Lotus Notes Open Mic Webcast: Troubleshooting freetime (busytime) issues in Lotus Notes February 28 th @ 11:00 AM EST (16:00 UTC, or GMT -5) Presenters & Panelists: Andrea Mitchell Terry Talton Bruce Kahn Open Mic

More information

Leverage Rational Application Developer v8 to develop OSGi application and test with Websphere Application Server v8

Leverage Rational Application Developer v8 to develop OSGi application and test with Websphere Application Server v8 Leverage Rational Application Developer v8 to develop OSGi application and test with Websphere Application Server v8 Author: Ying Liu cdlliuy@cn.ibm.com Date: June,29 2011 2010 IBM Corporation THE INFORMATION

More information

Voluntary Product Accessibility Report

Voluntary Product Accessibility Report Voluntary Product Accessibility Report Compliance and Remediation Statement for Section 508 of the US Rehabilitation Act for OpenText Process Suite 16.3 October 2017 OPENTEXT PRODUCT VPAT ACCESSIBILITY

More information

IBM TRIRIGA Application Platform Version 3 Release 5.3. User Experience User Guide IBM

IBM TRIRIGA Application Platform Version 3 Release 5.3. User Experience User Guide IBM IBM TRIRIGA Application Platform Version 3 Release 5.3 User Experience User Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 19. This edition

More information

Introduction to PHP. Handling Html Form With Php. Decisions and loop. Function. String. Array

Introduction to PHP. Handling Html Form With Php. Decisions and loop. Function. String. Array Introduction to PHP Evaluation of Php Basic Syntax Defining variable and constant Php Data type Operator and Expression Handling Html Form With Php Capturing Form Data Dealing with Multi-value filed Generating

More information

HATS 7.1 Performance and Capacity Planning

HATS 7.1 Performance and Capacity Planning HATS 7.1 Performance and Capacity Planning In this article we highlight the processes to improve the performance and capacity of our HATS applications. We also discuss techniques to build efficient HATS

More information

BIRT Report Object Model Base Elements

BIRT Report Object Model Base Elements BIRT Report Object Model Base Elements Functional Specification Draft 2: April 26, 2005 Abstract Describes the base elements for many of the BIRT components. Report Element is the base element for all

More information

Disk Space Management of ISAM Appliance

Disk Space Management of ISAM Appliance IBM Security Access Manager Tuesday, 5/3/16 Disk Space Management of ISAM Appliance Panelists David Shen Level 2 Support Engineer Steve Hughes Level 2 Support Engineer Nicholas Hasten Level 2 Support Engineer

More information

C exam. Number: C Passing Score: 800 Time Limit: 120 min File Version: 1.0.

C exam. Number: C Passing Score: 800 Time Limit: 120 min File Version: 1.0. C2090-621.exam Number: C2090-621 Passing Score: 800 Time Limit: 120 min File Version: 1.0 IBM C2090-621 IBM Cognos Analytics Author V11 Version 1.0 Exam B QUESTION 1 A report author wants to conditionally

More information

WebSphere Commerce Developer Professional 9.0

WebSphere Commerce Developer Professional 9.0 Software Product Compatibility Reports Continuous Delivery Product - Long Term Support Release WebSphere Commerce Developer Professional 9.0 Contents Included in this report Operating systems Hypervisors

More information

Product Overview Analyst s Notebook Analyst s Notebook is a standalone desktop product for a single user Allows quick collation and visualization of unstructured or structured data Incorporates powerful

More information

BIRT: Introduction to the Eclipse Business Intelligence & Reporting Tools Project

BIRT: Introduction to the Eclipse Business Intelligence & Reporting Tools Project BIRT: Introduction to the Eclipse Business Intelligence & Reporting Tools Project Paul Clenahan Eclipse BIRT Project Management Committee VP Product Management, Actuate Corporation 2007 by Actuate; made

More information

The Challenge of Managing WebSphere Farm Configuration. Rational Automation Framework for WebSphere

The Challenge of Managing WebSphere Farm Configuration. Rational Automation Framework for WebSphere IBM Software Group The Challenge of Managing WebSphere Farm Configuration Rational Automation Framework for WebSphere Terence Chow Technical Specialist IBM Rational Hong Kong 2007 IBM Corporation Example:

More information