Simple Approval Cycle

Size: px
Start display at page:

Download "Simple Approval Cycle"

Transcription

1 PNMsoft Knowledge Base Sequence Best Practises Simple Approval Cycle Oct Product Version 7.0 and above

2 2013 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by PNMsoft Ltd and/or its affiliates and is for the sole use of the PNMsoft customers, PNMsoft official business partners, or other authorized recipients. This document may contain information that is confidential, proprietary or otherwise legally protected, and it may not be further copied, distributed or publicly displayed without the express written permission of PNMsoft Ltd. or its affiliates. PNMsoft UK 38 Clarendon Road Watford Hertfordshire WD17 1JJ Tel: +44(0) Website:

3 TABLE OF CONTENTS General Document Information... 1 Purpose... 1 Prerequisites... 1 Introduction: The Approval Cycle Scenario... 2 Options for Handling Form Data... 3 Which Option Should I Choose?... 3 Implementation in Sequence... 4 Option A: Simple Approval with No Data Trace (recommended)... 4 Option B: Simple Approval with Simple Data Trace...15 Option C: Simple Approval with Grid and Data Trace...28 Files... 40

4 General Document Information Purpose The purpose of this document is to enable Sequence developers to create approval cycles in their workflows using best practises. Prerequisites Basic knowledge of developing processes with Sequence. Simple Approval Cycle Page 1

5 Introduction: The Approval Cycle Scenario Very often in business workflows, it is necessary to create something called 'an approval cycle'. An approval cycle is a section of flow that loops back to a form's initiator until a task is approved. The major steps of this flow are: 1. User A completes a Form and submits it for approval. 2. User B (e.g. a manager) receives a Task containing the Form's data. User B can approve or decline it. 3. If User B approves it, the flow continues to the next step in the process. If User B declines it, the flow returns to User A as a Rework Task. User A receives the Rework Task, he edits the From and resubmits it for approval (looping back to step 2. above)...this continues until User B approves it in step 2. and the loop is exited. Here is what such a flow looks like: Flow Diagram Simple Approval Cycle Page 2

6 Options for Handling Form Data The following options exist for how to handle the form data in such an Approval Cycle: Option A: Each time User A edits the form (in the Rework Task), the Form data is updated. In this scenario, ends users can only view data from the latest iteration of the loop. The data of the original Form (and all previous Reworks) is overwritten by the latest Rework. When the Manager looks back at the original Form and previous Reworks, he sees the same data as was saved in the latest Rework. Option B: Form data from each loop iteration is saved, so that end users can look back at the original form (and all subsequent iterations) and view the data that the user filled out. This is 'Trace' functionality, and it means that as a manager, you can go back and see what the user filled out, and what he changed, before making a decision whether to approve or decline the current form. The data of the original Form and all previous Reworks is not overwritten by the latest Rework. When the Manager looks back at the original Form and previous Reworks, he sees different data in each instance.> Option C: Option C also saves data from each iteration like in Option B, but it has a more orderly data structure (it stores information as rows in a grid) and requires that you implement some server side code. Which Option Should I Choose? Example of Option B in Flowtime Option A is the recommended and simplest best practise (and is the simplest to implement). However, if having access to data from previous iterations is important, you may choose Option B or C. You can choose between B or C depending on your solution requirements. Simple Approval Cycle Page 3

7 Implementation in Sequence Option A: Simple Approval with No Data Trace (recommended) 1. Create a Request Form and add one table in the data model. 2. Set the key to be workflow instance ID (fldiwfid). Set Key to fldwfid Simple Approval Cycle Page 4

8 3. In the Data Fields screen, add fields for the Form. 4. Create the Form. Data Fields Create the Form Simple Approval Cycle Page 5

9 5. Create a read only view of the Form: Select Views > New Select Read Only View Simple Approval Cycle Page 6

10 Read Only View Created 6. Add an Approval Task to the workflow and add the following fields to its Form: Approval: a combo box. Use Edit Choices to add the values: Approve, Decline. Comments: a text area. Approval Task Simple Approval Cycle Page 7

11 7. Connect these fields to data sources. Data Fields of the Task 8. In the Data Model, leave the key as activity instance ID (fldiactid). Table Properties Simple Approval Cycle Page 8

12 9. Add a Sub View control to the Approval Form: Add Sub View 10. Set the Sub View to display the read only view from the Request activity. Set Sub View Simple Approval Cycle Page 9

13 Sub View Added 11. Create the Rework Task as a blank Form without any Data Model (select the First Define Data, and do not select the Fast Track option). Rework Task Simple Approval Cycle Page 10

14 Rework Task Rework Form Creation 12. Add a Sub View to display the Request Form s default view. Simple Approval Cycle Page 11

15 Add Sub View 13. Add an IfElse activity that checks the Approval checkbox value in the Approval Task. If Approved, the workflow ends. If Declined, the flow routes to the Rework activity. The workflow should appear as follows: Workflow Completed 14. Set the recipients for the Tasks (Approval should go to a manager, Rework should go back the imitator of the Request Form) and set workflow permissions. Simple Approval Cycle Page 12

16 15. In Flowtime, run the workflow through several loops (each time, decline the approval). Notice that in each instance, the Form data is updated and only the latest entered data is saved. First Form is Completed After Reject, Rework is Completed Simple Approval Cycle Page 13

17 Click Back on Original Form Notice that Data was Updated by Rework Simple Approval Cycle Page 14

18 Option B: Simple Approval with Simple Data Trace 1. Create a Request Form and add one table in the Data Model. 2. Leave the key as activity instance ID (fldiactid). 3. Add the form s fields. Table Properties Data Fields Simple Approval Cycle Page 15

19 4. Add another table based on the same table (select it from current workflow) and give it a different name. Add Table 5. Set the key of the second table to be workflow instance ID (fldiwfid). Set Key to fldwfid Simple Approval Cycle Page 16

