Interactive Statements Uncovered V2

Size: px
Start display at page:

Download "Interactive Statements Uncovered V2"

Transcription

1 Page 1

2 Michael Hodgson, Sr. Enterprise System Specialist Adobe Systems, Inc. TABLE OF CONTENTS EXERCISE OVERVIEW... 4 EXERCISE 1: CONFIGURE AN INTERACTIVE STATEMENT PROJECT... 5 OBJECTIVES:... 5 ASSETS PROVIDED:... 5 TASKS:... 5 Task 1: Create an Interactive Document Project... 5 CHECK POINT... 8 EXERCISE 2: ADD ASSETS TO THE PROJECT... 9 OBJECTIVES:... 9 ASSETS PROVIDED:... 9 TASKS:... 9 Task 1: Add assets to the Interactive Statement navigator template... 9 CHECK POINT EXERCISE 3: ADD PROMOTIONAL CONTENT TO AN INTERACTIVE STATEMENT OBJECTIVES: TASKS: Task 1: Add a PromoImage Task 2: Add a PromoImageSlideShow Task 3: Add a PromoSWFLoader Page 2

3 CHECK POINT EXERCISE 4: ADD DATA TO THE INTERACTIVE STATEMENT AND TIE IN TO ACROBAT OBJECTIVES: ASSETS PROVIDED: TASKS: Task 1: In this task we will import the XML data that will make up the statement part of the Interactive Statement Task 2: Map data for the XMLDataLoader CHECK POINT EXERCISE 5: BUILD AN INTERACTIVE STATEMENT PROCESS OBJECTIVES: ASSETS PROVIDED: TASKS: Task 1: Move the Interactive Statement code into a LiveCycle application Task 2: Update the statement references Task 3: Create an Interactive Statement process CHECK POINT EXERCISE 6: ADDING A PRINT PDF OBJECTIVES: ASSETS PROVIDED: TASKS: Task 1: Move the template into a LiveCycle application CHECK POINT Page 3

4 Exercise Overview The following table provides a high-level overview of the activity and exercises, including estimated time to complete, contained in this guide. Activity / Exercise Exercise #1 Summary Configure an Interactive Statement project. Participants will use Flash Builder to create a new Interactive Statement project. Estimated Time 10 mins Exercise #2 Add supplied resources and configure the app for testing. 10 mins Exercise #3 Exercise #4 Exercise #5 Exercise #6 Add promotional content to an Interactive Statement. Participants will add promo images, slide shows and Flash applications to an Interactive Statement. Add data to the Interactive Statement and tie in to Acrobat. Participants will add XML data and set the Interactive Statement to communicate with the PDF shell using Acrobat Bridge Build an Interactive Statement process. Participants will build a LiveCycle workflow that produces an Interactive Statement PDF. Adding a print PDF. Participants will add a printable PDF document to the Interactive Statement that will use the same data stream. 15 mins 10 mins 15 mins 10 mins NOTE: This document is based on an early version of the Interactive Statement software. Some options and procedures may have changed in more recent builds. Page 4

5 Exercise 1: Configure an Interactive Statement project In this exercise you will learn about how to create a Flash Builder 4 project for Interactive Statement generation Objectives: By the end of this exercise you will be able to; Create an Interactive Statement project in Flash Builder 4 using the Interactive Statement plug-in Assets Provided: In addition to creating new assets, the following assets have been preconfigured for use in this exercise: 1. Interactive Statements Flash Builder plugin (already installed) Tasks: Task 1: Create an Interactive Document Project In this task, you will create a FB4 project for the Interactive Statement navigator. 1. Launch Flash Builder 4 2. Choose File New Other Page 5

6 3. Under Interactive Documents choose Interactive Document Project 4. Click Next 5. Enter a project name of: Experience Telecom istatement 6. Click Finish. 7. Now we need to do some minor configuration. Right click on the new project and choose Properties. 8. Choose Flex Compiler. 9. Set the SDK to Flex 3. Page 6

7 10. Under the Adobe Flash Player options select the Use minimum version require by the Flex SDK option. 11. From the list on the left select Flex Build Path. 12. Click Apply. 13. From the Framework linkage drop down, set the value to Merged into code. 14. Click OK. 15. From the Project menu choose Clean. 16. Make sure your project is selected and click OK. Page 7

8 Check Point This will create a predefined structure for the project. A package-orig.xml gets created. The necessary swc files are added to the lib folder. A test harness gets created in the com.adobe.icomm.assetplacement.utils folder, a DocumentMain module gets created, and a navigator file (nav) gets created in the bin-debug folder. Page 8

9 Exercise 2: Add assets to the project In this exercise you will add assets Interactive Statement and configure it for testing. Objectives: By the end of this exercise you will be able to; Add assets to the Interactive Statement project Test the Interactive Statement shell Assets Provided: In addition to creating new assets, the following assets have been preconfigured for use in this exercise: 1. Experience Telecom statement assets: C:\TestDrive\interactiveStatements\assets Tasks: Task 1: Add assets to the Interactive Statement navigator template To save some time we have already built some of the content you will need for this project. This task will bring this content into the project you have created and configured 1. Copy the C:\TestDrive\interactive Statements\ assets folder into the project s src folder. The assets folder contains all of the data, images and flash components that we will add to the Page 9

10 Interactive Statement. 2. Open the interactive statement navigator shell file called DocumentMain.mxml, in source mode. 3. Now we will insert some code into the navigator shell. Normally you would do this by adding script and visual objects with Flash Builder. To save time the basic code has already been created for you. Copy and paste the following code into the DocumentMain.mxml file in the script section after the last import. [Bindable] private var billingdata:xml; [Bindable] private var billitems:xmllist; [Bindable] private var newcharges:number; [Bindable] private var totalcharges:number; [Bindable] private var servicedata:xmllist; 4. Now add some visual elements after the script object: Page 10

