Programming Web Client

Size: px
Start display at page:

Download "Programming Web Client"

Transcription

1 Programming Web Client

2 Copyright 01 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks are the property of their respective owners. No part of this publication may be reproduced, stored, or transmitted in any form without the prior written permission of Lexmark.

3 Table of Contents 1 Listener... Display of the Workflow Inbox... Web Client Components... Portal Integration....1 Search and Display of Documents "portal.zul" Filter Viewerclass Default Values for Index Fields Configuration of the Service Component.... Access to the Workflow Inbox.... Archiving New Documents "archiver.zul"..... Events

4 Programming Web Client 1 Listener ZK provides different listener to which an application responds to certain events : DesktopCleanup Desktopinit SessionCleanup Sessioninit WebAppCleanup WebAppinit The SAPERION Web Client implements own listener for these events: NGDesktopCleanup NGDesktopInit NGSessionCleanup NGSessionInit NGWebAppCleanup NGWebAppInit If additional actions should be processed at an event, an own listener can be implemented. The newly generated listener must be an extension of the respective Web Client listener. i Please note that in the method to be implemented the method of the Web Client listener must be called up. The newly generated listener can be registered in the "zk.xml"-file. Display of the Workflow Inbox For the display of the Workflow inbox in the Web Client (Business Cases) with differentiated folders "Resubmission" and "Inbox" you need to add the below stated filter string for "getinbox": public enum Filter { /** default - no filter. */ NONE("(HOLDDATE = NULL or HOLDDATE < current_timestamp())"), /** */ DUE_TASKS("(ESCALATIONID > 1)"), /** */ REMINDERS("(HOLDDATE >= current_timestamp() and HOLDDATE <> NULL)"),

5 Web Client Components /** */ DELEGATED_TASKS("(OWNERID = %ID%)"), // and USERID <> %ID%)"), /** */ COMPLETED_TASKS("(LASTUSERID = %ID%)"); Web Client Components This chapter offers an overview of all Web Clients components. Because all components are derivatives of different standard ZK components, the usual ZK parameters and events are available for all components. Further parameters and events - if available - are listed to the components. i A detailed list of available methods can be found in the JavaDoc of the Web Client. For this, the name of the class of the component is stated. Normally, all components are controlled via events. In order to intervene in the current event process event listener can be registered on the components. Events received by components can also be identified by means of the JavaDoc of the Web Client due to the reason that for each event a method with the same name is existing. For example, an event named "onlogon" would be treated by a method "onlogon". The ZK framework ensures that registered event listeners are notified before the respective on-method is requested. Web Client Components Component spnservice [com.saperion.ngc.service.serviceview] Hidden service component which assumes function such as login and logout and also the logging. viewer [com.saperion.ngc.viewer.documentviewimpl] Serves for the display of documents. The viewer component contains the actual viewer as stand-alone internal component. You can define the viewer to be used in the "web.xml". mashup [com.saperion.ngc.iform.mashup.formmashup] The mashup serves for the integration of external web applications such as Google maps or XING. logging Serves for display of log entries on the interface. [com.saperion.ngc.logging.logviewimpl] navigation [com.saperion.ngc.navigation.navigationviewimpl] Represents the navigation tree and enables operations on folder level such as adding or removing folders, archiving and subordinating documents or starting applications. resultset [com.saperion.ngc.resultset.resultsetviewimpl] Represents the result of a query in a list and offers functions for working with the found elements. Furthermore the component contains UI elements for turning through pages of the result list and filter client based. spntoolbar [com.saperion.ngc.toolbar.saperiontoolbarview] The toolbar contains a freely selected name for an application, the name of the currently logged-in user, a dropdown box for the language selection and the logout button. tabview [com.saperion.ngc.maintab.maintabviewimpl] The tab view component serves for the display of multiple forms or different elements in tabs.

6 Component iform [com.saperion.ngc.iform.intelligentformviewimpl] The iform is the equivalent of the form in Rich Client. By means of other components the content of the form is represented in the iform as defined in the Form Designer of the Rich Client. The iform can also be embedded in another iform. iformlabel [com.saperion.ngc.iform.label.formlabel] Represents a text of a form. iformbutton [com.saperion.ngc.iform.button.formbutton] Represents a button in a form. itextfield [com.saperion.ngc.iform.field.textfield] Represents a text entry field in a form. itristatefield [com.saperion.ngc.iform.field.tristatefield] Represents entry fields for the three values "none", "all" and "some" in a form. icheckboxfield [com.saperion.ngc.iform.field.checkboxfield] Represents an entry field for "yes" and "no" in a form. idatefield [com.saperion.ngc.iform.field.datefield] Represents a date entry field in a form. ifloatfield [com.saperion.ngc.iform.field.floatfield] Represents a floating-point entry field in a form. iintfield [com.saperion.ngc.iform.field.intfield] Represents an integer entry field in a form. ilookuptextfield [com.saperion.ngc.iform.field.lookuptextfield] Represents a text entry field with a lookup table in a form. itimefield [com.saperion.ngc.iform.field.timefield] Represents a time entry field in a form. Portal Integration The SAPERION Web Client can be integrated into portals and further websites. For this purpose the files "portal.zul" and "archiver.zul" are provided along with the SAPERION installation CD. The file "portal.zul" offers the facility to open a certain mask and to start a search with pre-defined parameters. By means of the file "archiver.zul" new files can be archived. The registration for SAPERION backend is processed via the normal login mask of the Web Client or via Single-Sign-On if this feature is configured. In this chapter you will learn about how to embed the Web Client in your portal resp. your website..1 Search and Display of Documents "portal.zul" The control for the file "portal.zul" is done with the following URL-parameters: "portal.zul" Parameter mask Name of the query mask to be opened (without.qbe extension) doquery If this parameter exists (without value) an automatic query will be started. filter When "doquery" is used, you can add the "filter" parameter to filter for specific values in fields. More details can be found in the next section.

7 Portal Integration 5 Parameter selectsingleresult If this parameters exists (without value) the found document will be automatically selected. In cases multiple documents are found this parameter has no effect. viewerclass With this parameter you define which viewer is used in the mask. For this purpose enter the full qualified class name of the viewer implementation. Important: Upper and lower case spelling must be considered. Filter You can use the optional "filter" parameter in the URL to define additional values for the search. Please note the following: The filter parameter must follow a "&" in the URL. For each field, a field name/value pair can be stated. Field name and value are separated by "=". Multiple pairs are separated by ";". Fields that define a lower or upper limit for the search are identified by [0] or [1], respectively. Entries with floating-point numbers must be entered with periods, not commas. The URL format using the filter parameter could then be: Example: portal.zul?mask=examplev7_q&doquery&filter=ex7_docnr[0]=;ex7_docnr[1]=;ex7_docname=.%0og With the above URL, the form "examplev7_q" is opened. Upon opening, a search is started for the field EX7_DOCNR (lower limit) = "", the field EX7_DOCNR (upper limit) = "" and the field EX7_DOCNAME = ". OG". Viewerclass For the optional parameter "viewerclass" following values are available: Viewerclass Value com.saperion.ngc.viewer.simple.simpleviewerimpl Place holder which only display a download link for the document. com.saperion.ngc.viewer.virtualviewer.clientserver.csvirtualviewerapplet Implementation of the provided Snowbound Virtual Viewer (default value). Default Values for Index Fields For default values of index fields certain formats for values must be considered: Floating-point numbers: Decimal separator is a point (Example: 17.) Date: ISO-801 format (Example: T18::.000Z)

8 Multiple values for multi-value fields are separated by ";". If a field contains a value with semicolon, it can be masked by a second semicolon (Example: "A;;single;;value" leads to "A;single;value". 1;; specifies the three values 1, and ). For fulltext fields the database dependent syntax of the fulltext search function must be used. For example, an expression with space must be set in quotation marks. Further details are described in the documentation of the database. Configuration of the Service Component You have further configuration possibilities in the "portal.zul". You are allowed to switch off the message "Do you want to move to this page?" when the user is moving to another page. <spnservice logoffwarningdisabled="true";/> If it is required that the user remains at the same page after logging off, set the following entry: <spnservice redirectafterlogoffdisabled="true";/>. Access to the Workflow Inbox With the file "portal.zul" it is also possible to access the workflow inbox of users. For this purpose an own parameter is available: Workflow Inbox Parameters Parameter openinbox Opens the inbox of the currently logged in user. Except the parameter "mask" all above mentioned parameters are available (see chapter "portal.zul"). It is possible to set default values for the fields in the mask of the workflow inbox. Example When a user clicks the above stated example URL and has been authenticated, the mask for the workflow inbox will be loaded. The field "subject" is set by default with the value "Invoice" and a search is started. i. Currently it is not possible to access group and substitute boxes by means of "portal.zul". Archiving New Documents "archiver.zul" The file "archiver.zul" is controlled via http-post request. In this POST request used index mask, document content and also its metadata (when pre-defined) are transmitted.

9 Portal Integration 7 Default values for index fields can be transmitted as additional parameters in the POST request. For this, respectively the field name and the required value are linked. Following parameters are pre-defined: Pre-defined Parameters in "archiver.zul" Parameter ngc_archivemask Name of the index mask (without.qbe extension) ngc_archivedocument Contains the content of the document. ngc_workflowdefinition Optional: The name of the workflow definition which should be started on the new document after successful archiving. ngc_workflowactor Optional: Name of the first user for the workflow definition. By means of the optional parameters "ngc_workflowdefinition" and "ngc_workflowactor" a workflow can be started automatically on the new document after successful archiving. State the name of the workflow definition here. If the definition does not contain any recipients, you can define one by means of the parameter "ngc_workflowactor". Events The "archiver.zul" file enables also to react to certain events: Events Event onarchivercancel Will be initiated when the user clicks the [Cancel] button in the form. onarchivererror Will be initiated when the archiver is not able to archive the document. It should be noted that only errors that occur in the archiver are handled. These are e.g., false request parameter or insufficient user rights. System errors while archiving are already intercepted by the error handling of the Web Client components. The event contains the error message in its "data" field. onarchiversuccess Will be initiated after a document has been archived. The event contains values as list of FieldResultBeans in its "data" field which are entered in the index fields. In the prepared event listeners in the ".zul"-file on any events can be reacted separately. In the provided example implementation the user is shown respectively one message. After confirmation he will be logged off from the system and forwarded to a test site.

Best Practice Localization in SAPERION

Best Practice Localization in SAPERION Best Practice Localization in SAPERION Copyright 016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks

More information

SAPERION Release Script

SAPERION Release Script SAPERION Release Script Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks are the property

More information

Saperion. Release Notes. Version: 8.0

Saperion. Release Notes. Version: 8.0 Saperion Release Notes Version: 8.0 Written by: Product Knowledge, R&D Date: July 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered in the U.S. and/or

More information

Saperion Version 7.5 Service Pack 5 Patch Level Update

Saperion Version 7.5 Service Pack 5 Patch Level Update Saperion Version 7.5 Service Pack 5 Patch Level Update Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries.

More information

Saperion Version 7.5 Service Pack 6 Bug Fixes

Saperion Version 7.5 Service Pack 6 Bug Fixes Saperion Version 7.5 Service Pack 6 Bug Fixes Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other

More information

Guideline SAPERION Update Version 7.1

Guideline SAPERION Update Version 7.1 Guideline SAPERION Update Version 7.1 Copyright 201 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks

More information

ELM Server Exchange Edition ArchiveWeb version 5.5

ELM Server Exchange Edition ArchiveWeb version 5.5 ELM Server Exchange Edition ArchiveWeb version 5.5 Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All

More information

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide Software Release 8.1 March 2018 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES

More information

Perceptive TransForm E-Forms Manager Data Source

Perceptive TransForm E-Forms Manager Data Source Perceptive TransForm E-Forms Manager Data Source Getting Started Guide Version: 8.14.x Date: February 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

SFU Connect Calendar. Guide. Sharing Calendars

SFU Connect Calendar. Guide. Sharing Calendars SFU Connect Calendar How-To Guide Sharing Calendars Last updated: January 2009 Table of Contents Creating a Share... 3 Share Properties Menu... 3 Sharing with Internal Users or Groups... 4 Sharing with

More information

Using SQL Reporting Services with isupport

Using SQL Reporting Services with isupport isupport s SQL Reporting functionality is installed via the isupport SQL Reporting Setup Wizard; it includes several report models with isupport database fields, tables, and relationships. isupport includes

More information

Perceptive Intelligent Capture Visibility

Perceptive Intelligent Capture Visibility Perceptive Intelligent Capture Visibility User Guide Version: 3.1.x Written by: Product Knowledge, R&D Date: February 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark is a

More information

TIBCO Slingshot User Guide. Software Release August 2015

TIBCO Slingshot User Guide. Software Release August 2015 TIBCO Slingshot User Guide Software Release 1.9.4 August 2015 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS SOLELY

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x ImageNow eforms Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Primavera Portfolio Management 9.0 What s New Copyright 1999-2011, Oracle and/or its affiliates. The Programs (which include both the software and documentation) contain proprietary information; they are

More information

Saperion. Patch Level List. Version: 8.0.1

Saperion. Patch Level List. Version: 8.0.1 Saperion Patch Level List Version: 8.0.1 Written by: Product Knowledge, R&D Date: April 2018 Copyright 1991-2018 Hyland Software, Inc. and its affiliates. Table of Contents Table of Contents... 3 Overview...

More information

RSA WebCRD Getting Started

RSA WebCRD Getting Started RSA WebCRD Getting Started User Guide Getting Started With WebCRD Document Version: V9.5.1-1 Software Version: WebCRD V9.5.1 April 2015 2001-2015 Rochester Software Associates, Inc. All Rights Reserved.

More information

Saperion. Release Notes. Version: 8.0.1

Saperion. Release Notes. Version: 8.0.1 Saperion Release Notes Version: 8.0.1 Written by: Product Knowledge, R&D Date: February 2018 Copyright 1991-2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview... 4 Saperion 8.0.1

More information

Perceptive Interact for Microsoft Dynamics CRM

Perceptive Interact for Microsoft Dynamics CRM Perceptive Interact for Microsoft Dynamics CRM Installation and Setup Guide Version 2.2.x Compatible with ImageNow, Version 6.7.x or higher Written by: Product Documentation, R&D Date: September 2016 2014

More information

Pearson Inform 5.1. User Guide. Adding, Editing and Deleting Folders. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s).