20 6. Use the same fields as in the first table. 7. Create the Form. Data Fields Create Form 8. Add a read only View based on the second query (RequestRO). Simple Approval Cycle Page 17

21 Add View 9. Add a where parameter on the data source. Add Where Parameter Simple Approval Cycle Page 18

22 <WhereParameters> <asp:parameter DefaultValue='<%$ sq: {iif(act.sourceactivity("request")!=null,act.sourceactivity("request" ).ActivityInstanceId.toString(),act.SourceActivity("ReWork").ActivityInstanceId.toString())}%>' Name="fldIActId" Type="Int32"></asp:Parameter> </WhereParameters> Note: You can also do this using the Where Parameters wizard. Where Parameters Wizard 16. Add an Approval Task to the workflow and add the following fields to its Form: Approval: a combo box. Use Edit Choices to add the values: Approve, Decline. Comments: a text area. Approval Task Simple Approval Cycle Page 19

23 17. Connect these fields to data sources. Data Fields of the Task 18. In the Data Model, leave the key as activity instance ID (fldiactid). Table Properties Simple Approval Cycle Page 20

24 19. Add a Sub View control to the Approval Form: Add Sub View 20. Set the Sub View to display the read only view from the Request activity. Set Sub View Simple Approval Cycle Page 21

25 Sub View Added 21. Create the Rework Task as a blank Form without any Data Model (select the First Define Data, and do not select the Fast Track option). Rework Task Simple Approval Cycle Page 22

26 Rework Task Rework Form Creation 22. Add a Sub View to display the Request Form s default view. Simple Approval Cycle Page 23

27 Add Sub View 10. Return to the Data Model of the Request activity. Data Model of Request Activity Simple Approval Cycle Page 24

28 11. Edit the first table and click Next to go to the Data Fields screen. Data Fields 12. Click the Item field and set its default value as follows: iif({request}.query( MyRequestRO ).count()>0,{request}.query( MyRequestRO ).last()[ Item ],null) Set Default Value of Item Field Simple Approval Cycle Page 25

29 Explanation: this expression will check if there are any records in the request table. If so it gets the last row and selects the Item field. Since the MyRequestRO will always get all the records for this workflow instance (the key is workflow instance ID), we need to get the last row. 13. Set the default values of Qty and Comment fields the same as you did for the Item. 14. Add an IfElse activity that checks the Approval checkbox value in the Approval Task. If Approved the workflow ends. If Declined the flow routes to the Rework. The workflow should appear now as follows: Workflow Completed 15. Set the recipients for the Tasks (Approval should go to a manager, Rework should go back the imitator of the Request Form) and set permissions. 16. Run the workflow through several loops (each time Decline the approval). Notice that the data from each instance is saved (in the process tree you can click back to the Forms of previous instances to view this data): First Form is Completed Simple Approval Cycle Page 26

30 After Rejection, the Initiator Completes the Rework Form Click Back to Original Form Notice that Original Data is Saved (Not Overwritten) Simple Approval Cycle Page 27

31 Option C: Simple Approval with Grid and Data Trace 1. Create a Request Form and add one table in the Data Model. 2. Leave the key as activity instance ID (fldiactid). Table Properties Simple Approval Cycle Page 28

32 3. Add the Form fields. Data Fields 4. Add another table to the Data Model for the grid lines, with activity instance ID as the key (fldiactid). Table Properties Simple Approval Cycle Page 29

33 5. Add fields for the Form. Add Fields Simple Approval Cycle Page 30

34 6. Add two more tables based on the same table (select it from the current workflow). Give them a different name, and set the key to be the workflow instance ID. Use the same fields for the request table and for the items table. Request Table Items Table Simple Approval Cycle Page 31

35 7. Create the Form. Add a grid control for Item and Quantity records, and connect it to the Data Source (see the Grid section in UX Studio Defining Controls for more details). Create the Form 8. Add a control reference in the markup of the form to point to the code behind. Control Reference <%@ Control Inherits="SequenceEx.Forms.Extensions.PrepopulateForm, SequenceEx.Forms, Version= , Culture=neutral, PublicKeyToken=afe23ba58f65dc7e"%> 9. Add another view and create a read only form based on the two other queries (RequestRO and ItemsRO). Simple Approval Cycle Page 32

36 Add Read Only View 10. Add a where parameter on the data source. <WhereParameters > Add Where Parameter <asp:parameter DefaultValue='<%$ sq: {iif(act.sourceactivity("request")!=null,act.sourceactivity("request" ).ActivityInstanceId.toString() Simple Approval Cycle Page 33

37 ,act.sourceactivity("rework").activityinstanceid.tostring())}%>' Name="fldIActId" Type="Int32"></asp:Parameter> </WhereParameters> Note: You can also do this using the Where Parameters wizard. Where Parameters Wizard 23. Add an Approval Task to the workflow and add the following fields to its Form: Approval: a combo box. Use Edit Choices to add the values: Approve, Decline. Comments: a text area. Approval Task Simple Approval Cycle Page 34

38 24. Connect these fields to data sources. Data Fields of the Task 25. In the Data Model, leave the key as activity instance ID (fldiactid). Table Properties Simple Approval Cycle Page 35

39 26. Add a Sub View control to the Approval Form: Add Sub View 27. Set the Sub View to display the read only view from the Request activity. Set Sub View 28. Create the Rework Task as a blank Form without any Data Model (select the First Define Data, and do not select the Fast Track option). Simple Approval Cycle Page 36

40 Rework Task Rework Task Simple Approval Cycle Page 37

41 Rework Form Creation 29. Add a Sub View to display the Request Form s default view. Add Sub View Simple Approval Cycle Page 38