11 <mx:canvas backgroundcolor="#bedccd" width="100%" height="93"> <mx:image x="10" y="10" <mx:label x="247" y="10" text="service address:"/> <mx:label x="406" y="10" text="{billingdata.service.custname}" fontweight="bold"/> <mx:label x="406" y="25" text="{billingdata.service.serviceaddress}" fontweight="bold"/> <mx:label x="406" y="55" text="{billingdata.service.accountno}" fontweight="bold"/> <mx:label x="247" y="55" text="account number"/> <mx:label x="564" y="10" text="billing date"/> <mx:label x="658" y="10" text="{billingdata.service.billingdate}" fontweight="bold"/> </mx:canvas> <mx:label x="210" y="101" text="here's what you owe" fontsize="12" fontweight="bold"/> <mx:label x="210" y="231" text="itemized Bill" fontsize="12" fontweight="bold"/> <mx:label x="242" y="116" text="balance Forward"/> <mx:label x="242" y="130" text="your new charges"/> <mx:label x="242" y="145" text="total amount you owe" fontweight="bold"/> <mx:hrule x="244" y="145" width="358"/> <mx:label x="484" y="116" text="{billingdata.billing.balanceforward}" textalign="right"/> <mx:label x="484" y="129" text="{newcharges}" textalign="right"/> <mx:label x="484" y="144" text="{totalcharges}" textalign="right" fontweight="bold"/> <mx:datagrid x="242" y="259" width="360" dataprovider="{billitems}" editable="false"> <mx:columns> <mx:datagridcolumn headertext="place" datafield="place"/> <mx:datagridcolumn headertext="period" datafield="period"/> <mx:datagridcolumn headertext="time" datafield="time"/> <mx:datagridcolumn headertext="charge" datafield="charge"/> </mx:columns> </mx:datagrid> <mx:label x="210" y="425" text="service Charges" fontsize="12" fontweight="bold"/> Page 11

12 <mx:datagrid x="242" y="453" width="360" height="129" editable="false" dataprovider="{servicedata}"> <mx:columns> <mx:datagridcolumn headertext="type" datafield="type"/> <mx:datagridcolumn headertext="charge" datafield="charge"/> </mx:columns> </mx:datagrid> 5. Save the file Check Point When you created the project a test app was created under the com.adobe.icomm.assetplacement.utils package. This will allow us to quickly test our statement before we go to the LiveCycle server. Run the Flash Builder debugger to test the file: Page 12

13 Exercise 3: Add promotional content to an Interactive Statement In this exercise you will add an Interactive Statement promotional content. Objectives: By the end of this exercise you will be able to; Add Interactive Statement promo objects to the Interactive Statement shell Populate the promo objects using the xml file Tasks: Task 1: Add a PromoImage Statements can contain static images as promotional objects. In this task you will add one to the shell and configure it to point to one of the supplied assets. 1. Open the DocumentMain.mxml file and switch to Design mode 2. In the Components panel locate the Asset Placement folder and expand it. Drag a PromoImage object to the lower left of the DocumentMain.mxml file Page 13

14 3. Change its id ID to PromoAd and set the width="180" height="300". You may need to reposition the object so it stays on the screen. 4. Save the file. 5. Now that we have an object we need to put some content into it. This is done using the packageorig.xml file located at the root of the project. This file was created when we created the project to be an Interactive Document Project project. Open the package-orig.xml file. 6. By default the package-orig.xml file will come up in Overview mode. Note that the promotional object PromoAd has been recognized and has an entry in the list. Switch to editing mode by clicking on the package-orig.xml tab at the lower left of the screen. 7. Right now there isn t much in the file. We will add a resource for the promo object. Modify the file to add a resource into the assets section. We will point to an image that is in the assets folder you added earlier: <?xml version="1.0" encoding="utf-8" standalone="no"?> <package xmlns=" <controllers xmlns:controller=" er"/> <assets> <resources controller="promoad"> <resource alttext="adobe Logo" contenttype="image/jpg" expiration=" " source="assets/images/perf_service.jpg" targeturl=" </resources> </assets> </package> 8. Save the file Page 14

15 Task 2: Add a PromoImageSlideShow Statements can also contain slide shows as promotional objects. In this task you will add one to the shell and configure it to point to the supplied assets. 1. Switch back to the DocumentMain.mxml file in Design mode. 2. Drag a PromoImageSlideShow object from the Components panel into the upper left of the mxml file. 3. Set the following: id="slidesad" delay="3000" width="180" height="150" Save the file 4. Now let s add some content. Switch back to the Package Definition Editor (package-orig.xml) in edit mode. 5. Add the following resources into the assets section: <resources controller="slidesad"> <resource source="assets/images/cleantransmission.png"/> <resource source="assets/images/cleanenergy.png"/> <resource source="assets/images/future.png"/> <resource source="assets/images/et_dish.png" targeturl=" </resources> 6. Save the file Page 15

16 Task 3: Add a PromoSWFLoader You can also add Flash content to the Interactive Statement. In this task you will add one of the supplied SWF files to your statement. 1. Switch back to the DocumentMain.mxml file in Design mode. 2. Drag a PromoSWFLoader object from the Components panel into the upper right of the mxml file. 3. Set the following: id="flashad" width="180" height="150" 4. Save the file. 5. Now let s add some content. Switch back to the Package Definition Editor (package-orig.xml) in edit mode. 6. Add the following resources into the assets section: <resources controller="flashad"> <resource contenttype="application/x-shockwave-flash" source="assets/swf/9_070_300x250_cube_mainv2.swf"/> </resources> 7. Save the file Page 16

17 Check Point Run the Flash Builder debugger to test the file. You should see the content in the promo objects: Note: You may get some minor errors/warnings regarding the PaperVision object. This is related to the cube object and some of the libraries that it uses. You can ignore these warnings for now. Page 17

18 Exercise 4: Add data to the Interactive Statement and tie in to Acrobat In this exercise you will add XML data to the Interactive Statement. Objectives: By the end of this exercise you will be able to; Import and use XML data in an Interactive Statement Assets Provided: In addition to creating new assets, the following assets have been preconfigured for use in this exercise: 1. XML Data file: HandsOn Material\data\data.xml Tasks: Task 1: In this task we will import the XML data that will make up the statement part of the Interactive Statement. 1. Open the DocumentMain.mxml file in Source mode. 2. After the Script entry, add an XMLDataLoader. The XMLDataLoader is a non visual element that allows you to map data to your Interactive Statement. <ap:xmldataloader id="statementdata" xmldataready="statementdata_xmldatareadyhandler(event)" /> When the data is ready, the data loader will call the statementdata_xmldatareadyhandler function. The function will populate the necessary Flex component, in this case the statement feilds. Insert the following function into the Script section: protected function statementdata_xmldatareadyhandler(event:xmldatareadyevent):void{ billingdata = event.data; billitems = billingdata.itemizedbill.children(); servicedata = billingdata.services.children(); newcharges = Number(billingData.billing.newCharges.toString()); totalcharges = newcharges + Number(billingData.billing.balanceForward); totalcharges = Number(totalCharges.toPrecision(16)); } Page 18

