Imagination To Realization

Size: px
Start display at page:

Download "Imagination To Realization"

Transcription

1 Imagination To Realization Creating Useful Workflows Presented by: Alexei Tetenov, SunGard Higher Education Managed Genesee Community College Monday, April 3, :30 4:30 pm April 2-5 Orlando, Florida

2 Introduction Workflow is very cool, but enhancing it can be difficult if you are not experienced with PL/SQL or Java. My goal is to construct workflows so that there is very little data entry and no extraneous screens. We will review the Genesee Community College solution to the challenge of managing the approval process for re-hiring hundreds of adjuncts every term. 2

3 Agenda Brief overview of Workflow Enhancing Workflow Using Baseline Banner to manage custom approval queues. Creating PL/SQL packages to retrieve/update Banner. Implementing and using open source itext pdf creation code written in Java. 3

4 Imagination To Realization Overview of Workflow Helping you move work along April 2-5 Orlando, Florida

5 Overview of Workflow Workflow helps automate business processes that require a lot of interaction between people. Very good at managing an approvals process. Can easily and electronically track what step you re at in a business process. Will automatically forward completed items to the next approver s queue and can optionally setup notification. Ex. Hiring an employee. Workflow will let you assign people to be approvers and provide for electronic tracking and movement of relevant info to the next person. No more calling around to see who still hasn t approved hiring the new person. 5

6 Imagination To Realization Genesee s Electronic Personnel Action Form Managing dynamic approval queues April 2-5 Orlando, Florida

7 Managing dynamic approval queues We did not want to hard-code approver s names into a workflow. We wanted to use baseline Banner and minimize the effects of approver turnover. We created new approval queues using the Banner HR approvals forms that are typically used for Employee Self-Service web time entry and approval. The Banner EPAF approval forms did not meet our needs. 7

8 Managing dynamic approval queues For any area that would do adjunct Payroll Authorizations Set up approvers in NTRRQUE (by Org.) Set up approvers in NTRALVL (by Dept) Use a NTRRQUE (by Org.) for re-hiring most adjuncts. Call a local pl/sql package from the workflow to determine the next approver. 8

9 Managing dynamic approval queues Set up approvers in NTRRQUE (by Org.) For each Chart of Accounts and Org, Use the same Approval Category (e-pa s) and create: Approval sequence Approver position/current Incumbent Approver Action Approve/FYI 9

10 Managing dynamic approval queues Set up approvers in NTRRQUE (by Org.) 10

11 Managing dynamic approval queues NTRALVL (by Dept) Approval Level Code for each department/area multiple codes if they report to different supervisors, deans, vp s. Approval Level 10 for Supervisor Approval Level 20 for Deans Approval Level 25 for Executive VP s Approval Level 30 for HR review Approval Level 40 for the President Approval Level 50 for HR approval Approval Level 60 for HR to apply the re-hire to Banner 11

12 Managing dynamic approval queues NTRALVL (by Dept) For each level there is a code for each dept. 12

13 Managing dynamic approval queues NTRALVL (by Dept) 13

14 Managing dynamic approval queues Call a local pl/sql package from the workflow to determine the next approver. The workflow passes in the org and current approver sequence number to the package. If the sequence number is null, then find the lowest sequence number for the org and put the workflow into this incumbent s approval queue. 14

15 Imagination To Realization Genesee s Electronic Personnel Action Form Local PL/SQL packages April 2-5 Orlando, Florida

16 Local PL/SQL packages to retrieve/update Banner Create a local package with most packages and functions. Create standalone functions for retrieving mostly static information. Ex. Legalese comment. I create all of my pl/sql under a local schema/user instead of Baninst1 to easily distinguish local enhancements I will need to test for Banner upgrades. Need to grant appropriate privileges to select/update/insert/delete data and execute other functions/procedures. Many Banner schools just create local packages under Baninst1 to eliminate extra grants Steven Fueuerenstein s PL/SQL books and game of SET is a good resource. The game of SET is a useful mindset altering tool to assist learning new computer languages. 16

17 Local PL/SQL packages to retrieve/update Banner CREATE OR REPLACE PACKAGE BODY WOKWLIB AS DESCRIPTION of PROCEDURE p_get_person_info: This procedure retrieves the SPRIDEN_ID, full name, SPBPERS_SSN for any -- current or former id. The end user can provide the current id or the SSN. -- Created for the Genesee Community College Personnel Action (PA) Form -- Workflow. -- DESCRIPTION END -- PROCEDURE p_get_person_info(par_id IN spriden.spriden_id%type, par_pidm OUT spriden.spriden_pidm%type, par_current_id OUT spriden.spriden_id%type, par_full_name OUT varchar2, par_ssn OUT spbpers.spbpers_ssn%type, msg OUT varchar2, msg_type OUT varchar2) 17

18 Local PL/SQL packages to retrieve/update Banner Calling Local PL/SQL package from Workflow. Create a new category in the Business Component Catalog for your local enhancements. Add Business Components Format: package.procedure or package.function Product Type: Banner Technology Type: Stored Procedure Client launch parameter: procedure=package.procedure(@workflow_context_parameter) Parameters use same types and names as in local package and workflow context parameter mappings for simplicity. 18

19 Local PL/SQL packages to retrieve/update Banner Ex. WOKWLIB.p_get_crn_info This procedure retrieves the following info for a term and CRN: term_code_in, crn_in, term_code_desc, subj_code, crse_numb, seq_numb, crse_title, credit_hrs, ptrm_weeks, ssrmeet_start_date, ssrmeet_end_date, and section meeting times. Product Type: Banner Component Type: Internal 19