42 30. Add an IfElse activity that checks the Approval checkbox value in the Approval Task. If Approved the workflow ends. If Declined the flow routes to the Rework. The workflow should appear now as follows: Workflow Completed 31. Set the recipients for the Tasks (Approval should go to a manager, Rework should go back the imitator of the Request Form) and set permissions. 32. Run the workflow through several loops (each time Decline the approval). Notice that the data from each instance is saved (in the process tree you can click back to the Forms of previous instances to view this data): Data of Each Iteration Saved Simple Approval Cycle Page 39

43 Files # Description File 1 The assembly used. SequenceEx.Forms.dll Simple Approval Cycle Page 40

Getting Started with Sequence - Exercise May 2016 Product Version 7.5 and above

Getting Started with Sequence - Exercise May 2016 Product Version 7.5 and above PNMsoft Knowledge Base Sequence User Guides Getting Started with Sequence - Exercise May 2016 Product Version 7.5 and above 2016 PNMsoft All Rights Reserved This document, including any supporting materials,

More information

Database Installation Using Scripts March Product Version 7.0 and above

Database Installation Using Scripts March Product Version 7.0 and above PNMsoft Knowledge Base Sequence Administrator Guides Database Installation Using Scripts March. 2014 Product Version 7.0 and above 2014 PNMsoft All Rights Reserved This document, including any supporting

More information

Version Management March 2016 Product Version 7.8 and above

Version Management March 2016 Product Version 7.8 and above PNMsoft Knowledge Base Sequence User Guides Version Management March 2016 Product Version 7.8 and above 2016 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by PNMsoft

More information

Remote Web Parts Nov Product Version 7.8 and above

Remote Web Parts Nov Product Version 7.8 and above PNMsoft Knowledge Base Sequence User Guides Remote Web Parts Nov. 2014 Product Version 7.8 and above 2014 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by PNMsoft

More information

Multilingual Workflows Feb Product Version 7.0 and above

Multilingual Workflows Feb Product Version 7.0 and above PNMsoft Knowledge Base Sequence User Guides Multilingual Workflows Feb. 2013 Product Version 7.0 and above 2013 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by

More information

Deployment Best Practices Oct Product Version 7.0 and above

Deployment Best Practices Oct Product Version 7.0 and above PNMsoft Knowledge Base Sequence User Guides Deployment Best Practices Oct. 2014 Product Version 7.0 and above 2014 PNMsoft All Rights Reserved This document, including any supporting materials, is owned

More information

Flowtime Website Installation and Configuration Aug Product Version 8.1+

Flowtime Website Installation and Configuration Aug Product Version 8.1+ PNMsoft Knowledge Base Sequence Administrator Guides Flowtime Website Installation and Configuration Aug. 2016 Product Version 8.1+ 2016 PNMsoft All Rights Reserved This document, including any supporting

More information

Extending Form Templates Oct Product Version 7.5 and above

Extending Form Templates Oct Product Version 7.5 and above PNMsoft Knowledge Base Sequence Administrator Guides Extending Form Templates Oct. 2013 Product Version 7.5 and above 2013 PNMsoft All Rights Reserved This document, including any supporting materials,

More information

Database Structure May 2016 Product Version 7.0 and above

Database Structure May 2016 Product Version 7.0 and above PNMsoft Knowledge Base Sequence Administrator Guides Database Structure May 2016 Product Version 7.0 and above 2016 PNMsoft All Rights Reserved This document, including any supporting materials, is owned

More information

OData Guide June 2014 Product Version 7.7 and above

OData Guide June 2014 Product Version 7.7 and above PNMsoft Knowledge Base Sequence User Guides OData Guide June 2014 Product Version 7.7 and above 2014 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by PNMsoft Ltd

More information

PNMsoft Knowledge Base. Sequence Admin Guides Active Directory Synchronization. March 2015 Product Version 7.x and above

PNMsoft Knowledge Base. Sequence Admin Guides Active Directory Synchronization. March 2015 Product Version 7.x and above PNMsoft Knowledge Base Sequence Admin Guides Active Directory Synchronization March 2015 Product Version 7.x and above 2016 PNMsoft All Rights Reserved This document, including any supporting materials,

More information

Sequence Kinetics SP1 Release Notes. Issue Date: 9 th December 2012

Sequence Kinetics SP1 Release Notes. Issue Date: 9 th December 2012 Sequence Kinetics SP1 Release Notes Issue Date: 9 th December 2012 2012 PNMsoft All Rights Reserved No part of this document may be reproduced in any form by any means without the prior authorisation of

More information

Sequence Kinetics SP9 Release Notes. Issue Date: 12 th March 2015

Sequence Kinetics SP9 Release Notes. Issue Date: 12 th March 2015 Sequence Kinetics SP9 Release Notes Issue Date: 12 th March 2015 2015 PNMsoft All Rights Reserved No part of this document may be reproduced in any form by any means without the prior authorization of

More information

Sequence Kinetics SP8 Release Notes. Issue Date: 20 th Nov. 2014

Sequence Kinetics SP8 Release Notes. Issue Date: 20 th Nov. 2014 Sequence Kinetics SP8 Release Notes Issue Date: 20 th Nov. 2014 2014 PNMsoft All Rights Reserved No part of this document may be reproduced in any form by any means without the prior authorisation of PNMsoft.

More information

Sequence Kinetics SP7 Release Notes. Issue Date: 12 th May 2014

Sequence Kinetics SP7 Release Notes. Issue Date: 12 th May 2014 Sequence Kinetics SP7 Release Notes Issue Date: 12 th May 2014 2014 PNMsoft All Rights Reserved No part of this document may be reproduced in any form by any means without the prior authorisation of PNMsoft.

More information

Sequence 8.2 Release Notes. Date: 13 th November 2016

Sequence 8.2 Release Notes. Date: 13 th November 2016 Sequence 8.2 Release Notes Date: 13 th November 2016 2016 PNMsoft All Rights Reserved No part of this document may be reproduced in any form by any means without the prior authorization of PNMsoft. PNMsoft