19 3. The function uses an XMLDataReadyEvent, paste the following import at the top of the script section: import com.adobe.icomm.assetplacement.controller.xmldatareadyevent; 4. Save the file. Task 2: Map data for the XMLDataLoader 1. Now we need to map some data into the Interactive Statement. Open the Package Definition Editor (package-orig.xml) file. 2. Notice how there is now a statementdata Name in data grid. Switch to the package-orig.xml text edit mode 3. We will be using an xml file from the assets folder as data for our statement. Add the following lines under the assets section: <resources controller="statementdata"> <resource contenttype="text/xml" source="assets/data/data.xml"/> </resources> 4. Save the file. Page 19

20 Check Point Run the Flash Builder debugger to test the file. You should see the data: Page 20

21 Exercise 5: Build an Interactive Statement Process. In this exercise you will move your Interactive Statement to a LiveCycle application and build a LiveCycle process that will generate the Interactive Statement portfolio. Objectives: By the end of this exercise you will be able to; Create a LiveCycle application for Interactive Statements Use the Asset Placement components in a LiveCycle process Assets Provided: In addition to creating new assets, the following assets have been preconfigured for use in this exercise: 1. Asset Placement Component (already installed) Tasks: Task 1: Move the Interactive Statement code into a LiveCycle application. 1. Launch the LiveCycle Workbench and login as administrator/password. 2. Create a new application by choosing File-> New-> Application. Name it etelecomstatement and click Finish. 3. Right click on the ExperienceTelecomIstatement/1.0 object and choose New -> Folder. Create a folder called assets : Page 21

22 4. Copy the following assets from the FlashBuilder project by using Windows Explorer to {your project location}\src\assets folder and dragging the contents of the assets folder into the application: Experience Telecom istatement.nav (this is the compiled version of the mxml file) package.xml (this is the deploy version of the package-orig.xml file) data.xml (from the assets/data folder) Other assets, such as the images and the swf, will be picked up from the file system at run time. Page 22

23 5. Your Application should look like the following: Task 2: Update the statement references. 1. Now we need to change the package.xml files references to point to the repository objects. Double click on the package.xml file to edit it. Switch to Source mode. Modify all references to the assets objects to include references to the server s local file system: <?xml version="1.0" encoding="utf-8" standalone="no"?> <package xmlns=" <controllers xmlns:controller=" er"> <controller:promoimage height="300" id="promoad" width="180"/> <controller:promoimageslideshow height="150" id="slidesad" width="180"> <delay>3000</delay> </controller:promoimageslideshow> <controller:promoswfloader height="150" id="flashad" width="180"/> <controller:xmldataloader id="statementdata"/> Page 23

24 </controllers> <assets> <resources controller="promoad"> <resource alttext="adobe Logo" contenttype="image/jpg" expiration=" " source="file:///c:/interactivestatements/assets/images/perf_service.jpg" targeturl=" </resources> <resources controller="slidesad"> <resource source="file:///c:/interactivestatements/assets/images/cleantransmission.png" /> <resource source="file:///c:/interactivestatements/assets/images/cleanenergy.png"/> <resource source="file:///c:/interactivestatements/assets/images/future.png"/> <resource source="file:///c:/interactivestatements/assets/images/et_dish.png" targeturl=" </resources> <resources controller="flashad"> <resource contenttype="application/x-shockwave-flash" source="file:///c:/interactivestatements/assets/swf/9_070_300x250_cube_mainv2.swf"/> </resources> <resources controller="statementdata"> <resource contenttype="text/xml" source="file:///c:/interactivestatements/assets/data/data.xml"/> </resources> </assets> </package> 2. Save the file Task 3: Create an Interactive Statement process 1. Our Interactive Statement portfolio will be generated in a workflow process. Right click on the Processes folder and choose New->Process. Name the process GenerateiStatement and choose Page 24

25 Finish. 2. Use the Activity Picker to add a new step to the GenerateiStatement process. Choose the Asset Placement - Generate Interactive Document operation from the list and click OK. 3. In the Generate Interactive Document properties open the Inputs section 4. Add the following: Your package definition: locate your package.xml file Your document template: locate the Experience Telecom istatement.nav file Page 25

26 Optional estatement template: leave this blank for now Your data: locate the data.xml file located in the assets folder 5. Open the Output section. Page 26

27 6. Create a new variable called istatementresult. Make sure its set as an Output type. 7. Save the file. 8. Deploy the application and all related files by right clicking on the application name and selecting Deploy. Then Check in all files in the Check In Assets dialog. Check Point Test the process by right clicking on the workflow and selecting Invoke Process There are no input variables. If all goes well you should get a PDF returned. Click on the View Document button and have a look at your Interactive Statement: Page 27

28 Page 28

29 Exercise 6: Adding a print PDF. Interactive Statements can be very engaging, but sometimes you still want a paper version to go into the file cabinet. This exercise will show you how to add one to your Interactive Statement Objectives: By the end of this exercise you will be able to; Add a printable PDF to the Interactive Statement that uses the same data. Assets Provided: In addition to creating new assets, the following assets have been preconfigured for use in this exercise: 1. The PDF template for the print version of the interactive statement C:\TestDrive\interactiveStatement\PrintVersion.pdf Tasks: Task 1: Move the template into a LiveCycle application. 1. To speed things up we have provided a PDF template for use as a print document. Open the PrintVersion.pdf file in Adobe LiveCycle Designer ES. 2. Look at the Data View and notice how the XML data is already mapped to the correct fields. This mapping uses the same XML data file as the Interactive Statement we created earlier. 3. Close Adobe LiveCycle Designer 4. Open Workbench (if it is not already open). 5. Copy the PrintVersion.pdf file into the etelecomstatement assets folder 6. Open the GenerateiStatement process and check it out. 7. Click on the Generate Interactive Document step and open the Inputs section. Page 29