Pearson Inform 5.1. User Guide. Adding, Editing and Deleting Folders. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s). Pearson Inform 5.1 User Guide Adding, Editing and Deleting Folders Date: 1/26/2010 Copyright 2009 Pearson Education, Inc. or its affiliate(s). All rights reserved. No part of this publication may be reproduced

More information

Perceptive Experience Content Apps

Perceptive Experience Content Apps Perceptive Experience Content Apps Installation and Setup Guide Written by: Product Knowledge, R&D Date: Thursday, September 15, 2016 2014-2016 Lexmark International Technology, S.A. All rights reserved.

More information

SSRS 2016 for WITS. Web Portal User Guide. Applies to: WITS Version 18.0+

SSRS 2016 for WITS. Web Portal User Guide. Applies to: WITS Version 18.0+ SSRS 2016 for WITS Web Portal User Guide Applies to: WITS Version 18.0+ Microsoft SQL Server Reporting Services (SSRS) 2016 Last Updated June 1, 2017 Microsoft SQL Server 2016 Report Builder 3.0 Version

More information

Perceptive Interact for Microsoft Dynamics AX

Perceptive Interact for Microsoft Dynamics AX . Perceptive Interact for Microsoft Dynamics AX Release Notes Version: 2.2.x Compatible with ImageNow, Version: 6.7.x Written by: Product Knowledge, R&D Date: September 2016 2015 Perceptive Software. All

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Release Notes Version: 6.0.1 Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark. All rights reserved Lexmark is a trademark of Lexmark International, Inc.,