20 Local PL/SQL packages to retrieve/update Banner 20

21 Local PL/SQL packages to retrieve/update Banner Calling Local PL/SQL package from Workflow. In the Workflow Modeler Search and find your new Business Component Add any needed Component parameters to store the output of your local package.procedure. Map your Context Parameters to Component Parameters Context Parameters available to entire workflow Component Parameter scoped to your workflow step Use the same names, changing a name in one place will erase all other existing context and component parameters and you will be forced to re-insert the changed name everywhere it is used, again. 21

22 Local PL/SQL packages to retrieve/update Banner 22

23 Local PL/SQL packages to retrieve/update Banner 23

24 Imagination To Realization Printing PDF s Implementing and using open source itext pdf creation code written in Java. April 2-5 Orlando, Florida

25 Printing PDF s Many different options all $0 purchase price options involve learning some code. itext pdf One of many open source creation projects. Written in Java. Modify Workflow to add a Cascading Style Sheet for printing (print.css) Apache Formatting Objects Processor (FOP) print formatter driven by XSL Instructions are available to implement into Oracle HTMLDB aka Oracle Application Express. PL/PDF - ~$500/database Web Services new enhancement in Workflow 4.2 to call/execute service on same/different server. Oracle Report execution via Banner Job Submission Open a Self-Service pl/sql page to login and generate a pdf file. Reporting Tool Brio/HPS for printing in batch. 25

26 Printing Workflows without the boxes Modify Workflow to add a Cascading Style Sheet for printing (print.css) Add reference to print.css in style.jsp D:\Oracle\OAS10g\j2ee\OC4J_wfDPROD\applications\wfDP ROD\workflow\templates\style.jsp Created a css for printing called print.css D:\Oracle\OAS10g\j2ee\OC4J_wfDPROD\applications\wfDP ROD\workflow\css\print.css Modified header.jsp to encompass the stuff we don t want to print within <div>" tags and closed the table data, row, table. This simple mod has to be re-done after every re-deployment and upgrade of Workflow. 26

27 Printing PDF s I chose itext pdf Very minimal requirements and will work from within Oracle 9i database on OpenVMS Alpha running Java Can be deployed using Servlets in Oracle Application Server (OAS) Many examples available online and initially seemed simpler to implement than other open source alternatives. If I were to do it over again, I would use Web Services to execute/call an itext web service. 27

28 Printing itext PDF s itext implementation steps Load itext jar into the database and verify relevant classes are valid. For older Java versions, ex , need to load collections.jar into the database as well. Create a pl/sql package.function wrapper for the Java program. Grant schema user write permission to complete path and file name, at least on OpenVMS. Create Java program to create the pdf file. Create anonymous pl/sql block for testing. Call pl/sql package.function wrapper from Workflow. 28

29 Printing itext PDF s Load itext jar into the database. $proddb define/nolog classpath ".:/j_l/rt.jar:/j_l/i18n.jar:/ojvm/aurora_client.jar:/ojdbc/classes111.z IP:/osqlj/TRANSLATOR.ZIP:/ojvm/AURORA.ZIP:/onet/JAVAX-SSL- 1_1.JAR:/onet/JSSL-1_1.JAR:sys$common/java/lib/jdk118_classes.zip PROD>show sym jre JRE == -resolve -user genesee/password@dprod.world -v itext.jar For older Java versions, ex , need to load collections.jar into the database as -resolve -user genesee/password@dprod.world -v collections1_1.zip 29

30 Printing itext PDF s Create a pl/sql package/procedure (or function) wrapper for the Java program. ***The LANGUAGE line has to be one line with no line breaks.*** *** For package/procedures with a call to a java program, you have to put the call in the package/procedure spec. *** Also, the package/procedure has to be named differently from the java source if you are going to have a public synonym. CREATE OR REPLACE PACKAGE WOKWPDF authid DEFINER IS Procedure gen_epa_pdf(pathfilename IN varchar2, <snip> result IN OUT varchar2) AS LANGUAGE java name 'WOKPDFJ.gen_epa_pdf(java.lang.String, <snip>, java.lang.string[])'; END WOKWPDF; grant execute on GENESEE.WOKWPDF to PUBLIC; create or replace public synonym WOKWPDF FOR GENESEE.WOKWPDF; 30