30 8. Under the Optional print template field locate the PrintVersion.pdf file. 9. Save the file. 10. Deploy the application and all related files by right clicking on the application name and selecting Deploy. Then Check in all files in the Check In Assets dialog. Check Point Test the process by right clicking on the workflow and selecting Invoke Process There are no input variables. If all goes well you should get a PDF returned. Click on the View Document button and have a look at your Interactive Statement. Click on the List button (next to the house button). Notice that you now have a printdocument.pdf file. Double click to open that file. Notice the print version with the same data as the Interactive Statement: Page 30

31 Page 31

bbc Creating Flex Applications Enabled for LiveCycle Workspace ES2 Adobe LiveCycle ES2 March 2010 Version 9

bbc Creating Flex Applications Enabled for LiveCycle Workspace ES2 Adobe LiveCycle ES2 March 2010 Version 9 bbc Creating Flex Applications Enabled for LiveCycle Workspace ES2 Adobe LiveCycle ES2 March 2010 Version 9 2010 Adobe Systems Incorporated. All rights reserved. Adobe LiveCycle ES2 (9.0) Creating Flex

More information

CUSTOMIZING GUIDES USING ADOBE FLASH BUILDER. Note, this document will be updated for version 10.0 soon.

CUSTOMIZING GUIDES USING ADOBE FLASH BUILDER. Note, this document will be updated for version 10.0 soon. CUSTOMIZING GUIDES USING ADOBE FLASH BUILDER Note, this document will be updated for version 10.0 soon. Copyright 2010 Adobe Systems Incorporated and its licensors. All rights reserved. Customizing Guides

More information

Using Flex 3 in a Flex 4 World *

Using Flex 3 in a Flex 4 World * OpenStax-CNX module: m34631 1 Using Flex 3 in a Flex 4 World * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Learn how

More information

Introduction to Flex. Indy Nagpal. Web On The Piste August 2007

Introduction to Flex. Indy Nagpal. Web On The Piste August 2007 Introduction to Flex Indy Nagpal Web On The Piste August 2007 Who am I Senior Developer with Straker Interactive Trainer -- Flex, ColdFusion, ShadoCMS A couple of years with Flex A decade of working with

More information

ADOBE CONNECT 8 Collaboration Builder Toolkit SDK

ADOBE CONNECT 8 Collaboration Builder Toolkit SDK ADOBE CONNECT 8 Collaboration Builder Toolkit SDK Copyright 2010 Adobe Systems Incorporated and its licensors. All rights reserved. Adobe Connect 8 Collaboration Builder Toolkit SDK This user guide is

More information

bbc Creating Flex Applications Enabled for LiveCycle Workspace ES Adobe LiveCycle Workspace ES August 2007 Version 8.0

bbc Creating Flex Applications Enabled for LiveCycle Workspace ES Adobe LiveCycle Workspace ES August 2007 Version 8.0 bbc Creating Flex Applications Enabled for LiveCycle Workspace ES Adobe LiveCycle Workspace ES August 2007 Version 8.0 2007 Adobe Systems Incorporated. All rights reserved. Adobe LiveCycle ES 8.0 Creating

More information

How to use the Assets panel

How to use the Assets panel Adobe Dreamweaver Guide How to use the Assets panel You can use the Assets panel in Dreamweaver to manage assets in the current site (Figure 1). The Assets panel displays assets for the site associated

More information

Calendar Management A Demonstration Application of TopBraid Live

Calendar Management A Demonstration Application of TopBraid Live Brief: Calendar Management Calendar Management A Demonstration of TopBraid Live What you will learn in this Brief: Rapid Semantic Building Full life cycle support from model to app Ease of building User

More information

Adobe LiveCycle ES and the data-capture experience

Adobe LiveCycle ES and the data-capture experience Technical Guide Adobe LiveCycle ES and the data-capture experience Choosing the right solution depends on the needs of your users Table of contents 2 Rich application experience 3 Guided experience 5 Dynamic

More information

Managing Workflows. Starting Prime Network Administration CHAPTER

Managing Workflows. Starting Prime Network Administration CHAPTER CHAPTER 10 Prime Network Administration can be used to manage deployed workflow templates. Topics include: Starting Prime Network Administration, page 10-1 Viewing the List of Templates and Template Properties,

More information

Creating Flex Applications with IntelliJ IDEA

Creating Flex Applications with IntelliJ IDEA Creating Flex Applications with IntelliJ IDEA In this tutorial you will: 1. Create an IntelliJ IDEA project with Flex-enabled module 2. Create Ant build configuration to compile and run Flex application

More information

INSTALLING ADOBE LIVECYCLE WORKBENCH 11

INSTALLING ADOBE LIVECYCLE WORKBENCH 11 INSTALLING ADOBE LIVECYCLE WORKBENCH 11 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: About This Document 1.1 Who should

More information

Understanding Acrobat Form Tools

Understanding Acrobat Form Tools CHAPTER Understanding Acrobat Form Tools A Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer Bible Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer

More information

Elixir Repertoire Designer

Elixir Repertoire Designer Aggregation and Transformation Intelligence on Demand Activation and Integration Navigation and Visualization Presentation and Delivery Activation and Automation Elixir Repertoire Designer Tutorial Guide

More information

Review the interactive to learn how to navigate and interact with slides in the PowerPoint window.

Review the interactive to learn how to navigate and interact with slides in the PowerPoint window. Getting Started with PowerPoint Introduction Page 1 PowerPoint 2010 is a presentation software that allows you to create dynamic slide presentations that may include animation, narration, images, videos

More information

VIVVO CMS Plug-in Manual

VIVVO CMS Plug-in Manual VIVVO CMS Plug-in Manual www.vivvo.net 1 TABLE OF CONTENTS INTRODUCTION...4 PLUGIN: CONTACT FORM BUILDER PLUG-IN...5 DESCRIPTION:...5 HOW TO INSTALL?...5 ACTIVATION:...5 ACCESS:...5 USER LEVEL:...5 ACTIONS:...6

More information

Form into function. Getting prepared. Tutorial. Paul Jasper