More information

Sequence and ASP.NET Applications

Sequence and ASP.NET Applications PNMsoft Knowledge Base Sequence Best Practices Sequence and ASP.NET Applications Decmeber 2013 Product Version 7.x 2013 PNMsoft All Rights Reserved This document, including any supporting materials, is

More information

Sequence Installation Guide

Sequence Installation Guide PNMsoft Knowledge Base Sequence Administrator Guides Sequence Installation Guide July 2017 Product Version 8.2 and later Version Updated On Document Changes Updated By 1.0 May 3 rd, 2016 New guide, similar

More information

Sequence 7.x Installation Guide March 2016 Product Version 7.x

Sequence 7.x Installation Guide March 2016 Product Version 7.x PNMsoft Knowledge Base Sequence Administrator Guides Sequence 7.x Installation Guide March 2016 Product Version 7.x Version Updated On Document Changes Updated By 1.0 August 9, 2012 N/A Eli Stutz 2.0 October

More information

TAMS E-IT. Approvers Manual. How to approve, reject or reassign for further approvals. Approvers Manual 2-1

TAMS E-IT. Approvers Manual. How to approve, reject or reassign for further approvals. Approvers Manual 2-1 TAMS E-IT Approvers Manual How to approve, reject or reassign for further approvals Approvers Manual 2-1 TAMS E-IT Approvers General Information: Approvers will be alerted of an EIT awaiting their action

More information

edamis Web Forms for sending data to Eurostat

edamis Web Forms for sending data to Eurostat Scope Creating Web Form instances for datasets by using the edamis Web Portal. Preparing data for sender. Making official transfers. Accessing to the Web Form Entry list. Prerequisites To be an edamis

More information

Web-Based Contract Management Services. CA Contracts Set-Up Complete Stage User Guide

Web-Based Contract Management Services. CA Contracts Set-Up Complete Stage User Guide Web-Based Contract Management Services CA Contracts Set-Up Complete Stage User Guide Table of Contents Resource List... 1 Resource List... 1 Roles Involved... 1 Activities... 2 Getting started with Resource

More information

Conference for Training Centers André Hänel Tool Manager

Conference for Training Centers André Hänel Tool Manager Conference for Training Centers 16.06.2009 93055 Regensburg André Hänel Tool Manager KNX Association International Agenda Part 0: ETS4 state of affairs, common information Several issues Confidentiality

More information

THIS IS AN OBSOLETE COPYRIGHT PAGE. Use Common/Copyright/Copyright

THIS IS AN OBSOLETE COPYRIGHT PAGE. Use Common/Copyright/Copyright Unica Marketing Operations and Unica Campaign Version 8.2.0 Integration Guide Publication Date: September 20, 2010 Copyright THIS IS AN OBSOLETE COPYRIGHT PAGE. Use Common/Copyright/Copyright Table of

More information

Quick Reference Card - Document Owner

Quick Reference Card - Document Owner Quick Reference Card - Document Owner Finding documents that you own, proxy, or assigned to you in each status. Under Documents, click My Documents/I Own. Creating New Document or New Version of Current

More information

Information Broadcasting Part 3 Scheduling the First Report

Information Broadcasting Part 3 Scheduling the First Report Information Broadcasting Part 3 Scheduling the First Report Applies to: SAP BW 3.5 Summary This is part-3 article in the Information broadcasting (IB) series. Some things have already been discussed like

More information

PROJECT: NEW JERSEY WATER QUALITY DATA EXCHANGE WQX REPORTER USER S GUIDE. Prepared for New Jersey Department of Environmental Protection

PROJECT: NEW JERSEY WATER QUALITY DATA EXCHANGE WQX REPORTER USER S GUIDE. Prepared for New Jersey Department of Environmental Protection PROJECT: NEW JERSEY WATER QUALITY DATA EXCHANGE WQX REPORTER USER S GUIDE Prepared for New Jersey Department of Environmental Protection January 29, 2009 11 Princess Road, Unit A Lawrenceville, New Jersey

More information

ADP Vantage HCM: Manage Time-Off Requests for Employees

ADP Vantage HCM: Manage Time-Off Requests for Employees Introduction When employees request time off, you will be required to approve, reject, retract, or edit those requests. You can also submit a time-off request on behalf of an employee. To submit a time-off

More information

UPDATE STUDENT YEARLY REGISTRATION & CURRENT YEAR DATA

UPDATE STUDENT YEARLY REGISTRATION & CURRENT YEAR DATA The txsuite How To Guide Series txconnect Parent Web-based Access for Teachers, Parents, and Students How to: UPDATE STUDENT YEARLY REGISTRATION & CURRENT YEAR DATA Developed by the T E XA S CO M P U T

More information

LEAVE REQUEST. User guide Administrator. Version 1.0

LEAVE REQUEST. User guide Administrator. Version 1.0 LEAVE REQUEST User guide Administrator Version 1.0 MENU Overview... 3 Step 1: Install the app to site... 3 Step 2: Customize Left Menu... 3 Step 3: Customize Form... 6 Step 4: Views Setting... 9 Step 5:

More information

25Live Room Scheduler Reference Guide ICIT Technology Training and Advancement

25Live Room Scheduler Reference Guide ICIT Technology Training and Advancement 25Live Room Scheduler Reference Guide ICIT Technology Training and Advancement Updated on 11/18/2015 Table of Contents Log In... 3 25Live Interface... 3 Page Tabs... 3 Page Views... 4 Customize the Home

More information

ical Personal Calendar Appointments Automatically appointments to patients in icalendar (.ics) format

ical Personal Calendar Appointments Automatically  appointments to patients in icalendar (.ics) format User's Guide ical Personal Calendar Appointments Automatically email appointments to patients in icalendar (.ics) format ical Personal Appointment Reminders EXACT v12.4 14/10/2016 page 1 of 10 Copyright