31 Printing itext PDF s Grant schema user write permission to the complete path and file name. On OpenVMS, I could not find a way to grant the user the ability to create any filename they wanted. Just specifying the path did not work. dbms_java.grant_permission( 'GENESEE', 'SYS:java.io.FilePermission', <<ALL FILES>>', 'write'); commit; Verify: select * from DBA_JAVA_POLICY 31

32 Printing itext PDF s Create Java program to create the pdf file. CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED "WOKPDFJ" AS import com.lowagie.text.*; import com.lowagie.text.pdf.pdfwriter; import java.io.*; import java.awt.point; public class WOKPDFJ { 32

33 Printing itext PDF s Create Java program. Note: I used the FileOutputStream class to avoid a problem of the Java failing after 1 execution. This necessitated the use of ) throws IOException, DocumentException{ exception handling in the function declaration. public static String[] gen_epa_pdf(string pathfilename, <snip> { String[] result) throws IOException, DocumentException result[0] = "successful"; Document doc = new Document(); OutputStream os = new FileOutputStream("USER:[BANJOBPROD]alexei_tetenov_e_pa _1234.pdf"); 33

34 Printing itext PDF s Create Java program to create the pdf file. try { PdfWriter.getInstance(doc, os); doc.open(); doc.add(new Paragraph(new Chunk("Full Name: " + full_name))); doc.add(new Paragraph(new Chunk("Position: " + position))); doc.add(new Paragraph(new Chunk("Department: " + department))); } catch (Exception ex) {result = ex.getmessage(); } doc.close(); os.close(); return result; } } / Note: I used the os.close method to avoid having Java fail after 1 execution, due to the stream remaining open. 34

35 Printing itext PDF s Create anonymous pl/sql block for testing. Note: ***The genesee.generatepdf.write function call line has to be one line with no line breaks.*** BEGIN DECLARE result VARCHAR2(200); BEGIN DBMS_OUTPUT.enable; result := GENESEE.WOKWPDF.GEN_EPA_PDF ('pathfilename-test', <snip> 'comments'); DBMS_OUTPUT.PUT_LINE(SUBSTR('iText result=' result, 1, 250)); EXCEPTION WHEN others THEN DBMS_OUTPUT.PUT_LINE(SUBSTR('iText error=' sqlerrm, 1, 250)); END; END; 35

36 Printing itext PDF s Call pl/sql package.function wrapper from Workflow. This is done just like a regular pl/sql package.procedure or package.function call. See screenshots from above. Depending on OS, may need to first grant file creation permissions before executing the pdf creation function to get around the problem of having to specify the full path and filename for the dbms_java.grant_permission. 36

37 Printing itext PDF s Resources Banner queues PL/SQL packages Search and use Banner and Workflow PL/SQL libraries. SunGard Higher Eduction EdCenter classes on pl/sql. Free Oracle webinars via OTN. Workflow- running pl/sql packages itext PDF and Servlet Apache FOP HTML DB Web services 37

38 Summary Making it easy for end-users to use Workflow will lead to greater use of Workflow. Start out simple and enhance your workflows as needed. Use baseline Banner and Workflow as much as possible to avoid problems during upgrades. Use delivered Banner/Workflow PL/SQL libraries as much as possible. Use well documented open source products like itext. 38

39 Questions & Answers??? Acknowledgements Many thanks to my wife and son for sacrificing time with me so I could work on this project. Thanks to Muldair Moore, for helping me out with my lack of Java knowledge. 39

40 Thank You! Alexei Tetenov Please complete the on-line Evaluation Form 40

41 Acknowledgements Many thanks to my wife and son for sacrificing time with me so I could work on this project. Thanks to Muldair Moore, for helping me out with my lack of Java knowledge. Without limitation, SunGard, the SunGard logo, Banner, Campus Pipeline, Luminis, PowerCAMPUS, Matrix, and Plus are trademarks or registered trademarks of SunGard Data Systems Inc. or its subsidiaries in the U.S. and other countries. Third-party names and marks referenced herein are trademarks or registered trademarks of their respective owners SunGard. All rights reserved. 41

Imagination To Realization

Imagination To Realization Imagination To Realization Introduction to HTML DB (HOT) Presented by: Bih-Shya Gau SunGard Higher Education Monday, April 3, 2006 3:30 5:30 pm April 2-5 Orlando, Florida Session Rules of Etiquette Please

More information

Overview Of Banner 7 Channels

Overview Of Banner 7 Channels Overview Of Banner 7 Channels John Morgan, SunGard SCT, Banner Architect Evaluation Code 310 Rock Eagle 2004, Thu., Oct. 21, 3:00 PM Topics of Discussion Introduction to Channels for Banner Overview of

More information

Imagination To Realization

Imagination To Realization Imagination To Realization Trigger Writing for Fun and Profit Presented by: Larry Holder Database Administrator The University of Tennessee at Martin April 4, 2006 10:30 11:30 am April 2-5 Orlando, Florida

More information

SQL Server Reporting Services

SQL Server Reporting Services SQL Server Reporting Services Presented by: Victoria Katona and Vijay Vasu Arcadia University April 4, 2006 8:30 am 9:30 am April 2-5 Orlando, Florida Session Rules of Etiquette Please turn off your cell

More information

Highlights from DW4.0.0

Highlights from DW4.0.0 CONNECT TO COMMUNITY. At SunGard Summit, come together as a community dedicated to education. Highlights from DW4.0.0 Presented by: Mark C. Wysoski SunGard Higher Education March 23, 2009 Course ID 0137

More information

Banner Student. Introductions. Course Goals. Name Organization Title/function Job responsibilities Banner experience Expectations

Banner Student. Introductions. Course Goals. Name Organization Title/function Job responsibilities Banner experience Expectations Banner Student Population Selection Introductions Name Organization Title/function Job responsibilities Banner experience Expectations 2 Course Goals This course is intended to teach you to identify key

More information

Installation Guide EPMWARE. Version 1.0. EPMWARE, Inc. Published: August, 2015

Installation Guide EPMWARE. Version 1.0. EPMWARE, Inc. Published: August, 2015 Installation Guide EPMWARE Version 1.0 EPMWARE, Inc. Published: August, 2015 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless

More information

1 Proposed PIN P rotection Protection in Banner General 8.0

1 Proposed PIN P rotection Protection in Banner General 8.0 Proposed PIN Protection in Proposed PIN Protection in Banner General 8.0 1 2 Proposed PIN Protection in Banner General 8.0 ~These Enhancements are under These Enhancements are under Development and may

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

Jenzabar EX 4.5. Getting Started Guide for Administrators and Users

Jenzabar EX 4.5. Getting Started Guide for Administrators and Users Getting Started Guide for Administrators and Users October 24, 2012 2012, Jenzabar, Inc. 101 Huntington Avenue Suite 2205 Boston, MA 02199 1.877.535.0222 www.jenzabar.net This document is confidential

More information

Javelin Workbench Tutorial. Version 3.0 September, 2009

Javelin Workbench Tutorial. Version 3.0 September, 2009 Javelin Workbench Tutorial Version 3.0 September, 2009 OVERVIEW The Javelin Workbench Beginner Tutorial walks you through the steps of building online feedback forms for the purposes of data collection.

More information

Chapter 1 SQL and Data

Chapter 1 SQL and Data Chapter 1 SQL and Data What is SQL? Structured Query Language An industry-standard language used to access & manipulate data stored in a relational database E. F. Codd, 1970 s IBM 2 What is Oracle? A relational

More information

Banner Job Submission 1

Banner Job Submission 1 Welcome to SunGard Banner General Job Submission Introductions Name Organization Title/function Job responsibilities Banner experience Expectations 2 Course Goals This course is intended to teach you to

More information

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

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

More information

HIGHER EDUCATION. What can we help you achieve? Workflow Process Modeling Workflow 4.3 Workbook

HIGHER EDUCATION. What can we help you achieve? Workflow Process Modeling Workflow 4.3 Workbook HIGHER EDUCATION What can we help you achieve? Workflow Process Modeling Workflow 4.3 Workbook January 2007 Confidential Business Information --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

More information

BANNER ENTERPRISE IDENTITY SERVICES RELEASE AND UPGRADE GUIDE. Release 8.1.4, Revision 1 July 2011

BANNER ENTERPRISE IDENTITY SERVICES RELEASE AND UPGRADE GUIDE. Release 8.1.4, Revision 1 July 2011 BANNER ENTERPRISE IDENTITY SERVICES RELEASE AND UPGRADE GUIDE Release 8.1.4, Revision 1 July 2011 Trademark, Publishing Statement and Copyright Notice SunGard or its subsidiaries in the U.S. and other

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

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

EPAF (Electronic Personnel Action Form) ORIGINATOR MANUAL

EPAF (Electronic Personnel Action Form) ORIGINATOR MANUAL EPAF (Electronic Personnel Action Form) ORIGINATOR MANUAL Gulfline Version November 2014 The electronic personnel action form (EPAF) function of Gulfline allows the University to process paperless personnel

More information

Oracle Warehouse Builder 10g Runtime Environment, an Update. An Oracle White Paper February 2004

Oracle Warehouse Builder 10g Runtime Environment, an Update. An Oracle White Paper February 2004 Oracle Warehouse Builder 10g Runtime Environment, an Update An Oracle White Paper February 2004 Runtime Environment, an Update Executive Overview... 3 Introduction... 3 Runtime in warehouse builder 9.0.3...

More information

Oracle Learn Cloud. What s New in Release 15B

Oracle Learn Cloud. What s New in Release 15B Oracle Learn Cloud What s New in Release 15B 10 July 2015 TABLE OF CONTENTS OVERVIEW... 3 RELEASE FEATURE SUMMARY... 3 BI REPORTING BETA CUSTOM REPORTING CAPABILITIES... 5 Terminology... 5 New User Permission...

More information

Multi-Channel Publishing for AllFusion Gen

Multi-Channel Publishing for AllFusion Gen QA TECHNOLOGIES Multi-Channel Publishing for AllFusion Gen Questions Answered. Solutions Provided. Common Questions What exactly is QAT Publisher? Advanced plug-in for AllFusion Gen Multi-Channel publishing

More information

PROCEDURAL DATABASE PROGRAMMING ( PL/SQL AND T-SQL)

PROCEDURAL DATABASE PROGRAMMING ( PL/SQL AND T-SQL) Technology & Information Management Instructor: Michael Kremer, Ph.D. Class 5 Database Programming PROCEDURAL DATABASE PROGRAMMING ( PL/SQL AND T-SQL) AGENDA 7. Stored Procedures 7.1 Introduction to Stored

More information

Developing a Mobile Web-based Application with Oracle9i Lite Web-to-Go

Developing a Mobile Web-based Application with Oracle9i Lite Web-to-Go Developing a Mobile Web-based Application with Oracle9i Lite Web-to-Go Christian Antognini Trivadis AG Zürich, Switzerland Introduction More and more companies need to provide their employees with full

More information

PEOPLEADMIN SELECTSUITE USER MANUAL

PEOPLEADMIN SELECTSUITE USER MANUAL PEOPLEADMIN SELECTSUITE USER MANUAL TABLE OF CONTENTS OVERVIEW INTRODUCTION 1 CHAPTER 1 GETTING STARTED 2 1.1 LOGIN 2 1.2 ACCESS 2 1.3 USER GROUPS 4 1.4 NAVIGATION 4 1.5 MODULES 5 1.6 PAGE ORGANIZATION

More information

Electronic Memorandum of Agreement ( emoa ) FAQ

Electronic Memorandum of Agreement ( emoa ) FAQ Electronic Memorandum of Agreement ( emoa ) FAQ Initiator Questions Approver Questions Faculty Questions Other Common Questions I. Initiator Questions... 2 A. I will be initiating electronic emoas. How

More information

Introductions. Course Goal

Introductions. Course Goal Banner Performance Reporting and Analytics Introductions Name Title/function Job responsibilities ODS experience Expectations 2 Course Goal Provide the participants with an understanding of information

More information

QuickStart Guide for Mobile Device Management. Version 8.7

QuickStart Guide for Mobile Device Management. Version 8.7 QuickStart Guide for Mobile Device Management Version 8.7 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF

More information

Designing Role Based Security to Make Your Job Easier

Designing Role Based Security to Make Your Job Easier Designing Role Based Security to Make Your Job Easier Many sites are still using the User Based security schema put into place many Munis versions ago. This is creating extra work with maintenance of security.

More information

ELECTRONIC PERSONNEL ACTION FORM (EPAF) MANUAL Banner Human Resources Self-Service

ELECTRONIC PERSONNEL ACTION FORM (EPAF) MANUAL Banner Human Resources Self-Service ELECTRONIC PERSONNEL ACTION FORM (EPAF) MANUAL Banner Human Resources Self-Service Any questions please email elrel@temple.edu Table of Contents Introduction.. 02 How to Access EPAFs.. 03 How to Set Up

More information

Quality Notifications (QM-QN)

Quality Notifications (QM-QN) HELP.QMQN Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission

More information

Luminis Platform Group and Course Leader Administration Guide Version F Nov 27, 2006 For use with Platform IV software. What can we help you achieve?

Luminis Platform Group and Course Leader Administration Guide Version F Nov 27, 2006 For use with Platform IV software. What can we help you achieve? Luminis Platform Group and Course Leader Administration Guide Version F Nov 27, 2006 For use with Platform IV software What can we help you achieve? Confidential Business Information This documentation

More information

Project Horizon Technical Overview. Bob Rullo GM; Presentation Architecture

Project Horizon Technical Overview. Bob Rullo GM; Presentation Architecture Project Horizon Technical Overview Bob Rullo GM; Presentation Architecture robert.rullo@sungardhe.com Agenda Banner Evolution Overview Project Horizon Overview Project Horizon Architecture Review Preparing

More information

Community College of Beaver County. Request for Proposal. April 15, 2019

Community College of Beaver County. Request for Proposal. April 15, 2019 Community College of Beaver County Request for Proposal Tristate Energy & Advanced Manufacturing (TEAM) Consortium Website Design April 15, 2019 1 April 15, 2019 Dear Potential Vendor: Community College

More information

Project Horizon Technical Overview. Steven Forman Principal Technical Consultant

Project Horizon Technical Overview. Steven Forman Principal Technical Consultant Project Horizon Technical Overview Steven Forman Principal Technical Consultant Agenda Banner Evolution Overview Project Horizon Overview Project Horizon Architecture Review Preparing for Project Horizon

More information

Decision Support Release Notes. Release 7.0

Decision Support Release Notes. Release 7.0 Decision Support Release Notes Release 7.0 1. General Modifications... 2 1.1 Telephone Number Presentation... 2 1.2 Citizen Type Code Change... 2 2. Catalog & Schedule... 3 2.1 Course Description Text

More information

Oracle System Administrator Fundamentals It s All about Controlling What Users Can See and Do

Oracle System Administrator Fundamentals It s All about Controlling What Users Can See and Do Oracle System Administrator Fundamentals It s All about Controlling What Users Can See and Do Jim Childerston Introduction In this presentation, we will look at basic system administration from a functional

More information

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner ADF Code Corner 005. How-to bind custom declarative components to ADF Abstract: Declarative components are reusable UI components that are declarative composites of existing ADF Faces Rich Client components.

More information

Perceptive Experience Content Apps

Perceptive Experience Content Apps Perceptive Experience Content Apps Technical Specifications Version: 1.4.0 Written by: Product Knowledge, R&D Date: Monday, July 18, 2016 2014-2016 Lexmark International Technology, S.A. All rights reserved.

More information

E-Time Reporting Guide for Exempt Employees

E-Time Reporting Guide for Exempt Employees E-Time Reporting Guide for Exempt Employees CONTENTS Click on topic below to go directly to that page. OTHER LINKS IN THIS GUIDE LOG INTO THE ORACLE BUSINESS APPLICATIONS 1.1 How to Access, Log In and

More information

Real Application Security Administration

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

More information

ebusiness Suite goes SOA

ebusiness Suite goes SOA ebusiness Suite goes SOA Ulrich Janke Oracle Consulting Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not

More information

Batch Versions Guide Release 9.2

Batch Versions Guide Release 9.2 [1]JD Edwards EnterpriseOne Tools Batch Versions Guide Release 9.2 E53572-01 October 2015 Describes how to create and process versions of report templates. JD Edwards EnterpriseOne Tools Batch Versions

More information

eappraisal Administrator Guide Version 10.0 Issue 1

eappraisal Administrator Guide Version 10.0 Issue 1 eappraisal Administrator Guide Version 10.0 Issue 1 www.halogensoftware.com Halogen eappraisal Administrator Guide Software Release: Version 10.0 Document Version: Issue 1 Issue Date: 23 August 2010 Revision

More information

EPAF Frequently Asked Questions

EPAF Frequently Asked Questions What is an EPAF? What is the flow of an EPAF? EPAF stands for Electronic Personnel Action Form. An EPAF allows personnel actions to be created and approved electronically, eliminating paper and allowing

More information

E-Time Reporting Guide for Non-Exempt (Salaried and Hourly) Employees

E-Time Reporting Guide for Non-Exempt (Salaried and Hourly) Employees E-Time Reporting Guide for Non-Exempt (Salaried and Hourly) Employees CONTENTS Click on topic below to go directly to that page. OTHER LINKS IN THIS GUIDE LOG INTO THE ORACLE BUSINESS APPLICATIONS 1.1

More information

Welcome to SunGard SCT Banner. Introductions. Course Goals. Name Organization Title/function Job responsibilities SCT Banner experience Expectations

Welcome to SunGard SCT Banner. Introductions. Course Goals. Name Organization Title/function Job responsibilities SCT Banner experience Expectations Welcome to SunGard SCT Banner SEVIS Introductions Name Organization Title/function Job responsibilities SCT Banner experience Expectations 2 Course Goals This course is intended to provide you with the

More information

Infor Lawson on IBM i 7.1 and IBM POWER7+

Infor Lawson on IBM i 7.1 and IBM POWER7+ Infor Lawson on IBM i 7.1 and IBM POWER7+ IBM Systems & Technology Group Mike Breitbach mbreit@us.ibm.com This document can be found on the web, Version Date: March, 2014 Table of Contents 1. Introduction...

More information

COLLEGE OF WILLIAM AND MARY

COLLEGE OF WILLIAM AND MARY Position Management Instructional or Executive Position Descriptions COLLEGE OF WILLIAM AND MARY Human Resources 0 P a g e Table of Contents Topic Page Create a New Position Description 2 Classification

More information

AIM. 10 September

AIM. 10 September AIM These two courses are aimed at introducing you to the World of Web Programming. These courses does NOT make you Master all the skills of a Web Programmer. You must learn and work MORE in this area

More information

User Manual. Getting Started..2. Understanding the Home Screen...2. Creating an Event...3. Registration 6. Managing an Existing Event.

User Manual. Getting Started..2. Understanding the Home Screen...2. Creating an Event...3. Registration 6. Managing an Existing Event. User Manual Getting Started..2 Understanding the Home Screen...2 Creating an Event....3 Registration 6 Managing an Existing Event.10 Using the Publication Manager 12 Policies.12 Where to Go for Help.13

More information

ejobs - Navigating the Home Page

ejobs - Navigating the Home Page ejobs - Navigating the Home Page Contents Logging In... 3 For University Employees:... 3 For Guest Users and Non-university Search Committee Members:... 3 My Profile... 4 Change your Default Login User

More information

Relativity Designer Installation Guide

Relativity Designer Installation Guide Liant Software Corporation Relativity Designer Installation Guide Version 5 Copyright 1994-2003 by Liant Software Corporation. All rights reserved. Printed in U.S.A. No part of this publication may be

More information

Job Aid. Termination of Assignment Only Still Has Other WSU Employment TERM-J

Job Aid. Termination of Assignment Only Still Has Other WSU Employment TERM-J Job Aid Termination of Assignment Only Still Has Other WSU Employment TERM-J TERMINATION OF ASSIGNMENT ONLY, STILL HAS OTHER WSU EMPLOYMENT, TERM-J Welcome to the TERM-J module. In this module, we will:

More information

How Do I Change an Employee/Supervisor Relationship using EPAF (Electronic Personnel Action Form)

How Do I Change an Employee/Supervisor Relationship using EPAF (Electronic Personnel Action Form) 1. Log onto SharkLink with your system credentials: 2. Click on the link Webstar; 3. From the WebSTAR page, select the button Employee. 4. From the Employee page, select the button EPAF Menu: The page

More information

Novell ZENworks Asset Management 7

Novell ZENworks Asset Management 7 Novell ZENworks Asset Management 7 w w w. n o v e l l. c o m July 2006 INSTALLATION GUIDE Table Of Contents 1. Installation Overview... 1 Upgrade/Update Matrix...1 Installation Choices...2 ZENworks Asset

More information

Banner Workflow Release Guide. Release 8.3 February 27, 2015

Banner Workflow Release Guide. Release 8.3 February 27, 2015 Banner Workflow Release Guide Release 8.3 February 27, 2015 Without limitation: Ellucian, Banner, Colleague, and Luminis are trademarks of the Ellucian group of companies that are registered in the U.S.

More information

EPAF User Guide. Your guide for navigating the EPAF System

EPAF User Guide. Your guide for navigating the EPAF System EPAF User Guide Your guide for navigating the EPAF System This booklet outlines the use of Electronic Personnel Action Forms in the Banner Web for Employees. Office of Human Resources 02/08/2013 Frequently

More information

Release Notes Mattec MES 8.2

Release Notes Mattec MES 8.2 Mattec MES 8.2 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

JReport Enterprise Viewer for JREntServer Manual

JReport Enterprise Viewer for JREntServer Manual JReport Enterprise Viewer for JREntServer Manual Table of Contents Installing and Launching JReport Enterprise Viewer...1 Installing JReport Enterprise Viewer...1 Installing on Windows...1 Installing on

More information

Moving You Forward A first look at the New FileBound 6.5.2

Moving You Forward A first look at the New FileBound 6.5.2 Moving You Forward A first look at the New FileBound 6.5.2 An overview of the new features that increase functionality and ease of use including: FileBound 6.5.2 Service Pack FileBound Capture 6.6 New

More information

Online Labor Redistributions Entry Reference Guide

Online Labor Redistributions Entry Reference Guide Online Labor Redistributions Entry Reference Guide Contents: Submitting a Labor Redistribution... 2 Changing Multiple Pay Periods... 13 Additional Search Criteria... 17 Overview: The on-line labor redistribution

More information

Sql Server Check If Global Temporary Table Exists

Sql Server Check If Global Temporary Table Exists Sql Server Check If Global Temporary Table Exists I am trying to create a temp table from the a select statement so that I can get the schema information from the temp I have yet to see a valid justification

More information

Comparison of survey tools

Comparison of survey tools Comparison of survey tools Introduction The (Sakai) Evaluations () tool offers a free, locally hosted solution for collecting and analysing survey data. This document compares the features offered by the

More information

About these Release Notes. Documentation Accessibility. New Features in Pro*COBOL

About these Release Notes. Documentation Accessibility. New Features in Pro*COBOL Pro*COBOL Release Notes 12c Release 1 (12.1) E18407-06 April 2013 About these Release Notes This document contains important information about Pro*COBOL 12c Release 1 (12.1). It contains the following

More information

VERINT EFM 8.0 Release Overview

VERINT EFM 8.0 Release Overview VERINT EFM 8.0 Release Overview In January of 2015 Verint will release version 8.0 of the Enterprise Feedback Management (EFM) solution. Verint hosted SaaS customers will receive this update as part of

More information

Faculty Creating an Adjunct Faculty Job Posting

Faculty Creating an Adjunct Faculty Job Posting This document will explain how to create an Adjunct Faculty Job Posting. Contents Logging in and Selecting a User Role 2 Getting Started 3 Navigation 4 Position Details Tab 4 Supplemental questions tab

More information

Web Development with Java

Web Development with Java Web Development with Java Tim Downey Web Development with Java Using Hibernate, JSPs and Servlets Tim Downey, BS, MS Florida International University Miami, FL 33199, USA British Library Cataloguing in

More information

xpression 3 Getting Started with xpression Enterprise Edition

xpression 3 Getting Started with xpression Enterprise Edition xpression 3 Getting Started with xpression Enterprise Edition 2001-2008 by EMC. All rights reserved. The copyright protection claimed includes all formats of copyrightable material and information governed

More information

Claim Management HELP.PSCLM. Release 4.6C

Claim Management HELP.PSCLM. Release 4.6C HELP.PSCLM Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission

More information

CHAPTER 44. Java Stored Procedures

CHAPTER 44. Java Stored Procedures CHAPTER 44 Java Stored Procedures 752 Oracle Database 12c: The Complete Reference You can write stored procedures, triggers, object type methods, and functions that call Java classes. In this chapter,

More information

GEORGIA ENHANCEMENTS: TECHNICAL. Miguel Morales, GeorgiaBEST Information Technology Services April 29, 2015

GEORGIA ENHANCEMENTS: TECHNICAL. Miguel Morales, GeorgiaBEST Information Technology Services April 29, 2015 GEORGIA ENHANCEMENTS: TECHNICAL Miguel Morales, GeorgiaBEST Information Technology Services April 29, 2015 THE GEORGIABEST TEAM TOPICS OF DISCUSSION Banner Infrastructure Database Objects Code Tree Job

More information

SAP HANA SPS 08 - What s New? SAP HANA Interactive Education - SHINE (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014

SAP HANA SPS 08 - What s New? SAP HANA Interactive Education - SHINE (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014 SAP HANA SPS 08 - What s New? SAP HANA Interactive Education - SHINE (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014 Agenda SHINE - Overview SHINE What s new in SPS 08 SHINE - Roadmap

More information

Scope Use this guide to migrate your P6 EPPM schema to a P6 Professional schema or your P6 Professional schema to a P6 EPPM schema.

Scope Use this guide to migrate your P6 EPPM schema to a P6 Professional schema or your P6 Professional schema to a P6 EPPM schema. P6 EPPM and P6 Professional Schema Migration Guide 16 R1 March 2016 Contents About This Guide... 5 About Migrating Database Schema... 5 Prerequisites for Schema Migration... 6 Migrating P6 EPPM Schema

More information

Customizing a Packaged Application for a J2EE Environment: A Case Study. Leslie Tierstein TopTier Consulting, Inc.

Customizing a Packaged Application for a J2EE Environment: A Case Study. Leslie Tierstein TopTier Consulting, Inc. Customizing a Packaged Application for a J2EE Environment: A Case Study Leslie Tierstein TopTier Consulting, Inc. 1 Overview (1) Learning experiences in a J2EE Environment The environment Deployment of

More information

Banner 8 Security Enhancements Part 1

Banner 8 Security Enhancements Part 1 Banner 8 Security Enhancements Part 1 Presented by: Les von Holstein SunGard Higher Education Tuesday, March 22, 2011 10:00 11:00 Session ID 4582 Focus Group Thank You! George Mason University Georgia

More information

Astra Schedule is our facility management system

Astra Schedule is our facility management system Astra Schedule Astra Schedule is our facility management system Permissions in Astra are based on Region (Security) Regions are groupings of rooms used by a College or Area Check availability of most campus

More information

Online Polling Via the My.UCDavis Web Portal Mary Lehman, UC Davis CAIR conference, November 13-15, 2002

Online Polling Via the My.UCDavis Web Portal Mary Lehman, UC Davis CAIR conference, November 13-15, 2002 SARI Report #258, November 2002 Online Polling Via the My.UCDavis Web Portal Mary Lehman, UC Davis CAIR conference, November 13-15, 2002 You've seen single item polls on the web, the San Francisco Chronicle's

More information

CA IdentityMinder. Glossary

CA IdentityMinder. Glossary CA IdentityMinder Glossary 12.6.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

JobX is seamlessly integrated with your University of Vermont School information System (SIS).

JobX is seamlessly integrated with your University of Vermont School information System (SIS). Supervisor Training = A Total Solution JobX helps schools automate the job posting, application submission, application review, hiring and reporting process for students, employers, and site administrators.

More information

Architecture and Governance with SharePoint for Internet Sites. Ashish Bahuguna Kartik Shah

Architecture and Governance with SharePoint for Internet Sites. Ashish Bahuguna Kartik Shah Architecture and Governance with SharePoint for Internet Sites Ashish Bahuguna ashish.bauguna@bitscape.com Kartik Shah kartik.shah@bitscape.com Agenda Web Content Management Architecture Information Architecture

More information

mygateway Portal Training for Staff

mygateway Portal Training for Staff mygateway Portal Training for Staff Index What Is A Portal?... 4 Portal Terms... 4 Signing In To Mygateway... 5 Terms in Use... 6 Channels... 7 Remove / Add a Channel... 7 Content Layout... 8 Order of

More information

Extend EBS Using Applications Express

Extend EBS Using Applications Express Extend EBS Using Applications Express John Peters JRPJR, Inc. Abstract Few people know about Oracle Applications Express (APEX) an actual free Oracle Tool included with your Oracle DB Licenses. How many

More information

One Identity Manager Administration Guide for Connecting Oracle E-Business Suite

One Identity Manager Administration Guide for Connecting Oracle E-Business Suite One Identity Manager 8.0.2 Administration Guide for Connecting Oracle E- Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Building E-Business Suite Interfaces using BPEL. Asif Hussain Innowave Technology

Building E-Business Suite Interfaces using BPEL. Asif Hussain Innowave Technology Building E-Business Suite Interfaces using BPEL Asif Hussain Innowave Technology Agenda About Innowave Why Use BPEL? Synchronous Vs Asynchronous BPEL Adapters Process Activities Building EBS Interfaces

More information

Extreme Makeover, PeopleSoft Edition: Give your Pre-9.1 Apps a Total 8.5 Facelift, Without Mods!

Extreme Makeover, PeopleSoft Edition: Give your Pre-9.1 Apps a Total 8.5 Facelift, Without Mods! Extreme Makeover, PeopleSoft Edition: Give your Pre-9.1 Apps a Total 8.5 Facelift, Without Mods! Tuesday, March 2 nd, 2010 9:30 a.m. in Room 214C What You re Getting in This Session A look at two cool

More information

TEKLYNX LABEL ARCHIVE

TEKLYNX LABEL ARCHIVE TEKLYNX LABEL ARCHIVE U S E R G U I D E LABEL ARCHIVE User Guide DOC-LAS2012-QSM-US-2007013 The information in this manual is not binding and may be modified without prior notice. Supply of the software

More information

SAS AppDev Studio TM 3.4 Eclipse Plug-ins. Migration Guide

SAS AppDev Studio TM 3.4 Eclipse Plug-ins. Migration Guide SAS AppDev Studio TM 3.4 Eclipse Plug-ins Migration Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS AppDev Studio TM 3.4 Eclipse Plug-ins: Migration

More information

Oracle Identity Manager Training

Oracle Identity Manager Training Oracle Identity Manager Training The University of Wisconsin Service Center will Serve the people of the University of Wisconsin System Collaborate by being supportive and constructive Act with Integrity

More information

Adding the myiit Electronic Payroll Authorization Channel

Adding the myiit Electronic Payroll Authorization Channel Adding the myiit Electronic Payroll Authorization Channel 1. In the myiit portal click on the Content/Layout link in the upper left corner of the screen 2. Select the tab you want the new channel to be.

More information

QUICKBOOKS ONLINE FUNDAMENTALS SERIES. Part 1 Introducing Intuit QuickBooks Online Accountant

QUICKBOOKS ONLINE FUNDAMENTALS SERIES. Part 1 Introducing Intuit QuickBooks Online Accountant QUICKBOOKS ONLINE FUNDAMENTALS SERIES Part 1 Introducing Intuit QuickBooks Online Accountant Copyright Copyright 2016 Intuit, Inc. All Rights Reserved. Trademarks 2016 Intuit Inc. All rights reserved.

More information

3. Optionally, if you want to use the new Web SSO feature, complete the steps in Adding Web Single Sign-On Functionality.

3. Optionally, if you want to use the new Web SSO feature, complete the steps in Adding Web Single Sign-On Functionality. Webthority HOW TO Upgrade The steps required to upgrade depend on the version you are upgrading from: upgrading from 6.5 upgrading from 6.0. Upgrading from 6.5 To upgrade from 6.5 perform the following

More information

Integra Codebase 4.2 SP1 Installation and Upgrade Guide

Integra Codebase 4.2 SP1 Installation and Upgrade Guide Integra Codebase 4.2 SP1 Installation and Upgrade Guide 2 Copyright and Trademark Copyright 2008 Oracle. All rights reserved. No part of this document may be reproduced, stored in a retrieval system, or

More information

SAS. Installation Guide Fifth Edition Intelligence Platform

SAS. Installation Guide Fifth Edition Intelligence Platform SAS Installation Guide Fifth Edition 9.1.3 Intelligence Platform The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS 9.1.3 Intelligence Platform: Installation

More information

ADP Vantage HCM. Navigation for Practitioners

ADP Vantage HCM. Navigation for Practitioners ADP Vantage HCM Navigation for Practitioners Introduction This is a high-level look at the various navigation features associated with ADP Vantage HCM. The features available are dependent upon your job

More information

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E39882-02 December 2013 Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide, Release 4.0

More information

Oracle Cloud 1Z0-966

Oracle Cloud 1Z0-966 Oracle Cloud 1Z0-966 Oracle Talent Management Cloud 2017 Implementation Essentials Thank You for Downloading 1Z0-966 Updated Exam Questions oracle/1z0-966-pdf-exam-dumps Question: 1 Version: 6.0 Which

More information

WordPress Case Study

WordPress Case Study Technology Hotspot & Salon WordPress Case Study WPMU as a CMS for Organizational Intranet Anca Mosoiu Tech Liminal 268 14th Street, Oakland, CA 94612 Open 11-7 Monday - Friday More info: http:// Content

More information

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

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

More information

Verint EFM 15.2 FP1 Release Overview

Verint EFM 15.2 FP1 Release Overview Verint EFM 15.2 FP1 Release Overview In April of 2018, Verint will release version 15.2 FP1 of the Enterprise Feedback Management (EFM) solution. Verint Public Cloud SaaS customers will receive this update

More information