Form into function. Getting prepared. Tutorial. Paul Jasper Tutorial Paul Jasper TABLE OF CONTENTS 1 Getting prepared 2 Adding a button to the form design 2 Making the button add tasks 3 Sending the XML data 4 Tidying up 5 Next time In the first episode, I showed

More information

CA Productivity Accelerator v Single User Installation

CA Productivity Accelerator v Single User Installation v12.1.0.2 Single User Installation Congratulations on your purchase of the (CA PA). This document will provide you with the information you will need to install the Single User Editor (or Developer) and

More information

Module Road Map. 7. Version Control with Subversion Introduction Terminology

Module Road Map. 7. Version Control with Subversion Introduction Terminology Module Road Map 1. Overview 2. Installing and Running 3. Building and Running Java Classes 4. Refactoring 5. Debugging 6. Testing with JUnit 7. Version Control with Subversion Introduction Terminology

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.0 SP1.5 User Guide P/N 300 005 253 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All

More information

Creating Dynamic Forms with Adobe LiveCycle Designer

Creating Dynamic Forms with Adobe LiveCycle Designer Creating Dynamic Forms with Adobe LiveCycle Designer J.P. Terry Contents Foreword... xi Introduction... xiii CHAPTER 1 The Basics...1 What is LiveCycle Designer?... 1 A Tool for Creating Interactive and

More information

Click the buttons in the interactive below to learn how to navigate and interact with slides in the

Click the buttons in the interactive below to learn how to navigate and interact with slides in the PowerPoint 2010 Getting Started with PowerPoint Introduction Page 1 PowerPoint 2010 is a presentation software that allows you to create dynamic slide presentations that may include animation, narration,

More information

Documentum Client for Siebel User Guide

Documentum Client for Siebel User Guide Documentum Client for Siebel User Guide Version 5.3 SP4 April 2007 Copyright 1994-2007 EMC Corporation. All rights reserved. Table of Contents Preface... 7 Chapter 1 Introduction... 9 About DCS... 9 Getting

More information

Using ADOBE LIVECYCLE ES3 Connector for MICROSOFT SHAREPOINT

Using ADOBE LIVECYCLE ES3 Connector for MICROSOFT SHAREPOINT Using ADOBE LIVECYCLE ES3 Connector for MICROSOFT SHAREPOINT Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Using the Connector for

More information

SilkTest Testing Flex Applications

SilkTest Testing Flex Applications SilkTest 13.0 Testing Flex Applications Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus. All rights reserved. Portions Copyright 1992-2009 Borland Software Corporation

More information

Index COPYRIGHTED MATERIAL. Symbols and Numerics

Index COPYRIGHTED MATERIAL. Symbols and Numerics Symbols and Numerics ( ) (parentheses), in functions, 173... (double quotes), enclosing character strings, 183 #...# (pound signs), enclosing datetime literals, 184... (single quotes), enclosing character

More information

Editing the Home Page

Editing the Home Page Editing the Home Page Logging on to Your Web site 1. Go to https://extension.usu.edu/admin/ 2. Enter your Login and Password. 3. Click Submit. If you do not have a login and password you can request one

More information

Extension Kit for.net. SilkTest Testing Flex Applications

Extension Kit for.net. SilkTest Testing Flex Applications Extension Kit for.net SilkTest 2010 Testing Flex Applications Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2009-2010 Micro Focus (IP) Limited. All Rights Reserved.

More information

JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x CREATING DASHBOARD REPORTS IN ORACLE BI PUBLISHER

JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x CREATING DASHBOARD REPORTS IN ORACLE BI PUBLISHER JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x ABSTRACT An often requested feature in reporting is the development of simple Dashboard reports that summarize project information in

More information

Dreamweaver Domain 3: Understanding the Adobe Dreamweaver CS5 Interface

Dreamweaver Domain 3: Understanding the Adobe Dreamweaver CS5 Interface : Understanding the Adobe Dreamweaver CS5 Interface Adobe Creative Suite 5 ACA Certification Preparation: Featuring Dreamweaver, Flash, and Photoshop 1 Objectives Identify elements of the Dreamweaver interface

More information

etrac Company Documents Guide

etrac Company Documents Guide etrac Company Documents Guide Version: 5.0 Publish Date: 01/16/2019 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2019, All Rights Reserved. Table of Contents Introduction to etrac Company

More information

Designing PDF Forms and Flex Form Guides Adobe MAX 2007

Designing PDF Forms and Flex Form Guides Adobe MAX 2007 Designing PDF Forms and Flex Form Guides Adobe MAX 2007 Track ID: Level: Intermediate Hands on: 90 minutes Author / Presenter Stefan Cameron, Computer Scientist LC Designer ES Team Adobe Systems Incorporated

More information

CA Productivity Accelerator v Single User Installation

CA Productivity Accelerator v Single User Installation CA Productivity Accelerator v12.1.0.3 Single User Installation Congratulations on your purchase of the CA Productivity Accelerator (CA PA). This document will provide you with the information you will

More information

PRODUCT DESCRIPTIONS AND METRICS

PRODUCT DESCRIPTIONS AND METRICS PRODUCT DESCRIPTIONS AND METRICS Adobe PDM - Adobe LiveCycle Managed Services (2013v3) The Services described in this PDM are Managed Services and are governed by the terms of the General Terms, the Exhibit

More information

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011 Hands-On Lab Developing BI Applications Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: USING THE CHART WEB PART... 4 Task 1 Add the Chart Web Part to the page... 4 Task 2

More information

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22 Workflow Design Guide Version 17 November 2017 Contents About This Guide... 7 Workflows and Forms Overview... 7 Security Permissions for Workflows and Forms... 8 Search for a Workflow Design, Workflow

More information

Lesson 4. What You Will Learn. Approximate Time This lesson takes approximately 45 minutes to complete. Lesson Files

Lesson 4. What You Will Learn. Approximate Time This lesson takes approximately 45 minutes to complete. Lesson Files Lesson 4 What You Will Learn In this lesson, you will: Define the user interface (UI) for the e-commerce FlexGrocer application Use simple controls such as the Image control, text controls, and CheckBox

More information

GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher

GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher For technical support call 1-800-936-6899 GeographyPortal Quick Start for Pulsipher, World Regional