More information

IACA Discussion List Guidelines, Use and Subscription Management

IACA Discussion List Guidelines, Use and Subscription Management IACA Discussion List Guidelines, Use and Subscription Management Instructions... 2 Posting Guidelines... 2 Managing your Subscription... 3 Frequently Asked Questions... 4 I sent a request to iacalist@iaca.net

More information

Cognition Cockpit. Version 5.5 Release Notes. January, 2010

Cognition Cockpit. Version 5.5 Release Notes. January, 2010 Cognition Cockpit Version 5.5 Release Notes January, 2010 Copyright Cognition Corporation 2010 This document is the sole property of Cognition Corporation and is not to be distributed outside of Cognition

More information

Bulk Interac e-transfers User Guide. User Guide Bulk Interac e-transfers 1

Bulk Interac e-transfers User Guide. User Guide Bulk Interac e-transfers 1 Bulk Interac e-transfers User Guide User Guide Bulk Interac e-transfers 1 Overview This document provides information and instructions for Bulk Interac e-transfer service. Bulk Interac e-transfer service

More information

Circuit Administrator User Manual

Circuit Administrator User Manual Circuit Administrator User Manual December 2018 Table of Contents Introduction... 4 Logging in to the Portal... 4 Account... 5 My Profile... 5 User Details... 5 Preferences... 6 Division Association...

More information

PUBLIC SECTOR SHOPPING CART

PUBLIC SECTOR SHOPPING CART PUBLIC SECTOR SHOPPING CART SHOPPING CART GUIDE 2 SUNGARD PUBLIC SECTOR LLC MAKES NO REPRESENTATIONS OR WARRANTIES, ORAL OR WRITTEN, EXPRESS OR IMPLIED, WITH RESPECT TO THE SYSTEM, SERVICES, SOFTWARE,

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

LEAVE REQUEST. User guide Administrator. Version 2.0. Website:

LEAVE REQUEST. User guide Administrator. Version 2.0. Website: LEAVE REQUEST User guide Administrator Version 2.0 MENU Overview... 3 Step 1: Install the app to site... 3 Step 2: Customize Left Menu... 3 Step 3: Customize Form... 6 Step 4: Views Setting... 9 Step 5:

More information

Better Translation Technology

Better Translation Technology Better Translation Technology Documentation for. Published by XTM International Ltd. Copyright XTM International Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in

More information

RECRUITMENT REQUEST. User guide Administrator. Version 1.0

RECRUITMENT REQUEST. User guide Administrator. Version 1.0 RECRUITMENT REQUEST User guide Administrator Version 1.0 MENU Overview... 3 Step 1: Install the app to site... 3 Step 2: Customize Left Menu... 3 Step 3: Customize Form... 7 Step 4: Views Setting... 9

More information

CCH Central and Workflow Version Release Notes

CCH Central and Workflow Version Release Notes CCH Central and Workflow Version 2017.3 Release Notes Legal Notice Disclaimer Wolters Kluwer (UK) Limited has made every effort to ensure the accuracy and completeness of these Release Notes. However,

More information

IACA Discussion List. About the IACA Discussion List. Guidelines, use and subscription management

IACA Discussion List. About the IACA Discussion List. Guidelines, use and subscription management IACA Discussion List Guidelines, use and subscription management About the IACA Discussion List The IACA discussion list (IACA List) is a free resource for all active IACA members. This resource allows

More information

Florida Court Clerks and Comptrollers (FCCC) Circuit Administrator User Manual

Florida Court Clerks and Comptrollers (FCCC) Circuit Administrator User Manual Florida Court Clerks and Comptrollers (FCCC) Circuit Administrator User Manual Prepared by: Florida Court Clerks and Comptrollers October 2017 Table of Contents Introduction... 4 Logging in to the Portal...

More information

SUBMITTING A NEW STUDY STAFF AMENDMENT

SUBMITTING A NEW STUDY STAFF AMENDMENT SUBMITTING A NEW STUDY STAFF AMENDMENT 1. Login to the Partners network 2. Go to the following web page: https://insight.partners.org 3. Enter your Partners user name and password to login to Humans/eIRB

More information

UPDATE FORMS FOR ANNUAL REGISTRATION

UPDATE FORMS FOR ANNUAL REGISTRATION UPDATE FORMS FOR ANNUAL REGISTRATION Campuses typically require enrolled students to re-register each year for the upcoming school year and to complete forms that are required annually. Online registration

More information

ANZ TRANSACTIVE GLOBAL SERVICE REQUESTS USER GUIDE

ANZ TRANSACTIVE GLOBAL SERVICE REQUESTS USER GUIDE ANZ TRANSACTIVE GLOBAL SERVICE REQUESTS USER GUIDE September 2017 CONTENTS Introduction 3 Commercial Cards Service Requests 4 Commercial Cards Service Request Types... 4 Commercial Cards Service Request

More information

Tutorial 2. Tutorial 2: Capital Expenditure Request Workflow creation. Nintex Workflow 2007 Tutorial 2 Page 1

Tutorial 2. Tutorial 2: Capital Expenditure Request Workflow creation. Nintex Workflow 2007 Tutorial 2 Page 1 Tutorial 2: Capital Expenditure Request Workflow creation Nintex Workflow 2007 Tutorial 2 Page 1 In this second tutorial, we are going to create the workflow shown above. It is a business process to automate

More information

HP Service Manager. Software Version: 9.41 For the supported Windows and UNIX operating systems. Service catalog help topics for printing

HP Service Manager. Software Version: 9.41 For the supported Windows and UNIX operating systems. Service catalog help topics for printing HP Service Manager Software Version: 9.41 For the supported Windows and UNIX operating systems Service catalog help topics for printing Document Release Date: September 2015 Software Release Date: September