More information

SAPERION ECM C/ Link for SAP

SAPERION ECM C/ Link for SAP SAPERION ECM C/ Link for SAP Copyright 06 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks are the

More information

SAPERION Records Management

SAPERION Records Management SAPERION Records Management Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks are the

More information

Perceptive Intelligent Capture Visibility

Perceptive Intelligent Capture Visibility Perceptive Intelligent Capture Visibility Installation and Setup Guide Version: 3.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved.

More information

SAS Web Infrastructure Kit 1.0. Overview

SAS Web Infrastructure Kit 1.0. Overview SAS Web Infrastructure Kit 1.0 Overview The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS Web Infrastructure Kit 1.0: Overview. Cary, NC: SAS Institute Inc.

More information

Release Notes Release (December 4, 2017)... 4 Release (November 27, 2017)... 5 Release

Release Notes Release (December 4, 2017)... 4 Release (November 27, 2017)... 5 Release Release Notes Release 2.1.4. 201712031143 (December 4, 2017)... 4 Release 2.1.4. 201711260843 (November 27, 2017)... 5 Release 2.1.4. 201711190811 (November 20, 2017)... 6 Release 2.1.4. 201711121228 (November

More information

User Guide. 3CX Recording Manager Standard. Version

User Guide. 3CX Recording Manager Standard. Version User Guide 3CX Recording Manager Standard Version 15.5.109 "Copyright VoIPTools, LLC 2011-2018" Information in this document is subject to change without notice. No part of this document may be reproduced

More information

Perceptive Reflect. Installation and Setup Guide. Version: 2.3.x

Perceptive Reflect. Installation and Setup Guide. Version: 2.3.x Perceptive Reflect Installation and Setup Guide Version: 2.3.x Written by: Product Documentation, R&D Date: September 2016 2012 Lexmark International Technology SA. All rights reserved Perceptive Reflect

More information

Outlook Integration. Installation & Configuration

Outlook Integration. Installation & Configuration Outlook Integration Installation & Configuration Table of Contents Outlook Integration Installation... 2 Outlook Integration Configuration... 4 Additional Notes for Outlook... 5 User Configuration... 6

More information

METADATA FRAMEWORK 6.3. and High Availability

METADATA FRAMEWORK 6.3. and High Availability METADATA FRAMEWORK 6.3 and High Availability Publishing Information Software version 6.3.160 Document version 4 Publication date May 22, 2017 Copyright (c) 2005-2017 Varonis Systems Inc. All rights reserved.

More information

Electronic Balloting Portal. User guide for Voters v 1

Electronic Balloting Portal. User guide for Voters v 1 Electronic Balloting Portal User guide for Voters v 1 ITES 12/18/2014 0 Table of Contents 2 Table of Contents TABLE OF CONTENTS... 2 1 INTRODUCTION... 3 1.1 THE BALLOTING WORKFLOW... 3 1.2 BALLOTING ROLES...

More information

XDS Connector. Installation and Setup Guide. Version: 1.0.x

XDS Connector. Installation and Setup Guide. Version: 1.0.x XDS Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: November 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc.,

More information

TIBCO Spotfire Automation Services 7.5. User s Manual

TIBCO Spotfire Automation Services 7.5. User s Manual TIBCO Spotfire Automation Services 7.5 User s Manual Revision date: 15 January 2016 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

SAS Clinical Data Integration 2.4

SAS Clinical Data Integration 2.4 SAS Clinical Data Integration 2.4 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS Clinical Data Integration 2.4: User's Guide.

More information

OpenDrive Wordpress Plugin Guide

OpenDrive Wordpress Plugin Guide OpenDrive Wordpress Plugin Guide Version 1.0.4 OpenDrive Online storage, backup and cloud content management Contents 1. Drive:... 3 1.1 Drive... 3 1.2 Working with files... 4 1.2.1 Work with a particular

More information

MAGINUS IT SERVICE MANAGEMENT. Service Desk Customer Portal

MAGINUS IT SERVICE MANAGEMENT. Service Desk Customer Portal MAGINUS IT SERVICE MANAGEMENT Service Desk Customer Portal Service Desk Customer Portal Maginus Software Solutions Limited 2009 All rights are reserved. No part of the content may be reproduced, adapted,

More information

SAS. Information Map Studio 3.1: Creating Your First Information Map

SAS. Information Map Studio 3.1: Creating Your First Information Map SAS Information Map Studio 3.1: Creating Your First Information Map The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Information Map Studio 3.1: Creating Your

More information

Workspace Secure Container for Mobile Devices

Workspace Secure Container for Mobile Devices Workspace Secure Container for Mobile Devices Version 1.1 Last Updated: April 24, 2014 2014 Verizon. All Rights Reserved. The Verizon name and logo and all other names, logos, and slogans identifying Verizon

More information

Apparo Fast Edit Training Guide for the first steps

Apparo Fast Edit Training Guide for the first steps Apparo Fast Edit Training Guide for the first steps [1] Table of Contents 1 Introduction... 5 1.1 What is Apparo Fast Edit... 5 1.2 What were the driving forces behind the development?... 5 1.3 Resulting

More information

BLACKBERRY SPARK COMMUNICATIONS PLATFORM. Getting Started Workbook

BLACKBERRY SPARK COMMUNICATIONS PLATFORM. Getting Started Workbook 1 BLACKBERRY SPARK COMMUNICATIONS PLATFORM Getting Started Workbook 2 2018 BlackBerry. All rights reserved. BlackBerry and related trademarks, names and logos are the property of BlackBerry

More information

Forms Builder Module v Create, administer, and complete electronic forms in the Passageways portal.

Forms Builder Module v Create, administer, and complete electronic forms in the Passageways portal. Forms Builder Module v4.11.1 Create, administer, and complete electronic forms in the Passageways portal. Contents Section 1. Overview... 1 Section 2. Module Properties... 1 Section 3. The Form Building

More information

ImageNow Retention Policy Manager

ImageNow Retention Policy Manager ImageNow Retention Policy Manager Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

How To Embed EventTracker Widget to an External Site

How To Embed EventTracker Widget to an External Site How To Embed EventTracker Widget to an External Site Publication Date: March 27, 2018 Abstract This guide will help the user(s) to configure an EventTracker Widget to an External Site like SharePoint.

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

Perceptive Interact for Epic

Perceptive Interact for Epic Perceptive Interact for Epic Installation and Setup Guide Version: 7.1.x Written by: Product Knowledge, R&D Date: March 2017 2015-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

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

StorageCraft Cloud Backup

StorageCraft Cloud Backup User Guide v1.3 (June 2017) StorageCraft Copyright Declaration StorageCraft ImageManager, StorageCraft ShadowProtect, StorageCraft Cloud, and StorageCraft Cloud Services, together with any associated logos,

More information

Transform AP for EnterpriseOne User's Guide

Transform AP for EnterpriseOne User's Guide Transform AP for EnterpriseOne User's Guide Transform AP for EnterpriseOne User s Guide Version 1.0 Copyright 2008 Bottomline Technologies, Inc. All rights reserved. Information in this document is subject

More information

2 Accessing Oracle Webmail

2 Accessing Oracle Webmail Oracle Collaboration Suite Using Oracle Webmail Release 2 (9.0.4.2) Part No. B10897-02 March 2004 You can use Oracle Webmail to: Compose and manage messages Create and manage message folders Manage public

More information

HP Records Manager. Kofax Capture Template. Software Version: 8.1. Document Release Date: August 2014

HP Records Manager. Kofax Capture Template. Software Version: 8.1. Document Release Date: August 2014 HP Records Manager Software Version: 8.1 Kofax Capture Template Document Release Date: August 2014 Software Release Date: August 2014 Legal Notices Warranty The only warranties for HP products and services

More information

Perceptive Experience Healthcare Apps

Perceptive Experience Healthcare Apps Perceptive Experience Healthcare Apps Release Notes Version: 1.2.1 Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International,

More information

Configuring and Monitoring HP P2000 SAN storage

Configuring and Monitoring HP P2000 SAN storage C` Configuring and Monitoring HP P2000 SAN storage eg Enterprise v5.6 Restricted Rights Legend The information contained in this document is confidential and subject to change without notice. No part of

More information

Wholesale Lockbox User Guide

Wholesale Lockbox User Guide Wholesale Lockbox User Guide August 2017 Copyright 2017 City National Bank City National Bank Member FDIC For Client Use Only Table of Contents Introduction... 3 Getting Started... 4 System Requirements...

More information

The Events notification plugin PRINTED MANUAL

The Events notification plugin PRINTED MANUAL The Events notification plugin PRINTED MANUAL Events notification plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

SpringCM Release Notes. January 2018

SpringCM Release Notes. January 2018 SpringCM Release Notes January 2018 Contents Announcements... 3 Global Navigation header coming in 2018... 3 Redefining the Admin and User Experiences... 4 Workflows... 4 E-Signature Changes... 4 Enhancements...

More information

Saperion. Patch Level List. Version: 8.0.0

Saperion. Patch Level List. Version: 8.0.0 Saperion Patch Level List Version: 8.0.0 Written by: Product Knowledge, R&D Date: August 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered in the

More information

User Guide EDDIE. Enterprise Data Delivery Information Environment. Business Objects 4.1

User Guide EDDIE. Enterprise Data Delivery Information Environment. Business Objects 4.1 User Guide EDDIE Enterprise Data Delivery Information Environment Business Objects 4.1 2 P a g e EDDIE 4.1 User Guide Contents Introduction to EDDIE... 4 Log into EDDIE... 4 Overview of EDDIE Homepage...

More information

RELEASE GUIDE VERSION 14.1

RELEASE GUIDE VERSION 14.1 RELEASE GUIDE VERSION 14.1 Copyright 2014 FileHold Systems Inc. All rights reserved. For further information about this manual or other FileHold Systems products, contact us at Suite 250-4664 Lougheed

More information

USER GUIDE EDIT MODE GUI AND TOOLS OVERVIEW DIGITAL EXPERIENCE MANAGER 7.1.1

USER GUIDE EDIT MODE GUI AND TOOLS OVERVIEW DIGITAL EXPERIENCE MANAGER 7.1.1 USER GUIDE EDIT MODE 1 SUMMARY 1 INTRODUCTION... 4 2 OVERVIEW OF THE EDIT MODE... 5 3 THE TOP TOOLBAR... 6 4 5 3.1 Mode menu... 6 3.2 View menu... 6 3.3 Publication menu... 6 3.4 Workflow menu... 7 3.5

More information

Avaya Communications Process Manager Release 2.2 Web Portal Help for Administrative Users

Avaya Communications Process Manager Release 2.2 Web Portal Help for Administrative Users Avaya Communications Process Manager Release 2.2 Web Portal Help for Administrative Users Document No. 04-601163 August 2008 Issue 10 2008 Avaya Inc. All Rights Reserved. Notice While reasonable efforts

More information

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework BlackBerry Developer Summit A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework Page 2 of 21 Table of Contents 1. Workbook Scope... 4 2. Compatibility... 4 3. Source code download

More information

Perceptive Interact for Microsoft Dynamics AX

Perceptive Interact for Microsoft Dynamics AX Perceptive Interact for Microsoft Dynamics AX Installation and Setup Guide Version 1.2 Compatible with ImageNow, version 6.7.x Written by: Product Documentation, R&D Date: September 2016 2013 Perceptive

More information

WAM!NET Submission Icons. Help Guide. March 2015

WAM!NET Submission Icons. Help Guide. March 2015 WAM!NET Submission Icons Help Guide March 2015 Document Contents 1 Introduction...2 1.1 Submission Option Resource...2 1.2 Submission Icon Type...3 1.2.1 Authenticated Submission Icons...3 1.2.2 Anonymous

More information

Vovici Enterprise System Administration Guide

Vovici Enterprise System Administration Guide know more. go far. Vovici Enterprise System Administration Guide Version 4.0 January 2009 45365 Vintage Park Plaza, Suite 250, Dulles, VA 20166 t: + 1 703 481 9326 f: + 1 703 783 0069 e: sales@vovici.com

More information

Doc. Version 1.0 Updated:

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

More information

Xrm.Location AddOn User Manual

Xrm.Location AddOn User Manual Microsoft Dynamics CRM 2013/2015/2016 Xrm.Location AddOn User Manual Table of Contents Overview... 3 Configuring Xrm.Location... 4 GeoLocating Dynamics Crm Entities... 7 Placing GeoCoded Entities on a

More information

Dashboards. created by others because they have given you permission to view.

Dashboards. created by others because they have given you permission to view. The Unified Intelligence Center interface is organized by dashboards. are web pages that display reports, scheduled reports, sticky notes, and web-based elements, such as URLs and web widgets, that are

More information

SAP Global Track and Trace Onboarding Guide

SAP Global Track and Trace Onboarding Guide SAP Global Track and Trace Onboarding Guide Document Version: Cloud 2019.04a Implementation Guide PUBLIC TABLE OF CONTENTS 1 INTRODUCTION... 3 1.1 Prerequisite... 3 1.2 Overview... 3 2 SET UP AN SAP CLOUD

More information

Version 1.4. FaxCore User Manual

Version 1.4. FaxCore User Manual Version 1.4 FaxCore User Manual Table of Contents Introduction... 1 Contacting FaxCore... 1 Getting Started... 2 Understanding FaxCore s User Interface... 4 Settings: Your User Profile... 4 Personal Information

More information

Vision 360 Administration User Guide

Vision 360 Administration User Guide Vision 360 Vision 360 Administration User Guide 1.0 Copyright INPS Ltd The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 501700 F:+44 (0) 207 5017100 W: www.inps.co.uk Copyright

More information

Healthcare Database Connector

Healthcare Database Connector Healthcare Database Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

Pearson Inform 5.1. User Guide. Organizing Your Report Library. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s).

Pearson Inform 5.1. User Guide. Organizing Your Report Library. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s). Pearson Inform 5.1 User Guide Organizing Your Report Library Date: 1/26/2010 Copyright 2009 Pearson Education, Inc. or its affiliate(s). All rights reserved. No part of this publication may be reproduced

More information

The Alarms Professional plug-in PRINTED MANUAL

The Alarms Professional plug-in PRINTED MANUAL The Alarms Professional plug-in PRINTED MANUAL Alarms Professional plug-in All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical,

More information

Welcome to the Investor Experience

Welcome to the Investor Experience Welcome to the Investor Experience Welcome to the Black Diamond Investor Experience, a platform that allows advisors to customize how they present information to their clients. This document provides important

More information

ES CONTENT MANAGEMENT - EVER TEAM

ES CONTENT MANAGEMENT - EVER TEAM ES CONTENT MANAGEMENT - EVER TEAM USER GUIDE Document Title Author ES Content Management - User Guide EVER TEAM Date 20/09/2010 Validated by EVER TEAM Date 20/09/2010 Version 9.4.0.0 Status Final TABLE

More information

FieldView. Management Suite

FieldView. Management Suite FieldView The FieldView Management Suite (FMS) system allows administrators to view the status of remote FieldView System endpoints, create and apply system configurations, and manage and apply remote

More information

Coveo Platform 7.0. Atlassian Confluence V2 Connector Guide

Coveo Platform 7.0. Atlassian Confluence V2 Connector Guide Coveo Platform 7.0 Atlassian Confluence V2 Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to

More information

Expense Management for Microsoft Dynamics NAV

Expense Management for Microsoft Dynamics NAV Expense Management for Microsoft Dynamics NAV Tables and Fields Documentation - Version 2.60 Expense Management - Tables and Fields Documentation - Version 2.50 Page 1 / 67 TABLE OF CONTENTS INTRODUCTION...

More information

Perceptive Process Mining

Perceptive Process Mining Perceptive Process Mining Installation and Setup Guide Version: 2.8.x Written by: Product Knowledge, R&D Date: September 2016 2014-2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International,

More information

Implementing and Supporting Windows Intune

Implementing and Supporting Windows Intune Implementing and Supporting Windows Intune Lab 4: Managing System Services Lab Manual Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

User Guide Ahmad Bilal [Type the company name] 1/1/2009

User Guide Ahmad Bilal [Type the company name] 1/1/2009 User Guide Ahmad Bilal [Type the company name] 1/1/2009 Contents 1 LOGGING IN... 1 1.1 REMEMBER ME... 1 1.2 FORGOT PASSWORD... 2 2 HOME PAGE... 3 2.1 CABINETS... 4 2.2 SEARCH HISTORY... 5 2.2.1 Recent

More information

SAS Workflow Manager 2.1: Quick Start Tutorial

SAS Workflow Manager 2.1: Quick Start Tutorial SAS Workflow Manager 2.1: Quick Start Tutorial Overview This Quick Start tutorial introduces the workflow design features of SAS Workflow Manager. It covers the most common tasks that you use to create

More information

Coveo Platform 7.0. Liferay Connector Guide

Coveo Platform 7.0. Liferay Connector Guide Coveo Platform 7.0 Liferay Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market

More information

What s New in Autodesk Constructware 2013 Release

What s New in Autodesk Constructware 2013 Release Autodesk Constructware 2013 What s New in Autodesk Constructware 2013 Release Figure 1. Autodesk Constructware 2013 Autodesk Constructware web-based project management software enables construction firms

More information

Nexio G-Scribe Data Source Wizard

Nexio G-Scribe Data Source Wizard Nexio G-Scribe Data Source Wizard 6/17/2014 175-100330-00 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

Content Modeling for Administrators

Content Modeling for Administrators Content Modeling for Administrators Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

Coveo Platform 7.0. EMC Documentum Connector Guide

Coveo Platform 7.0. EMC Documentum Connector Guide Coveo Platform 7.0 EMC Documentum Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

PharmGuard. Administrator 4.2. Administrator Help. Medication Safety Software

PharmGuard. Administrator 4.2. Administrator Help. Medication Safety Software PharmGuard Medication Safety Software Administrator 4.2 Administrator Help Table of Contents Administrator Help... 1 Overview... 1 Warnings... 2 Important Notes... 3 System Setup... 4 Pump Selections...

More information

Important Notice. Important Notice

Important Notice. Important Notice Important Notice Varien reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services at any time and to discontinue any product or service

More information

A Guide for Customer Accounts

A Guide for Customer Accounts A Guide for Customer Accounts Introduction This document contains set up and configuration guides for ODDS Customer Accounts. This manual helps to assist customers with the setup of their ODDS account,

More information

ImageNow Interact for Lexmark

ImageNow Interact for Lexmark ImageNow Interact for Lexmark Installation and Setup Guide Version: 3.3. x Written by: Product Documentation, R&D Date: September 2016 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

ECM-VNA Convergence Connector

ECM-VNA Convergence Connector ECM-VNA Convergence Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

RSA WebCRD Getting Started

RSA WebCRD Getting Started RSA WebCRD Getting Started User Guide Getting Started With WebCRD Document Version: V9.2.2-1 Software Version: WebCRD V9.2.2 April 2013 2001-2013 Rochester Software Associates, Inc. All Rights Reserved.

More information

Using AgilePLM in MSI

Using AgilePLM in MSI Using AgilePLM in MSI MANAGING DISCUSSION OBJECTS GNL1147.00E MOTOROLA, MOTO, MOTOROLA SOLUTIONS and the Stylized M Logo are trademarks or registered trademarks of Motorola Trademark GNL1147.00E Holdings,

More information

Oracle FLEXCUBE Investor Servicing BIP Report Development Guide Release 12.0 April 2012 Oracle Part Number E

Oracle FLEXCUBE Investor Servicing BIP Report Development Guide Release 12.0 April 2012 Oracle Part Number E Oracle FLEXCUBE Investor Servicing BIP Report Development Guide Release 12.0 April 2012 Oracle Part Number E51528-01 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions...

More information

Add Authentication to the Public Store Front

Add Authentication to the Public Store Front Salesforce.com: Winter '10 Last updated: November 24, 2009 Copyright 2000-2009 salesforce.com, inc. All rights reserved. Salesforce.com is a registered trademark of salesforce.com, inc., as are other names

More information