More information

Composer Help. Import and Export

Composer Help. Import and Export Composer Help Import and Export 2/7/2018 Import and Export Contents 1 Import and Export 1.1 Importing External Files into Your Composer Project 1.2 Importing Composer Projects into Your Workspace 1.3 Importing

More information

EMC Documentum Document Image Services

EMC Documentum Document Image Services EMC Documentum Document Image Services Version 6.5 Deployment Guide P/N 300-006-660 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2007-2008 EMC

More information

CA Productivity Accelerator Single User Installation

CA Productivity Accelerator Single User Installation CA Productivity Accelerator Congratulations on your purchase of the CA Productivity Accelerator (CA PA). This document will provide you with the information you will need to install the Single User Developer

More information

STEP 1 STEP 2 STEP 3 STEP 4 You may see the following. Then click OK. information on your screen: Click on the more apps to expand the list.

STEP 1 STEP 2 STEP 3 STEP 4 You may see the following. Then click OK. information on your screen: Click on the more apps to expand the list. Using Adobe Flash Software The S.T.A.B.L.E. Program Learner Course PowerPoint slides are packaged with Adobe Flash and will play using a Flash Player. This means you do not have to have PowerPoint installed

More information

Force.com Flex Quick Start Tutorial

Force.com Flex Quick Start Tutorial Force.com Flex Quick Start Tutorial Salesforce, Winter 18 @salesforcedocs Last updated: November 2, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Digital Signs 101. Learning the Content Manager Express (CMX) Web App Enterprise Digital Signage Training. Page! 1 of! 17

Digital Signs 101. Learning the Content Manager Express (CMX) Web App Enterprise Digital Signage Training. Page! 1 of! 17 Page! 1 of! 17 Digital Signs 101 Learning the Content Manager Express (CMX) Web App Enterprise Digital Signage Training Prepared by: Matt Gorney, Coordinator, Digital Media Services (DMS) ver4.1. 2016

More information

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training OBIEE Oracle Business Intelligence Enterprise Edition Rensselaer Business Intelligence Finance Author Training TABLE OF CONTENTS INTRODUCTION... 1 USER INTERFACE... 1 HOW TO LAUNCH OBIEE... 1 TERMINOLOGY...

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Client Product Guide PDC Version: 5.4 Written by: Product Documentation, R&D Date: February 2014 2014 Perceptive Software. All rights reserved Perceptive Software is a trademark

More information

Kaltura Video Package for Moodle 2.x Quick Start Guide. Version: 3.1 for Moodle

Kaltura Video Package for Moodle 2.x Quick Start Guide. Version: 3.1 for Moodle Kaltura Video Package for Moodle 2.x Quick Start Guide Version: 3.1 for Moodle 2.0-2.4 Kaltura Business Headquarters 5 Union Square West, Suite 602, New York, NY, 10003, USA Tel.: +1 800 871 5224 Copyright

More information

In order to support developers, there needs to be a number of tools available which may be involved in the ultimate solution.

In order to support developers, there needs to be a number of tools available which may be involved in the ultimate solution. Problem Statement J2ME or Java ME is ripe with device fragmentation. Add to that the limited memory available for midlet suites, it is imperative that developer tools provide developers with the help necessary

More information

Laserfiche Hierarchy. Shortcuts to related attachments will be listed below each document.

Laserfiche Hierarchy. Shortcuts to related attachments will be listed below each document. Buy A&M Documents - Laserfiche The Buy A&M Laserfiche repository allows viewing and print access to historical purchasing and invoice information for purchasing documents formerly housed in the Buy A&M

More information

Tutorial. Unit: Interactive Forms Integration into Web Dynpro for Java Topic: Dynamically generated forms

Tutorial. Unit: Interactive Forms Integration into Web Dynpro for Java Topic: Dynamically generated forms Tutorial Unit: Interactive Forms Integration into Web Dynpro for Java Topic: Dynamically generated forms At the conclusion of this exercise, you will be able to: Generate a dynamic form within a Web Dynpro

More information

ITEC447 Web Projects CHAPTER 10 FLASH & SILVERLIGHT 1

ITEC447 Web Projects CHAPTER 10 FLASH & SILVERLIGHT 1 ITEC447 Web Projects CHAPTER 10 FLASH & SILVERLIGHT 1 Working with Flash and Other Embeddable Content One of the major turning points in the evolution of web design was the introduction of Flash. By designing

More information

Creating Content in a Course Area

Creating Content in a Course Area Creating Content in a Course Area After creating a course area, such as a Content Area, Learning Module, Lesson Plan, or folder, you create content in it by pointing to its Action Bar to reveal menus for

More information

Administrative Training Mura CMS Version 5.6

Administrative Training Mura CMS Version 5.6 Administrative Training Mura CMS Version 5.6 Published: March 9, 2012 Table of Contents Mura CMS Overview! 6 Dashboard!... 6 Site Manager!... 6 Drafts!... 6 Components!... 6 Categories!... 6 Content Collections:

More information

ArcGIS Web Viewers and Templates. Andy Gup, Jim Barry

ArcGIS Web Viewers and Templates. Andy Gup, Jim Barry ArcGIS Web Viewers and Templates Andy Gup, Jim Barry What s new in the ArcGIS Viewer for Flex Andy Gup, Jim Barry ArcGIS Viewer for Flex ArcGIS API for Flex ArcGIS Online / Portal / Orgs ArcGIS Server

More information

CMS 101. Webtop for Student Records. CMS Webtop for Student Records 1/29/2018. McGill - IT Training & Communications 1 AGENDA PART ONE

CMS 101. Webtop for Student Records. CMS Webtop for Student Records 1/29/2018. McGill - IT Training & Communications 1 AGENDA PART ONE CMS 101 Webtop for Student Records AGENDA PART ONE Introduction What is Webtop? Access Webtop Webtop interface Search for documents View document Check Out Edit a document Annotate a PDF Check In a document

More information

Thank you for purchasing Qwizdom Remotes.

Thank you for purchasing Qwizdom Remotes. Thank you for purchasing Qwizdom Remotes. Now that you ve received your set, you re probably thinking, What do I do now? We have prepared this quick-start guide to help you get up and running with your

More information