More information

Classification: Public ANZ TRANSACTIVE GLOBAL ADMINISTRATION USER GUIDE

Classification: Public ANZ TRANSACTIVE GLOBAL ADMINISTRATION USER GUIDE Classification: Public ANZ TRANSACTIVE GLOBAL ADMINISTRATION USER GUIDE 11 2015 CONTENTS INTRODUCTION... 3 USERS... 4 FUNCTION ROLES AND DATA ROLES... 5 FUNCTION ROLES... 5 Create a Function Role... 8

More information

Contents How to login?... 3

Contents How to login?... 3 Contents How to login?... 3 2 How to register?... 3 How to restore the lost password?... 3 How to change user settings?... 3 Main Menu... 4 Where I can view my statistics?... 4 How to submit a request?...

More information

Oracle Financial Services Common Reporting Standard User Guide. Release March 2017

Oracle Financial Services Common Reporting Standard User Guide. Release March 2017 Oracle Financial Services Common Reporting Standard User Guide Release 8.0.4.0.0 March 2017 Oracle Financial Services Common Reporting Standard User Guide Release 8.0.4.0.0 March 2017 Part Number: E80239-01

More information

ZSN How to register as a potential supplier

ZSN How to register as a potential supplier ZSN How to register as a potential supplier Copyright All Intellectual Property rights in this work belong to Zycus Inc. The information contained must not be reproduced or distributed to others in any

More information

CORRESPONDENCE TRACKING SYSTEM - EVER ME

CORRESPONDENCE TRACKING SYSTEM - EVER ME CORRESPONDENCE TRACKING SYSTEM - EVER ME CORRESPONDENCE TRACKING SYSTEM USER GUIDE Document Title Author ES-CTS - User Guide Grace Boutros - EVER ME Date 29/08/2008 Validated by Date Version 1.1 Status

More information

Promotions Portal User Guide

Promotions Portal User Guide Promotions Portal Supplier User Guide Promotions Portal User Guide Support Line: 1300 725 814 Table of Contents Introduction.... 2 Promotions Portal Process...... 3 Accessing the Portal.... 4 Turn off

More information

E-Requisition Order (E-RO UG) v1.0

E-Requisition Order (E-RO UG) v1.0 E-Requisition Order (E-RO UG) v1.0 User Manual Rev. B Information Technology Department Revision Sheet Release Date Author Revision Description No. Rev. A 22/11/2013 Chuah Chong Hee Creation of E-Requisition

More information

ZSN How to register as a potential supplier

ZSN How to register as a potential supplier ZSN How to register as a potential supplier Copyright All Intellectual Property rights in this work belong to Zycus Inc. The information contained must not be reproduced or distributed to others in any

More information

Ocean Wizards and Developers Tools in Visual Studio

Ocean Wizards and Developers Tools in Visual Studio Ocean Wizards and Developers Tools in Visual Studio For Geoscientists and Software Developers Published by Schlumberger Information Solutions, 5599 San Felipe, Houston Texas 77056 Copyright Notice Copyright

More information

Funeral Planning Experts Privacy Policy

Funeral Planning Experts Privacy Policy Funeral Planning Experts Privacy Policy Last updated: March 2017 Who Are We? This is the Privacy Policy of www.funeralplanningexperts.com Funeral Planning Experts is a brand name of Data Locator Group

More information

Virginia Henderson Global Nursing e-repository ( Henderson repository or the repository ) Revision and Re-Submission Instructions

Virginia Henderson Global Nursing e-repository ( Henderson repository or the repository ) Revision and Re-Submission Instructions Virginia Henderson Global Nursing e-repository ( Henderson repository or the repository ) Revision and Re-Submission Instructions If your submission has been rejected by a reviewer for any reason, you

More information

Revised (10/17) ACH User Guide

Revised (10/17) ACH User Guide Revised (10/17) ACH User Guide Table of Contents Page 1. KeyNavigator ACH 1 1.1 Payment Management 2 1.2 Creating Payments 6 1.3 Templates 10 1.4 Reporting 14 2. User Maintenance 17 3. Role Maintenance

More information

Perform this procedure when a position is no longer needed or funding has ended for a position.

Perform this procedure when a position is no longer needed or funding has ended for a position. Introduction Use this procedure to delimit (inactivate) a position. Delimiting a position prevents any hiring and visibility of the position in reports and charts after an effective end date or delimit

More information

Click the Login button and after verification you will enter to the following page.

Click the Login button and after verification you will enter to the following page. LOGIN SCREEN:- Following is the login screen: o Enter the login name in Login text box. o Enter the Password o Enter the captcha value (Note- the captcha value is case sensitive) If you want to change

More information

LOAD ENTRY 3 OPERATIONS MANUAL. Super Systems Inc Edington Drive Cincinnati, OH Fax:

LOAD ENTRY 3 OPERATIONS MANUAL. Super Systems Inc Edington Drive Cincinnati, OH Fax: LOAD ENTRY 3 OPERATIONS MANUAL Super Systems Inc. 7205 Edington Drive Cincinnati, OH 45249 513-772-0060 Fax: 513-772-9466 www.supersystems.com Super Systems Inc. USA Office Corporate Headquarters: 7205

More information

COMCAS2009 Author Instructions for Final Paper Submission

COMCAS2009 Author Instructions for Final Paper Submission COMCAS2009 Author Instructions for Final Paper Submission Your summary paper has been accepted and you have been asked to submit your final manuscript. These instructions are intended to guide you through

More information

Developing Crystal Reports on SAP BW

Developing Crystal Reports on SAP BW Developing Crystal Reports on SAP BW Applies to: SAP BusinessObjects Crystal Reports. Summary This white paper explores various methods of accessing SAP BW data through Crystal Reports. Author: Arka Roy

More information