Source Management (Version Control) Installation and Configuration Guide. Version 8.0 and Higher

Source Management (Version Control) Installation and Configuration Guide. Version 8.0 and Higher Source Management (Version Control) Installation and Configuration Guide Version 8.0 and Higher July 05, 2018 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders

More information

Online App Access: Quick Set-up & Instructions

Online App Access: Quick Set-up & Instructions Online App Access: Quick Set-up & Instructions Welcome to The Media Audit You will be accessing data ONLINE through our Citrix app, available by visiting: app.themediaaudit.com This simple guidebook contains

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

HPE Security Fortify Plugins for Eclipse

HPE Security Fortify Plugins for Eclipse HPE Security Fortify Plugins for Eclipse Software Version: 17.20 Installation and Usage Guide Document Release Date: November 2017 Software Release Date: November 2017 Legal Notices Warranty The only warranties

More information

Adobe Creative Cloud for Enterprise The University of Texas at San Antonio End User Guide

Adobe Creative Cloud for Enterprise The University of Texas at San Antonio End User Guide Adobe Creative Cloud for Enterprise The University of Texas at San Antonio End User Guide The Univeristy of Texas at San Antonio is offering access to Adobe products via the Adobe Creative Cloud for Enterprise.

More information

Office Adapters for Quark Publishing Platform

Office Adapters for Quark Publishing Platform Office Adapters for Quark Publishing Platform Contents Getting started... 1 About Quark Publishing Platform...1 System requirements... 3 Installing the Office Adapters for Quark Publishing Platform...

More information

Javadocing in Netbeans (rev )

Javadocing in Netbeans (rev ) Javadocing in Netbeans (rev. 2011-05-20) This note describes how to embed HTML-style graphics within your Javadocs, if you are using Netbeans. Additionally, I provide a few hints for package level and

More information

SAP BusinessObjects Dashboard Design Component SDK Tutorial 4 - Creating a custom property. sheet

SAP BusinessObjects Dashboard Design Component SDK Tutorial 4 - Creating a custom property. sheet SAP BusinessObjects Dashboard Design Component SDK Tutorial 4 - Creating a custom property sheet SAP BusinessObjects Dashboard Design Component SDK Tutorial 4 - Creating a custom property sheet Copyright

More information

Watermarking and Adding Copyright Info

Watermarking and Adding Copyright Info Watermarking and Adding Copyright Info This two-part technique is particularly important if you re putting your proofs on the Web for client approval. In the first part of this technique, you ll add a

More information

Using MindManager 8 for Windows with Microsoft SharePoint 2007 October 3, 2008

Using MindManager 8 for Windows with Microsoft SharePoint 2007 October 3, 2008 l Using MindManager 8 for Windows with Microsoft SharePoint 2007 October 3, 2008 Table of Contents TABLE OF CONTENTS... 2 1 INTRODUCTION... 3 2 USING MINDMANAGER 8 WITH MICROSOFT SHAREPOINT... 4 2.1 ADD

More information

DESIGN MOBILE APPS FOR ANDROID DEVICES

DESIGN MOBILE APPS FOR ANDROID DEVICES DESIGN MOBILE APPS FOR ANDROID DEVICES Thank you for participating in a workshop at MicroStrategy World 2019. If you missed or did not finish an exercise and want to complete it after the conference,

More information

Hitachi NEXT 2018 Automating Service Maintenance with Hitachi Automation Director (HAD)

Hitachi NEXT 2018 Automating Service Maintenance with Hitachi Automation Director (HAD) Hitachi NEXT 2018 Automating Service Maintenance with Hitachi Automation Director (HAD) Contents Lab 1 Submitting Your First HAD Service Lab 2 Extending Service Capabilities with Service Builder Lab 3

More information

Release Notes RESOLVED NEW NEW

Release Notes RESOLVED NEW NEW 3.5.92 Resolved a bug where pages in batch review were being saved by how they were selected and not how they appeared in the list. Resolved a bug with large PDF files not saving correctly through Drag

More information

WebFOCUS RStat Release Guide Version 3.0

WebFOCUS RStat Release Guide Version 3.0 WebFOCUS RStat Release Guide Version 3.0 August 07, 2018 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo, iway, iway Software, Parlay, PC/FOCUS, RStat,

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

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

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Exercises. Cacti Installation and Configuration

Exercises. Cacti Installation and Configuration Exercises Cacti Installation and Configuration Exercises Your Mission... Install Cacti Create device entry for your local router Create device entries for your local servers Create entries for class router

More information

Exercises. Cacti Installation and Configuration

Exercises. Cacti Installation and Configuration Exercises Cacti Installation and Configuration Exercises Your Mission... Install Cacti Create device entry for your local router Create device entries for your local servers Create entries for class router

More information

SAS Marketing Operations Management 6.0 R14 Update 2

SAS Marketing Operations Management 6.0 R14 Update 2 SAS Marketing Operations Management 6.0 R14 Update 2 What s New SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS Marketing Operations Management

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

Technology Preview. New RMAD (Rapid Mobile Application Development) Module for Convertigo Studio

Technology Preview. New RMAD (Rapid Mobile Application Development) Module for Convertigo Studio Technology Preview New RMAD (Rapid Mobile Application Development) Module for Convertigo Studio Table of Content Table of Content 2 Introduction 3 Overview 4 Application viewer 5 Mobile Components 6 Mobile

More information

Integrating Facebook. Contents

Integrating Facebook. Contents Integrating Facebook Grow your audience by making it easy for your readers to like, share or send pages from YourWebShop to their friends on Facebook. Contents Like Button 2 Share Button.. 6 Send Button.

More information

Prerequisites for Eclipse

Prerequisites for Eclipse Prerequisites for Eclipse 1 To use Eclipse you must have an installed version of the Java Runtime Environment (JRE). The latest version is available from java.com/en/download/manual.jsp Since Eclipse includes

More information

Generating a Custom Bill of Materials

Generating a Custom Bill of Materials Generating a Custom Bill of Materials Old Content - visit altium.com/documentation Modified by on 6-Nov-2013 This tutorial describes how to use the Report Manager to set up a Bill of Materials (BOM) report.

More information

i2b2 Workbench Developer s Guide: Eclipse Neon & i2b2 Source Code

i2b2 Workbench Developer s Guide: Eclipse Neon & i2b2 Source Code i2b2 Workbench Developer s Guide: Eclipse Neon & i2b2 Source Code About this guide Informatics for Integrating Biology and the Bedside (i2b2) began as one of the sponsored initiatives of the NIH Roadmap

More information

Release Notes1.1 Skelta BPM.NET 2009 March 2010 Release <Version > Date: 20 th May, 2010

Release Notes1.1 Skelta BPM.NET 2009 March 2010 Release <Version > Date: 20 th May, 2010 Skelta BPM.NET 2009 March 2010 Release Date: 20 th May, 2010 Document History Date Version No. Description of creation/change 30 th March, 2010 1.0 Release Notes for March Update

More information

User Guide

User Guide User Guide 03.10.2016 Contents 1 Introduction...3 1.1 IT Requirements...3 1.2 Installing efireservice Video...4 1.3 Login to efireservice Video...4 2 Video Library...5 2.1 Additional Video Details...5

More information

A complete demonstration of the KnowledgeVision system is available at

A complete demonstration of the KnowledgeVision system is available at KnowledgeVision Bringing presentation power to Brightcove KnowledgeVision TM is an intuitive, powerful multi-media framework for combining video, presentations and other images, synchronized navigation,

More information

EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e

EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e For technical support call 1-800-936-6899 EconPortal Quick Start for Krugman/Wells Macroeconomics, 3e Table of Contents Overview...

More information

The Ribbon The Ribbon contains multiple tabs, each with several groups of commands. You can add your own tabs that contain your favorite commands.

The Ribbon The Ribbon contains multiple tabs, each with several groups of commands. You can add your own tabs that contain your favorite commands. Lesson1-Getting Star with excel Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson, you will learn your way around the Excel 2010 environment, including

More information

Contributing Lists in Activity Center

Contributing Lists in Activity Center Contributing Lists in Activity Center Overview This tour details the use of Lists in Activity Center, including: 1. Selecting Contributing Lists for Student Input 2. Configuration Options for Contributing

More information

MATE: A Flex Framework Extreme Makeover

MATE: A Flex Framework Extreme Makeover MATE: A Flex Framework Extreme Makeover Our Agenda Introductions What Is MATE? Why Use MATE? Take A Look At The Original App - ClipSafe It s Time for an Extreme Makeover! Extending MATE Summary Introductions

More information

HTML Mashups A mashup that embeds an HTML or JavaScript based Web page directly on a screen.

HTML Mashups A mashup that embeds an HTML or JavaScript based Web page directly on a screen. ABSTRACT Mashups are used to integrate data from SAP's cloud solution with data provided by an online Web service or application. Users can access the content provided by these Web services and applications.

More information

IBM Mobile Portal Accelerator Enablement

IBM Mobile Portal Accelerator Enablement IBM Mobile Portal Accelerator Enablement Hands-on Lab Exercise on XDIME Portlet Development Prepared by Kiran J Rao IBM MPA Development kiran.rao@in.ibm.com Jaye Fitzgerald IBM MPA Development jaye@us.ibm.com

More information

Recommended Workstation Requirements and Configuration - Mobius and Citizen Portal. Curam v7 / CCISD Release 4.0

Recommended Workstation Requirements and Configuration - Mobius and Citizen Portal. Curam v7 / CCISD Release 4.0 Recommended Workstation Requirements and Configuration - Mobius and Citizen Portal Curam v7 / CCISD Release 4.0 Version: 8.0 Final June 6, 2018 Deliverable Information Revision History Version Number Revision

More information

ADOBE DRIVE 4.2 USER GUIDE

ADOBE DRIVE 4.2 USER GUIDE ADOBE DRIVE 4.2 USER GUIDE 2 2013 Adobe Systems Incorporated. All rights reserved. Adobe Drive 4.2 User Guide Adobe, the Adobe logo, Creative Suite, Illustrator, InCopy, InDesign, and Photoshop are either

More information

Dashboards and Portlets Instructions for the creation of End User Custom Dashboards and Portlets in the PPM system.

Dashboards and Portlets Instructions for the creation of End User Custom Dashboards and Portlets in the PPM system. Objective: To provide guidance to the PPM End User Community in the continued enhancement and engagement of new stakeholders to improve the End User Experience and the gathering and reporting of Actionable

More information

Getting Started with Excel

Getting Started with Excel Getting Started with Excel Introduction Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson, you will learn your way around the Excel 2010 environment,

More information

Hello World on the ATLYS Board. Building the Hardware

Hello World on the ATLYS Board. Building the Hardware 1. Start Xilinx Platform Studio Hello World on the ATLYS Board Building the Hardware 2. Click on Create New Blank Project Using Base System Builder For the project file field, browse to the directory where

More information

Dell Wyse Windows 10 IoT Enterprise for Latitude 5280 Mobile Thin Client. BIOS Upgrade Guide

Dell Wyse Windows 10 IoT Enterprise for Latitude 5280 Mobile Thin Client. BIOS Upgrade Guide Dell Wyse Windows 10 IoT Enterprise for Latitude 5280 Mobile Thin Client BIOS Upgrade Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of

More information

Getting Started with the Aloha Community Template for Salesforce Identity

Getting Started with the Aloha Community Template for Salesforce Identity Getting Started with the Aloha Community Template for Salesforce Identity Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved.

More information

Creating a PDF Report with Multiple Queries

Creating a PDF Report with Multiple Queries Creating a PDF Report with Multiple Queries Purpose This tutorial shows you how to create a PDF report that contains a table and graph utilizing two report queries. Time to Complete Approximately 15 minutes

More information

Optimizing GRITS. In this chapter:

Optimizing GRITS. In this chapter: Optimizing GRITS In this chapter: Creating Favorites and Shortcuts Optimizing Browser Performance Running Reports with Acrobat Reader Efficient Screen Navigation Creating Favorites and Shortcuts To access

More information

A Guide to Automation Services 8.5.1

A Guide to Automation Services 8.5.1 A Guide to Automation Services 8.5.1 CONTENTS Contents Introduction...4 Where we're coming from...4 Conventions in this book...4 Understanding Automation Services...6 What is Automation Services?...6 Process

More information