PEPFAR Data for Accountability Transparency Impact Monitoring (DATIM)

PEPFAR Data for Accountability Transparency Impact Monitoring (DATIM) PEPFAR Data for Accountability Transparency Impact Monitoring (DATIM) Sharing Favorites: Reports, Pivots & Graphs Reference Guide This information has been prepared solely for the use and benefit of the

More information

Residential Builder User Manual for the New Home Buyer Protection System v2.0

Residential Builder User Manual for the New Home Buyer Protection System v2.0 Residential Builder User Manual for the New Home Buyer Protection System v2.0 Prepared by New Home Buyer Protection Office Alberta Municipal Affairs Contents 1 Introduction... 4 2 Using the Residential

More information

MET/TEAM README

MET/TEAM README MET/TEAM 2.2.0 README This document includes a list of modifications to MET/TEAM 2.2.0 relative to version 2.1.2. If you are updating from a previous version of MET/TEAM, you must first run the Database

More information

Alerts Center User Guide

Alerts Center User Guide Alerts Center User Guide The Alerts Center workspace is arranged in a series of tabs that access the following: Alerts Recipient Groups Recipients My Settings Alerts This widget configures the system to

More information

Workflow. Overview. Workflow Screen

Workflow. Overview. Workflow Screen Workflow Overview The Workflow screen allows users to track content that has been sent for review through the approval process. The Workflow list view shows content that the current user has submitted

More information

Industry Access Portal User Manual

Industry Access Portal User Manual User Manual L o u i s i a n a D e p a r t m e n t o f I n s u r a n c e Table of Contents Industry Users... 4 Register for Industry Access... 4 Sign Up... 5 Search for an Industry Access Account Administrator...

More information

Oracle Financial Services Compliance Regulatory Reporting India Suspicious Transaction Report User Guide. Release

Oracle Financial Services Compliance Regulatory Reporting India Suspicious Transaction Report User Guide. Release Oracle Financial Services Compliance Regulatory Reporting India Suspicious Transaction Report User Guide Release 8.0.6.0.0 May 2018 Oracle Financial Services Compliance Regulatory Reporting India Suspicious

More information

Oracle Financial Services Common Reporting Standard Singapore User Guide. Release May 2018

Oracle Financial Services Common Reporting Standard Singapore User Guide. Release May 2018 Oracle Financial Services Common Reporting Standard Singapore User Guide Release 8.0.6 May 2018 Oracle Financial Services Common Reporting Standard Singapore User Guide Release 8.0.6 May 2018 Part Number:

More information

SureClose Product Line

SureClose Product Line SureClose Product Line Release Notes 3.7 June 21, 2013 SureClose 3.7 Release Notes June 2013 1 Table of Contents Overview... 4 Post-Installation Considerations... 4 Features and Functionality... 6 New

More information

Windchill Workflow Tutorial. Release 7.0. November 2003

Windchill Workflow Tutorial. Release 7.0. November 2003 Windchill Workflow Tutorial Release 7.0 November 2003 Introduction This tutorial is designed to demonstrate the creation of a workflow process definition, the initiation of a process instances and the

More information

Contents. Batch & Import Guide. Batch Overview 2. Import 157. Batch and Import: The Big Picture 2 Batch Configuration 11 Batch Entry 131

Contents. Batch & Import Guide. Batch Overview 2. Import 157. Batch and Import: The Big Picture 2 Batch Configuration 11 Batch Entry 131 Batch & Import Guide Last Updated: 08/10/2016 for ResearchPoint 4.91 Contents Batch Overview 2 Batch and Import: The Big Picture 2 Batch Configuration 11 Batch Entry 131 Import 157 Configure Import File

More information

Back to Top Return here. Logging In Access and log in to Ariba. Access Receiving Navigate to the appropriate area to work with RCs

Back to Top Return here. Logging In Access and log in to Ariba. Access Receiving Navigate to the appropriate area to work with RCs 1 Ariba 9R1 Training Workbook: Receiving This document will review tips for receiving, rejecting, and editing a receipt (RC). RCs are a document type in Ariba used to indicate if items ordered via purchase

More information

The PaperCept Journal Submission and Review Management System

The PaperCept Journal Submission and Review Management System The PaperCept Journal Submission and Review Management System Configuration and User Guide Huibert Kwakernaak PaperCept Inc. March 2013 Revised January 2016 Preface to the Revised Version In 2015, the

More information

opencrx Campaign Management

opencrx Campaign Management opencrx Campaign Management Version 2.12.0 www.opencrx.org 11-Nov-2013 @ 01:04:14 PM License The contents of this file are subject to a BSD license (the "License"); you may not use this file except in

More information

Order Management Bookings - Getting Started Guide for Manufacturers

Order Management Bookings - Getting Started Guide for Manufacturers Order Management Bookings - Getting Started Guide for Manufacturers Table Of Contents Order Management Bookings Getting Started Guide... 3 Purpose of this Document... 3 What is Order Management Bookings?...

More information

TRAINING E-PORTFOLIO REGISTRAR GUIDANCE MANUAL

TRAINING E-PORTFOLIO REGISTRAR GUIDANCE MANUAL TRAINING E-PORTFOLIO REGISTRAR GUIDANCE MANUAL Last updated: February 2015 2 Contents 1 Introduction 3 2 Editing and Managing your Profile 5 3 Adding and Managing Evidence 8 Upload evidence 9-11 Delete

More information

Better Translation Technology. XTM Connect for Drupal 8

Better Translation Technology. XTM Connect for Drupal 8 Better Translation Technology XTM Connect for Drupal 8 Documentation for XTM Connect for Drupal 8. Published by XTM International Ltd. Copyright XTM International Ltd. All rights reserved. No part of this

More information

Electronic Certificate Submission Process. Michael Guymon;Dharshun Sharma;Harsimran Mann;Christian Green;Diondre Montgomery

Electronic Certificate Submission Process. Michael Guymon;Dharshun Sharma;Harsimran Mann;Christian Green;Diondre Montgomery SPACEX PROCESS DOCUMENT Title: Document No.: Procedure Owner: Department: Electronic Certificate Submission Process SPD-00035912 Debra Randel SUPPLY CHAIN MANAGEMENT DOCUMENT APPROVAL Approved Version:

More information

Oracle Financial Services Common Reporting Standard Canada User Guide. Release May 2018

Oracle Financial Services Common Reporting Standard Canada User Guide. Release May 2018 Oracle Financial Services Common Reporting Standard Canada User Guide Release 8.0.6 May 2018 Oracle Financial Services Common Reporting Standard Canada User Guide Release 8.0.6 May 2018 Part Number: E93132-01

More information

Manual Firmware Update Guide

Manual Firmware Update Guide Manual Firmware Update Guide Mitel Desk Phone 6800 Series for MiCloud Office May 8, 2017 REVISION INFORMATION Issue Date Change Summary Updated By 1.1 May 3, 2017 Initial Version Chen-Hui Lee 1.2 May 8,

More information

IBM Atlas Suite Users Guide: Data Source Maintenance with IIM. for IBM Atlas Suite v6.0

IBM Atlas Suite Users Guide: Data Source Maintenance with IIM. for IBM Atlas Suite v6.0 IBM Atlas Suite Users Guide: Data Source Maintenance with IIM for IBM Atlas Suite v6.0 IBM Atlas Suite Users Guide: Data Source Maintenance with IIM This edition applies to version 6.0 of IBM Atlas Suite

More information

eyeshare Studio Integrating with Jira CONTACT:

eyeshare Studio Integrating with Jira CONTACT: eyeshare Studio Integrating with Jira CONTACT: info@ayehu.com 1 LEGAL NOTICE... 4 ABOUT AYEHU SOFTWARE TECHNOLOGIES... 5 ABOUT THIS DOCUMENT... 6 REQUIREMENTS... 7 Supported Version... 7 MODULE OPERATION...

More information

PCI (Internet Order Portal) Table of Contents

PCI (Internet Order Portal) Table of Contents 2017 PCI 5.0 Table of Contents How to connect to PCI... 3 How to order in PCI... 5 PCI menus... 19 1- Order Menu:... 19 2- Reports menu:... 23 3- User menu:... 24 4- Administration menu:... 25 2 Colabor

More information

CAQH Solutions TM EnrollHub TM Provider User Guide Chapter 3 - Create & Manage Enrollments. Table of Contents

CAQH Solutions TM EnrollHub TM Provider User Guide Chapter 3 - Create & Manage Enrollments. Table of Contents CAQH Solutions TM EnrollHub TM Provider User Guide Chapter 3 - Create & Manage Enrollments Table of Contents 3 CREATE & MANAGE EFT ENROLLMENTS 2 3.1 OVERVIEW OF THE EFT ENROLLMENT PROCESS 3 3.2 ADD PROVIDER

More information

Cboe Global Markets U.S. Data Product Declarations User Manual

Cboe Global Markets U.S. Data Product Declarations User Manual Cboe Global Markets U.S. Data Product Declarations User Manual Overview of the Data Product Declarations Tool The Data Product Declarations Tool is an online web portal for Internal, External Controlled,

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

Editing a User s Permissions, Spend Limit and Workflow Assignments

Editing a User s Permissions, Spend Limit and Workflow Assignments Getting Started with Order Approval To access the Order Approval business solution, please log in with an Administrator account* and navigate to the My Account section. Click on Order Approval Management

More information

Work Package 2 User Manual

Work Package 2 User Manual Work Package 2 User Manual Contents 1. Introduction... 3 2. Edit Podium... 3 3. Re-Applications... 7 4. Contract Wizard... 9 5. Supporting Documents... 15 Electronic Process... 16 Manual Process... 17

More information

etendering PORTAL User Manual Product Version 7-0-4

etendering PORTAL User Manual Product Version 7-0-4 etendering PORTAL User Manual Product Version 7-0-4 Open Windows Software Pty Ltd ABN 22 605 191 375 635 Glenferrie Road, Hawthorn VIC 3122, Australia Phone: +61 3 9819 5088 Email: support@openwindows.com.au

More information

Revision Markup User Guide

Revision Markup User Guide Holocentric Modeler 7.3 Revision Markup User Guide FINAL Table of Contents 1 Introduction 3 1.1 Purpose of this Document... 3 1.2 What is Revision Markup?... 3 1.3 How does Revision Markup Work?... 3 2

More information

Replacement Path: Explained with an Illustrated Example

Replacement Path: Explained with an Illustrated Example Replacement Path: Explained with an Illustrated Example Applies to: SAP NetWeaver BW. For more information, visit the EDW homepage Summary The document explains the purpose and implementation method of

More information

GSA QMAC. Transportation Service Provider (TSP) TransPort Integrator User Guide. TransPort Integrator Service. Version 3.0

GSA QMAC. Transportation Service Provider (TSP) TransPort Integrator User Guide. TransPort Integrator Service. Version 3.0 GSA QMAC TransPort Integrator Service Transportation Service Provider (TSP) TransPort Integrator User Guide Version 3.0 Change Log Version # Date of Change Section Description of Change Changed By 1.0

More information

REQUESTOR GUIDE. November Cloud Approval Workflows for Finance and Accounting

REQUESTOR GUIDE. November Cloud Approval Workflows for Finance and Accounting REQUESTOR GUIDE November 2017 Agenda Basic Setup Accept the invitation Change user name, password, contact details and notification settings Reset password Work itself Create a new Purchase Order request

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6235A: Three days; Instructor-Led Introduction This three-day instructor-led course teaches students how to implement

More information