Special Processes, EDB File Maintenance & Compute Cycles DETAIL DESIGN. Document Number BYCOVER. July 14, Phillip Thompson

Size: px
Start display at page:

Download "Special Processes, EDB File Maintenance & Compute Cycles DETAIL DESIGN. Document Number BYCOVER. July 14, Phillip Thompson"

Transcription

1 Special Processes, EDB File Maintenance & Compute Cycles DETAIL DESIGN Document Number BYCOVER July 14, 1995 Phillip Thompson Information Systems & Computing Office of the President University of California

2 Page 2 Final

3 Table of Contents Introduction... 1 Overview... 2 Input Bypass Flag:... 2 Activity Generation Number... 3 EDB Generation Number... 3 Program Changes... 5 PPP PPP Attachments... 6

4 Page 1 Introduction Releases 964, Student FICA, and 988, Daily Employment Status Derivation, introduced Special Processes to the EDB Maintenance process. These Special Processes involve the updating of the System Control Record via programs PPP020 and PPP130 in ways which make the production control of other EDB Maintenance processes difficult. A Special Process during the middle of an EDB File Maintenance cycle requires a rerun of PPP020 to reset the Activity Generation Number and Bypass flag. If multiple Special Processes were run, each with an execution of PPP020, a rerun of PPP020 to reset the Activity Generation Number would be required after each Special Process. If two Special Processes were run backto-back, each with its own run of PPP020, the Set Transaction Control Number would be initialized to zero. There is no simple way to correct this problem, and "manual" intervention would be required to restart the EDB File Maintenance process. PPP130 increments the EDB Generation Number. When a Special Process occurs in the middle of a Compute cycle and updates the EDB Generation Number, that results in several possible events within the Compute process. During the Compute edit cycle it will trigger re-editing. This is not a problem, especially since with online update re-editing should be done anyway. During the Compute, in PPP390 and PPP410, a message will be issued noting the change in the EDB Generation Number. In the Base system these messages are Warning level. The local effect depends on local JCL Condition Codes and local changes to the message severity. If the EDB Generation Number is changed between PPP410 and PPP420, PPP420 issues a message and performs a soft "abend" regardless of the message severity. It has been requested that the Special Processes be changed so that other PPS processes can occur without undue oversight and intervention by production control.

5 Page 2 Overview The proposed changes affect the way in which Special Processes will update the System Control Record, i.e. the SCR table. Specifically, the handling of the EDB Generation Number (SCR_EDB_GENNUM), Input Bypass Flag (SCR_INPUT_BYPASS) and the Activity Generation Number (SCR_ACTVTY_GENNUM) will be changed. The latter, in turn, will affect the handling of the Set Transaction Control Number (SCR_SET_CNTRL_NUM). Input Bypass Flag: The Input Bypass Flag is a vestigial control mechanism left from when PPP120 performed both EDB File Maintenance and Periodic Maintenance. It is used in PPP020, PPP050 and PPP120. It is set "on" in PPP020 when either Periodic Maintenance or a Special Process is requested. This indicates that no input transactions are expected to be processed. In PPP050, if the Input Bypass Flag is "on", PPP050 issues message (Base severity of 8) and stops. The message text is: OPER - NO DATABASE MAINTENANCE EXPECTED THIS RUN PPP120 contains logic that implies it can run if the Input Bypass Flag is "on", i.e. it checks its value in several locations. One approach would be to remove all references to SCR_INPUT_BYPASS from the three programs. It would be simple to do in PPP020 and PPP050. It would be more complicated in PPP120 because in most cases the reference is contained in a compound IF condition statement. There is also the issue of DDL work and INCLUDE's for the SCR row across the application. It is also possible that running PPP120 without input might be desirable for some future purpose, and thus the flag might serve a purpose (though it seems more likely that such a future purpose would more likely use the Special Process path). PPP020 will be changed to not update the Input Bypass Flag when a Special Process is being requested. If PPP020 is run to request Periodic Maintenance the Input Bypass Flag will continue to be turned on. If Periodic Indicator Initialization is requested, the Input Bypass Flag will continue to be turned off. And, if File Maintenance is requested, i.e. neither Period Indicators or the Special Process Indicator are on, then the Input Bypass Flag will continue to be turned off as it is now. If a Special Process is being requested, the Input Bypass Flag will remain unchanged. This, if it had been turned off to start an edit cycle, then it will still be off after the Special Process is run,

6 Page 3 thus allowing PPP050 to process normally. It if had been turned on for Periodic Maintenance, it will be left on, thus requiring a run of PPP020 to start the next edit cycle. Activity Generation Number: PPP120 and PPP130 both currently always set the Activity Generation Number to zero and update the SCR table. A successful run of PPP120 signals the end of an edit cycle, and thus it should reset the Activity Generation Number. PPP130 Periodic Maintenance does not normally run in the middle of an edit cycle, and its resetting of the Activity Generation Number prohibits, or at least makes difficult, the running of Periodic Maintenance during an edit cycle. A problem occurs when PPP130 runs for a Special Process during an edit cycle, a likely occurrence now that the Special Daily Process has been implemented. Leaving aside the issue of the Input Bypass Flag discussed above for PPP050, if an edit cycle were attempted after a Special Process had reset the Activity Generation Number, PPP080 would note the zero value of the Activity Generation Number, assume there was no Old Activity file, and would only process the new transactions. A rerun of PPP020 with an appropriate Activity Generation Number on the Run Specification card could allow the edit cycle to continue. However, a worse case can happen. If the Activity Generation Number is zero, PPP020 sets the Set Transaction Control Number to zero. This is the number used to keep set transactions together and is also the key needed when correcting errors for set transactions in earlier edit cycles. If two Special Processes were run, the first would set the Activity Generation Number to zero in PPP130, and the second would set the Set Transaction Control Number to zero in PPP020. There is no way via PPP020 to update this number as one can the Activity Generation Number. "Manual" intervention would then be required to get the edit cycle back in synch. PPP130 will be changed to only set the Activity Generation Number to zero during Periodic Maintenance. During any Special Process it will not be updated. EDB Generation Number: PPP120 and PPP130 both currently increment the EDB Generation Number and update the SCR table. The problem occurs when PPP130 runs for a Special Process during a Compute edit cycle, between the edit and the Compute, or between the Compute and the Check Write.

7 Page 4 During the Compute edit cycle, PPP360 compares the SCR EDB Generation Number and the PCR EDB Generation Number. If they are different, the re-edit flag is set on, and transaction edediting occurs. This is not a problem, and with online update should be done anyway. During the Compute, PPP390 and PPP410 compare the SCR EDB Generation Number and the PCR EDB Generation Number. If they are different, a message will be issued noting the change. In the Base system these messages are Warning level. The local effect depends on local changes to the message severity and local JCL Condition Codes. During the Check Write, PPP420 compares the SCR EDB Generation Number and the PCR Last EDB Generation Number. If they are different, PPP420 issues a message and performs a soft "abend" regardless of the message severity. Given online update, which does not update the SCR EDB Generation Number but does update the EDB, it is possible that the whole process of checking the EDB Generation Number is no longer needed. However, it is proposed to leave this process in place for any procedure that might rely on it. Since online EDB does not increment the EDB Generation Number and has not adversely affected the Compute, it is safe to presume that the incrementing can be removed from PPP130 during Special Processes without ill effect. PPP130 will be changed to only increment the EDB Generation Number during Periodic Maintenance. During any Special Process it will not be updated.

8 Page 5 Program Changes PPP020: Currently a non-blank value in the Periodic Indicators or Special Process Indicator fields of the System Control Record (UPAY630) causes section Set-Period-Indicators-4000 to be performed. Period Indicators can be updated, OR Period Indicators can be initialized, OR the Special Process Indicator can be updated. Only one of the events can occur in a single run of PPP020. If the Period Indicators are simply being initialized then the Bypass flag is turned off, i.e. SCR_INPUT_BYPASS is set to zero. Otherwise, the Bypass flag is turned on, i.e. SCR_INPUT_BYPASS is set to one. Thus, Period Indicators and a Special Process currently both turn the flag on. Changes: This code will be changed to not update the existing value of SCR_INPUT_BYPASS if a Special Process Indicator is being updated. It will retain whatever its value was from the last run of PPP020. This will leave it off if an edit cycle has been begun. It will leave it on if the last run of PPP020 was for Periodic maintenance. See Attachment A for sample code. Note: the sample code shown includes a fix to a formatting problem during the printing of the Activity Generation Number on report PPP0202. PPP130: PPP130 currently moves zeros to SCR_ACTVTY_GENNUM and increments SCR_EDB_GENNUM by +1 (or sets it to 1 if it is currently 99). Changes: The code will be changed to not reset SCR_ACTVTY_GENNUM to zero nor to increment SCR_EDB_GENNUM when a Special Process is being performed by PPP130. See Attachment B for sample code.

9 Page 6 Attachments Attachment A Proposed PPP020 changes. Attachment B Proposed PPP130 changes.

Service Request Day Break in Service. Detail Design. Document Number DETAIL 3/9/01 4:47 PM Phillip Thompson

Service Request Day Break in Service. Detail Design. Document Number DETAIL 3/9/01 4:47 PM Phillip Thompson Service Request 15217 Document Number DETAIL Phillip Thompson Information Systems & Computing Office of the President University of California INTRODUCTION...1 DIFFERENCES FROM REQUIREMENTS...2 DDL MEMBERS

More information

Release Service Request SHPS File. Detail Design. Document Number detail.doc Phillip Thompson 1/13/2003 2:58 PM

Release Service Request SHPS File. Detail Design. Document Number detail.doc Phillip Thompson 1/13/2003 2:58 PM Release 1458 Service Request 80286 Detail Design Document Number detail.doc Phillip Thompson Information Systems & Computing Office of the President University of California Page 1 INTRODUCTION...2 DDL

More information

Detail Design RELEASE Fidelity ID Assignment for Employees With Zero Social Security Numbers Service Request March 7, :00 AM

Detail Design RELEASE Fidelity ID Assignment for Employees With Zero Social Security Numbers Service Request March 7, :00 AM RELEASE 1695 Fidelity ID Assignment for Employees With Zero Social Security Numbers Service Request 81274 11:00 AM Application Technology Services Information Resources &Communications Office of the President

More information

Service Request Savings Choice Vesting Start Date Logic In PPS. Technical Specification. March 29, 2018 Prepared by Pete Stern

Service Request Savings Choice Vesting Start Date Logic In PPS. Technical Specification. March 29, 2018 Prepared by Pete Stern Service Request 102104 Savings Choice Vesting Start Date Logic In PPS Prepared by Pete Stern Information Technology Services Office of the President University of California Version History Version # Date

More information

Release Service Request Consolidated Billing Automation Phase I. Detail Design. January 21, 2009 Prepared by Caroline Rider

Release Service Request Consolidated Billing Automation Phase I. Detail Design. January 21, 2009 Prepared by Caroline Rider Service Request 82209 Consolidated Billing Automation Phase I Prepared by Caroline Rider Information Resources & Communications Office of the President University of California Table of Contents Introduction...1

More information

Release Service Request TX Dues DETAIL DESIGN. Document Number DETAIL 2/5/98 11:17 AM Phillip Thompson

Release Service Request TX Dues DETAIL DESIGN. Document Number DETAIL 2/5/98 11:17 AM Phillip Thompson Release 1177 Service Request 13213 DETAIL DESIGN Document Number DETAIL 2/5/98 11:17 AM Phillip Thompson Information Systems & Computing Office of the President University of California INTRODUCTION...

More information

BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO

BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO UNIVERSITY OF CALIFORNIA BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO SANTA BARBARA SANTA CRUZ OFFICE OF THE SENIOR VICE PRESIDENT BUSINESS AND FINANCE OFFICE OF THE PRESIDENT

More information

BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO

BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO UNIVERSITY OF CALIFORNIA BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO SANTA BARBARA SANTA CRUZ OFFICE OF THE SENIOR VICE PRESIDENT BUSINESS AND FINANCE OFFICE OF THE PRESIDENT

More information

Release Service Request Health Science Severance Pay Plan. Detail Design. June 18, 2008 Prepared by Janet Kennedy

Release Service Request Health Science Severance Pay Plan. Detail Design. June 18, 2008 Prepared by Janet Kennedy Service Request 82146 Health Science Severance Pay Plan Prepared by Janet Kennedy Information Resources & Communications Office of the President University of California Table of Contents Introduction...1

More information

UNIVERSITY OF CALIFORNIA

UNIVERSITY OF CALIFORNIA UNIVERSITY OF CALIFORNIA BERKELEY DAVIS IRVINE LOS ANGELES RIVERSIDE SAN DIEGO SAN FRANCISCO SANTA BARBARA SANTA CRUZ OFFICE OF THE SENIOR VICE PRESIDENT BUSINESS AND FINANCE OFFICE OF THE PRESIDENT 1111

More information

Error Reports Technical Release 2 nd Quarter 2010

Error Reports Technical Release 2 nd Quarter 2010 Error Reports 2236 2241 2259 2260 2261 2267 2219 Prepared by Maxine Gerber Revised August 13, 2010 Revised by Baskar Chitravel Rajeev Gupta Information Resources & Communications Office of the President

More information

CA PDSMAN PDS Library Management CA RS 1404 Service List

CA PDSMAN PDS Library Management CA RS 1404 Service List CA PDSMAN PDS Library Management 7.7 1 CA RS 1404 Service List Description Hiper 7.7 RO66063 $DEMO MAY FAIL WITH I/O ERROR AND U0001 ABEND RO66078 PDSMENT-2 OR U0001 ABEND TERMINATING HEALTH CHECKS RO66087

More information

Mobile-Pak Troubleshooting Guide

Mobile-Pak Troubleshooting Guide Mobile-Pak Troubleshooting Guide Solutions to Commonly Asked Mobile-Pak Questions What to try before contacting Support. Version 4 Soft-Pak 8525 Gibbs Drive Suite 300 San Diego, California 92123 Phone

More information

UNIVERSITY OF CALIFORNIA

UNIVERSITY OF CALIFORNIA UNIVERSITY OF CALIFORNIA BERKELEY DAVIS IRVINE LOS ANGELES RIVERSIDE SAN DIEGO SAN FRANCISCO SANTA BARBARA SANTA CRUZ OFFICE OF THE SENIOR VICE PRESIDENT BUSINESS AND FINANCE OFFICE OF THE PRESIDENT 1111

More information

Amicus Attorney Link Guide: Google Contacts & Calendar

Amicus Attorney Link Guide: Google Contacts & Calendar Amicus Attorney Link Guide: Google Contacts & Calendar Applies to: Amicus Attorney Premium Edition 2013/2012 Contents About the Link... 2 What you need... 2 Advantages of using the Link... 2 Administering

More information

Excel Timesheet Upload into CATS. Category 1 : Time Management Category 2 : Personnel Time Recording. Work Instruction

Excel Timesheet Upload into CATS. Category 1 : Time Management Category 2 : Personnel Time Recording. Work Instruction Excel Timesheet Upload into CATS ZCATSLOAD Purpose The purpose of the Timesheet Upload is to give Schools without access to SAP the ability to enter time. This will potentially save on the data entry effort

More information

CA Workload Automation ESP Edition CA RS 1501 Service List

CA Workload Automation ESP Edition CA RS 1501 Service List CA Workload Automation ESP Edition 11.4 1 CA RS 1501 Service List Description Type 11.4 RO67885 MNSUB# STAYS ZERO AFTER FIRST JOB'S SUBMISSION PTF RO69053 NOTIFY SYMBOLIC RESOLUTION PTF RO69059 A WARNING

More information

Teiid - Scalable Information Integration. Teiid Caching Guide 7.6

Teiid - Scalable Information Integration. Teiid Caching Guide 7.6 Teiid - Scalable Information Integration 1 Teiid Caching Guide 7.6 1. Overview... 1 2. Results Caching... 3 2.1. Support Summary... 3 2.2. User Interaction... 3 2.2.1. User Query Cache... 3 2.2.2. Procedure

More information

File Protection Whitepaper

File Protection Whitepaper Whitepaper Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Modes of operation... 2 Single-instance store... 3 Advantages of over traditional file copy methods... 3 2. Backup considerations...

More information

BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO

BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO UNIVERSITY OF CALIFORNIA BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO SANTA BARBARA SANTA CRUZ OFFICE OF THE SENIOR VICE PRESIDENT BUSINESS AND FINANCE OFFICE OF THE PRESIDENT

More information

1. Overview... 2 Documentation... 2 Licensing... 2 File Archiving requirements... 2

1. Overview... 2 Documentation... 2 Licensing... 2 File Archiving requirements... 2 User Guide BackupAssist User Guides explain how to create and modify backup jobs, create backups and perform restores. These steps are explained in more detail in a guide s respective whitepaper. Whitepapers

More information

Challenger Version 8 Programming Macro Logic.

Challenger Version 8 Programming Macro Logic. Challenger Version 8 Programming Macro Logic. This document provides details of the requirements for planning and programming Macro Logic in a Version 8 Challenger System for use in Alarm Control and/or

More information

S Computer Architecture. Computer architecture assignment E1 A subroutine, which searches for given byte pattern from an byte array.

S Computer Architecture. Computer architecture assignment E1 A subroutine, which searches for given byte pattern from an byte array. S-87.3190 Computer Architecture Computer architecture assignment E1 A subroutine, which searches for given byte pattern from an byte array. Mikko Vestola Student ID: xxxxx Department: xxxx Email: xxxxx

More information

Business Process Document Student Records: Posting Transfer Credit in Batch

Business Process Document Student Records: Posting Transfer Credit in Batch Department Responsibility/Role File Name Version Document Generation Date 11/21/2007 Date Modified 11/30/2007 Last Changed by Status SA 8.9 - Student Records, Transfer Credit Evaluation Posting Transfer

More information

Business Process Document myzou Enrollment: Print Class Roster

Business Process Document myzou Enrollment: Print Class Roster Department Responsibility/Role File Name Version Document Generation Date 6/10/2007 Date Modified 6/10/2007 Last Changed by Status Print Class Roster_BUSPROC Print Class Roster Trigger: Field(s) Comments

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS Release 1408 Service Request 15128 INSTALLATION INSTRUCTIONS Document Number install.doc Adam Cohen Information Systems & Computing Office of the President University of California Page 1 This document

More information

UNIVERSITY OF CALIFORNIA

UNIVERSITY OF CALIFORNIA UNIVERSITY OF CALIFORNIA BERKELEY DAVIS IRVINE LOS ANGELES RIVERSIDE SAN DIEGO SAN FRANCISCO SANTA BARBARA SANTA CRUZ OFFICE OF THE SENIOR VICE PRESIDENT BUSINESS AND FINANCE OFFICE OF THE PRESIDENT 300

More information

PEOPLESOFT NAVIGATION. Introduction What is PeopleSoft? PeopleSoft General Information & Navigation

PEOPLESOFT NAVIGATION. Introduction What is PeopleSoft? PeopleSoft General Information & Navigation PEOPLESOFT NAVIGATION PeopleSoft General Information & Navigation Introduction What is PeopleSoft? Designed as an integrated system Designed as a client/server application. Server (central computer) stores

More information

Click on view my advisement report

Click on view my advisement report How-To Guide For Obtaining Pharmacy Transcripts and GPA for PhorCAS Pharmacy Residency Applications Last updated: 11/6/17 by Julie Mandel, PharmD Candidate 2018 Step 1: Calculating your PharmD GPA You

More information

Tivoli Workload Scheduler for z/os Conditional and Step Dependencies Troubleshooting

Tivoli Workload Scheduler for z/os Conditional and Step Dependencies Troubleshooting SWG - TIVOLI Tivoli Workload Scheduler for z/os Conditional and Step Dependencies Troubleshooting IBM Rome Tivoli Lab Via Sciangai, 53 00144, Rome Italy Rossella Donadeo Tivoli Workload Scheduler development

More information

Release 1048 Service Request Employment Verification TEST INSTRUCTIONS. Document Number OTEST. January 9, 1996.

Release 1048 Service Request Employment Verification TEST INSTRUCTIONS. Document Number OTEST. January 9, 1996. Release 1048 Service Request 12076 Employment Verification TEST INSTRUCTIONS Document Number OTEST January 9, 1996 Phillip Thompson Information Systems & Computing Office of the President University of

More information

Instruction manual of the electronic lock DFS SB

Instruction manual of the electronic lock DFS SB 3 (interface) Battery compartment Keyboard Battery compartment s lid GENERAL TIPS The lock can be opened by using a code consisting of 7 digits or 7 letters. Each time you push a key on the keyboard, an

More information

falling edge Intro Computer Organization

falling edge Intro Computer Organization Clocks 1 A clock is a free-running signal with a cycle time. A clock may be either high or low, and alternates between the two states. The length of time the clock is high before changing states is its

More information

File Protection. Whitepaper

File Protection. Whitepaper Whitepaper Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Modes of operation... 2 Single-instance store... 3 Advantages of... 3 2. Backup considerations... 4 Exchange VM support... 4 Restore

More information

Lab 2 BGP route filtering and advanced features

Lab 2 BGP route filtering and advanced features ISP/IXP Networking Workshop Lab Lab 2 BGP route filtering and advanced features Objective: Using the network concepts of Lab 1, use various configuration methods on BGP peerings to demonstrate neighbour

More information

Reference Guide for Updates via the MARx User Interface

Reference Guide for Updates via the MARx User Interface /STEP /BY /STEP Reference Guide for Updates via the MARx User Interface Plan User with Update Role June 2011 MARx User Interface Reference Guide for Plan Update User Page 1 Introduction This document is

More information

If you require more information that is not included in this document, please contact us and we will be happy to provide you with further detail.

If you require more information that is not included in this document, please contact us and we will be happy to provide you with further detail. Summary This document is an introduction to how Neuxpower has designed and built NXPowerLite for File Servers to be a powerful technology, while respecting customer data and taking a safety-first approach

More information

GE Fanuc Automation CIMPLICITY HMI. Historical Data Analyzer. CIMPLICITY Monitoring and Control Products. Operation Manual

GE Fanuc Automation CIMPLICITY HMI. Historical Data Analyzer. CIMPLICITY Monitoring and Control Products. Operation Manual GE Fanuc Automation CIMPLICITY Monitoring and Control Products CIMPLICITY HMI Historical Data Analyzer Operation Manual GFK-1379C December 2000 Following is a list of documentation icons: GFL-005 Warning

More information

Page 2 of 13. The DegreeWorks Student Educational Planner allows students and advisors to create, view, and save course plans.

Page 2 of 13. The DegreeWorks Student Educational Planner allows students and advisors to create, view, and save course plans. Page 1 of 13 Contents Creating a Plan from Scratch... 2 1. Click on the Plans Tab... 2 2. Name and Activate the Plan... 2 3. Add a Term... 2 4. Add a Course to a Term... 3 5. Delete a Course from a Term...

More information

John M.Plunkett Virginia Power

John M.Plunkett Virginia Power USE OF BASE SAS AND SAS/FSP SOFTWARE IN THE DEVELOPMENT OF A TRACKING AND SCHEDULING SYSTEM FOR IN-HOUSE TRAINING John M.Plunkett Virginia Power ABSTRACT This paper reviews the development efforts used

More information

Chapter 1 - Overview of Works Features Account Spending Account Funding Spend Reconciliation Card Control...

Chapter 1 - Overview of Works Features Account Spending Account Funding Spend Reconciliation Card Control... Works User s Guide Works Table of Contents Chapter 1 - Overview of Works Features... 12 Account Spending...12 Account Funding...12 Spend Reconciliation...13 Card Control...13 Real-Time Reporting...13 About

More information

TiTiTo Manual. TiTiTo is a Tiny Timetabling Tool. Version 0.5 by Volker Dirr Preamble. Main Features.

TiTiTo Manual. TiTiTo is a Tiny Timetabling Tool. Version 0.5 by Volker Dirr   Preamble. Main Features. Preamble Main Features TiTiTo Manual Version 0.5 by Volker Dirr www.timetabling.de TiTiTo is a Tiny Timetabling Tool. TiTiTo is designed to support you with your daily work at school. It helps you to care

More information

Notes about visual Mark5 (vmk5) interface v. 2

Notes about visual Mark5 (vmk5) interface v. 2 Notes about visual Mark5 (vmk5) interface v. 2 Upgrades from previous 1 version Disks size: thanks to new rtime 1 command it is now possible to recover the proper bank size even if the Mark5 is busy. The

More information

The following illustrates what you will see when you log in to Home Access Center (HAC).

The following illustrates what you will see when you log in to Home Access Center (HAC). Instructions for Home Access Center The following illustrates what you will see when you log in to Home Access Center (HAC). Login Screen Here is where you will login using the username and password that

More information

With the growth of data, the reduction in of DBA staffing, tight budgets, and the business goal to be 24x7 it is becoming more important to automate

With the growth of data, the reduction in of DBA staffing, tight budgets, and the business goal to be 24x7 it is becoming more important to automate 1 With the growth of data, the reduction in of DBA staffing, tight budgets, and the business goal to be 24x7 it is becoming more important to automate as much Database Administration work as possible.

More information

North Dakota University System Campus Solutions Financial Aid Transfer Student Monitoring

North Dakota University System Campus Solutions Financial Aid Transfer Student Monitoring North Dakota University System Campus Solutions Financial Aid Transfer Student Monitoring Here s the process in a nutshell: 1. Create a batch file for NSLDS asking them to monitor the students on the file.

More information

Release Service Request YTD Balances in the PAR. Detail Design. Caroline Rider May 3, 2004

Release Service Request YTD Balances in the PAR. Detail Design. Caroline Rider May 3, 2004 Release 1571 Caroline Rider Enterprise IT Services Office of the President University of California Page 2 Introduction asks for the addition of year-to-date grosses balances, selected hours balances,

More information

oxigen system Installation of the bootloader application 1/ 22 oxigen bootloader

oxigen system Installation of the bootloader application 1/ 22 oxigen bootloader 1/ 22 The oxigen Bootloader application is the software program which allows the user to: 1. check and update the firmware of the oxigen devices; 2. check and update the ID number of the car chip, of the

More information

Aeries.net Student Information System Daily Attendance Setup & Procedures User Manual June 19, 2010

Aeries.net Student Information System Daily Attendance Setup & Procedures User Manual June 19, 2010 Aeries.net Student Information System Daily Attendance Setup & Procedures User Manual June 19, 2010 ATTENDANCE SETUP SCHOOL OPTIONS At the beginning of the school year it is vital that School Options,

More information

BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO

BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO UNIVERSITY OF CALIFORNIA BERKELEY DAVIS IRVINE LOS ANGELES MERCED RIVERSIDE SAN DIEGO SAN FRANCISCO SANTA BARBARA SANTA CRUZ OFFICE OF THE SENIOR VICE PRESIDENT BUSINESS AND FINANCE OFFICE OF THE PRESIDENT

More information

Virtual CD TS 1 Introduction... 3

Virtual CD TS 1 Introduction... 3 Table of Contents Table of Contents Virtual CD TS 1 Introduction... 3 Document Conventions...... 4 What Virtual CD TS Can Do for You...... 5 New Features in Version 10...... 6 Virtual CD TS Licensing......

More information

Handbook ASI-PRG-ADR. AS-Interface Addressing Device. Festo AG & Co de 0004a

Handbook ASI-PRG-ADR. AS-Interface Addressing Device. Festo AG & Co de 0004a Handbook ASI-PRG-ADR AS-Interface Addressing Device Festo AG & Co. 360 039 de 0004a AS-Interface is a registered Trademark of the AS-International Association We recognise a duty to make a contribution

More information

This system is to provide a central place for employees to be able to access their pay advice and T4s.

This system is to provide a central place for employees to be able to access their pay advice and T4s. Table of Contents Introduction... 1 Purpose... 1 Benefits... 1 Multi Browser Support... 2 Initial Access to epayadvice System... 2 Help Feature... 4 Viewing the Pay Advice or T4s... 4 View Pay Advice...

More information

Access Control Using Intrusion and File Policies

Access Control Using Intrusion and File Policies The following topics describe how to configure access control policies to use intrusion and file policies: Intrusions and Malware Inspection Overview, page 1 Access Control Traffic Handling, page 2 File

More information

IFRS KMA KNOWLEDGE MANAGEMENT APPLICATION INSTALLATION GUIDE

IFRS KMA KNOWLEDGE MANAGEMENT APPLICATION INSTALLATION GUIDE IFRS KMA KNOWLEDGE MANAGEMENT APPLICATION INSTALLATION GUIDE The KMA INSTALLATION GUIDE STEP 1. Download the installation file from the link in your email. When you click on the KMA link to begin the installation

More information

Scoreboard Operator s Instructions MPC Control

Scoreboard Operator s Instructions MPC Control Scoreboard Operator s Instructions MPC Control Horn Set Model Code 145 Baseball Time Out Timer Start Clear Options Yes Confirm Team at Bat Inning Time 7 8 9 No Cancel At Bat Ball Strike Out 4 5 6 Chronometer

More information

Exam4Tests. Latest exam questions & answers help you to pass IT exam test easily

Exam4Tests.   Latest exam questions & answers help you to pass IT exam test easily Exam4Tests http://www.exam4tests.com Latest exam questions & answers help you to pass IT exam test easily Exam : FM0-301 Title : Filemaker7 Developer essentials exam Vendors : FileMaker Version : DEMO

More information

Aeries.net Student Information System Period Attendance Setup & Procedures User Manual May 31, 2010

Aeries.net Student Information System Period Attendance Setup & Procedures User Manual May 31, 2010 Aeries.net Student Information System Period Attendance Setup & Procedures User Manual May 31, 2010 ATTENDANCE SETUP SCHOOL OPTIONS At the beginning of the school year it is vital that School Options,

More information

A.N.A.L.O.G. #15, January 1984 TRANSPORTING ATARI COMPUTER PROGRAMS TO THE ATARI by Claus Buchholz 6502 CPU 16K RAM ANTIC

A.N.A.L.O.G. #15, January 1984 TRANSPORTING ATARI COMPUTER PROGRAMS TO THE ATARI by Claus Buchholz 6502 CPU 16K RAM ANTIC A.N.A.L.O.G. #15, January 1984 TRANSPORTING ATARI COMPUTER PROGRAMS TO THE ATARI 5200 by Claus Buchholz Annotations by Dan Boris 4/2002 When Atari designed the 5200 "Supersystem" as a successor to the

More information

Access Control Using Intrusion and File Policies

Access Control Using Intrusion and File Policies The following topics describe how to configure access control policies to use intrusion and file policies: About Deep Inspection, page 1 Access Control Traffic Handling, page 2 File and Intrusion Inspection

More information

GE Fanuc Automation Europe. Computer Numerical Controls. I/O Link II. Connection Manual B-62714EN/04 TECHNOLOGY AND MORE

GE Fanuc Automation Europe. Computer Numerical Controls. I/O Link II. Connection Manual B-62714EN/04 TECHNOLOGY AND MORE GE Fanuc Automation Europe Computer Numerical Controls I/O Link II Connection Manual B-62714EN/04 TECHNOLOGY AND MORE No part of this manual may be reproduced in any form. All specifications and designs

More information

Recommended Design Techniques for ECE241 Project Franjo Plavec Department of Electrical and Computer Engineering University of Toronto

Recommended Design Techniques for ECE241 Project Franjo Plavec Department of Electrical and Computer Engineering University of Toronto Recommed Design Techniques for ECE241 Project Franjo Plavec Department of Electrical and Computer Engineering University of Toronto DISCLAIMER: The information contained in this document does NOT contain

More information

Operating instructions Addressing unit AC1144

Operating instructions Addressing unit AC1144 Operating instructions Addressing unit AC1144 UK 701447 / 04 02 / 2004 Contents Functions and features... 3 Safety instructions... 3 Introduction to the AS-interface version 2.1... 3 Structure of the addressing

More information

Blackboard s My Content Area Using your Private Central File Repository

Blackboard s My Content Area Using your Private Central File Repository University of Southern California Academic Information Services Blackboard s My Content Area Using your Private Central File Repository The My Content area in Blackboard acts as each instructor s private

More information

Manage Guest Accounts

Manage Guest Accounts Sponsor Portal Manage Accounts Page, on page 1 Edit Guest Accounts, on page 1 Resend Guest Passwords, on page 2 Extend Guest Account Durations, on page 3 Suspended and Expired Guest Accounts, on page 3

More information

File Archiving Whitepaper

File Archiving Whitepaper Whitepaper Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 requirements... 2 2. product overview... 3 features... 3 Advantages of BackupAssist... 4 limitations... 4 3. Backup considerations...

More information

Chapter. Managed Switch Software Advanced. Operations. In This Chapter...

Chapter. Managed Switch Software Advanced. Operations. In This Chapter... Managed Switch Software Advanced Operations Chapter 5 In This Chapter... Configuration Management...5 2 Restore Factory Defaults...5 4 Reset Switch........................................................5

More information

Teiid - Scalable Information Integration. Teiid Caching Guide 7.2

Teiid - Scalable Information Integration. Teiid Caching Guide 7.2 Teiid - Scalable Information Integration 1 Teiid Caching Guide 7.2 1. Overview... 1 2. Results Caching... 3 2.1. Support Summary... 3 2.2. User Interaction... 3 2.2.1. User Query Cache... 3 2.2.2. Procedure

More information

Test Plan RELEASE 1476 Addition of Foreign Address to UCRS File

Test Plan RELEASE 1476 Addition of Foreign Address to UCRS File Test Plan RELEASE 1476 Addition of Foreign Address to UCRS File March 10, 2003 Information Systems & Computing Office of the President University of California Testing Overview This test plan addresses

More information

Managing Alerts using the reconciliation tool Spine 2

Managing Alerts using the reconciliation tool Spine 2 Managing Alerts using the reconciliation tool Spine 2 The following process is intended to guide privacy officers through the steps of reconciling any Transaction and Messaging Services (TMS) Event Service

More information

Upgrading to Priority 16

Upgrading to Priority 16 Upgrading to Priority 16 Priority Software is pleased to announce the release of Priority Version 16. This upgrade will install all of the latest developments and fixes to Priority, based on the version

More information

Note: A migration from Archon to ArchivesSpace should not be run against an active production database.

Note: A migration from Archon to ArchivesSpace should not be run against an active production database. Migrating Data from Archon to ArchivesSpace Using the Migration Tool last updated December 21, 2017 These guidelines are for migrating data from Archon 3.21-rev3 to all ArchivesSpace 2.2.2 using the migration

More information

Request for Comments: 938 February 1985

Request for Comments: 938 February 1985 Network Working Group Request for Comments: 938 Trudy Miller ACC February 1985 Functional and Interface Specification STATUS OF THIS MEMO This RFC is being distributed to members of the DARPA research

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-CBCP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

File Protection Whitepaper

File Protection Whitepaper File Protection Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Modes of operation... 2 Single-instance store... 3 Advantages of File Protection over traditional file copy methods... 3

More information

Prime Fulfillment Process Diagram - Protection Management. Preconfiguration (incl. Discovery) Check Link Perf. Protection Management

Prime Fulfillment Process Diagram - Protection Management. Preconfiguration (incl. Discovery) Check Link Perf. Protection Management CHAPTER 40 This chapter describes the process of creating and managing the protection of network elements using automated protection tools. See Chapter 38, Basic Tunnel Management for a description of

More information

NetIQ Advanced Authentication Framework - Client. User's Guide. Version 5.1.0

NetIQ Advanced Authentication Framework - Client. User's Guide. Version 5.1.0 NetIQ Advanced Authentication Framework - Client User's Guide Version 5.1.0 Table of Contents 1 Table of Contents 2 Introduction 4 About This Document 4 NetIQ Advanced Authentication Framework Overview

More information

Control Structures. Code can be purely arithmetic assignments. At some point we will need some kind of control or decision making process to occur

Control Structures. Code can be purely arithmetic assignments. At some point we will need some kind of control or decision making process to occur Control Structures Code can be purely arithmetic assignments At some point we will need some kind of control or decision making process to occur C uses the if keyword as part of it s control structure

More information

Message Networking 5.2 Maintenance print guide

Message Networking 5.2 Maintenance print guide Page 1 of 304 Maintenance print guide This print guide is a collection of system topics provided in an easy-to-print format for your convenience. Note: The links shown in this document do not work online,

More information

Test Plan RELEASE 1695 Fidelity ID Assignment for Employees With Zero Social Security Numbers

Test Plan RELEASE 1695 Fidelity ID Assignment for Employees With Zero Social Security Numbers Test Plan RELEASE 1695 March 7, 2006-11:00 AM Application Technology Services Information Resources and Communications Office of the President University of California Table of Contents TESTING OVERVIEW...

More information

RxAXIS EPCS Tutorial Quick Reference Guide

RxAXIS EPCS Tutorial Quick Reference Guide Lesson Title Introduction: RxAXIS EPCS The DEA s rule, Electronic Prescriptions for Controlled Substances revises the DEA s regulations to provide practitioners with the option of writing prescription

More information

Copyright SolarWinds. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified, decompiled,

Copyright SolarWinds. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified, decompiled, APM Migration Introduction... 3 General Requirements... 3 Database Requirements... 3 Stopping APM Services... 4 Creating and Restoring Orion Database Backups... 4 Creating a Database Backup File with Database

More information

Blackboard Essentials

Blackboard Essentials Blackboard Essentials Who Can Help? Assistance via email: bbadmin@gvsu.edu Assistance via telephone: 616-331-9751 days Blackboard Help Documents on the web: http://www.gvsu.edu/elearn/help You will find

More information

FOR QDV V7 and Quick Devis V6

FOR QDV V7 and Quick Devis V6 TCP/IP TOKEN SERVER V5.04 FOR QDV V7 and Quick Devis V6 QUOTALYS LTD 2011-2017 All Rights Reserved Page 1 Table of Contents COPYRIGHT... 4 WHAT IS THE LICENSE SERVER INTENDED FOR?... 5 LICENCE... 6 REQUIRED

More information

Release (b) Modifications TEST INSTRUCTIONS. Document Number TST1100. December 5, Susan Isaacs

Release (b) Modifications TEST INSTRUCTIONS. Document Number TST1100. December 5, Susan Isaacs Release 1100 TEST INSTRUCTIONS Document Number TST1100 December 5, 1996 Susan Isaacs Information Systems & Computing Office of the President University of California Page 1 TEST PLAN: The following test

More information

Department of Electrical Engineering and Computer Sciences Fall 2016 Instructors: Randy Katz, Bernhard Boser

Department of Electrical Engineering and Computer Sciences Fall 2016 Instructors: Randy Katz, Bernhard Boser University of California, Berkeley College of Engineering Department of Electrical Engineering and Computer Sciences Fall 2016 Instructors: Randy Katz, Bernhard Boser 2016-12-16 L CS61C FINAL J After the

More information

epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS twitter.com/encorebusiness.com

epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS   twitter.com/encorebusiness.com epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS www.encorebusiness.com twitter.com/encorebusiness.com encore@encorebusiness.com Copyright Build Notes copyright 2018 Encore Business Solutions, Inc.

More information

PPS Requirements. Performance Evaluation Code

PPS Requirements. Performance Evaluation Code PPS Requirements Performance Evaluation Code Final March 14, 2002 Revised May 2, 2002 Information Systems & Computing Office of the President University of California Table of Contents Background... 3

More information

Perceptive Intelligent Capture for Transcripts

Perceptive Intelligent Capture for Transcripts Perceptive Intelligent Capture for Transcripts Release Notes Version: 2.1.x Written by: Product Knowledge, R&D Date: April 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

24 - TEAMWORK... 1 HOW DOES MAXQDA SUPPORT TEAMWORK?... 1 TRANSFER A MAXQDA PROJECT TO OTHER TEAM MEMBERS... 2

24 - TEAMWORK... 1 HOW DOES MAXQDA SUPPORT TEAMWORK?... 1 TRANSFER A MAXQDA PROJECT TO OTHER TEAM MEMBERS... 2 24 - Teamwork Contents 24 - TEAMWORK... 1 HOW DOES MAXQDA SUPPORT TEAMWORK?... 1 TRANSFER A MAXQDA PROJECT TO OTHER TEAM MEMBERS... 2 Sharing projects that include external files... 3 TRANSFER CODED SEGMENTS,

More information

Start Up and Shutdown Procedures (Unix)

Start Up and Shutdown Procedures (Unix) Start Up and Shutdown Procedures (Unix) Start Up On Main Console 1. Press the Server main power button ON 2. The system will automatically go through the start-up procedures, which will be displayed on

More information

How To Trigger a Relay Group From an Input

How To Trigger a Relay Group From an Input In GuardPointPro it is possible to fire a group of relays across multiple controllers from a signal to a single input This guide explains the steps: Grouping the outputs [Relays] 1. Go to the menu Event

More information

Bulk Registration File Specifications

Bulk Registration File Specifications Bulk Registration File Specifications 2017-18 SCHOOL YEAR Summary of Changes Added new errors for Student ID and SSN Preparing Files for Upload (Option 1) Follow these tips and the field-level specifications

More information

GoGo Board Tethered Mode Protocol Arnan (Roger) Sipitakiat Updated: July 8, 2011

GoGo Board Tethered Mode Protocol Arnan (Roger) Sipitakiat Updated: July 8, 2011 General Information GoGo Board Tethered Mode Protocol Arnan (Roger) Sipitakiat Updated: July 8, 2011 http://www.gogoboard.org This document describes only the serial protocol of the tethered mode. The

More information

Teradactyl LLC Accessibility Conformance Report VPAT Version 2.2 July 2018

Teradactyl LLC Accessibility Conformance Report VPAT Version 2.2 July 2018 Teradactyl LLC Accessibility Conformance Report VPAT Version 2.2 July 2018 Name of Product/Version: True incremental Backup System Pterostor Edition Product Description: Backup Software Date: Created August

More information

Instruction Sheet WPC 2000 Option 1

Instruction Sheet WPC 2000 Option 1 Instruction Sheet WPC 2000 Option 1 This document shows you how to install, wire, program, monitor, and troubleshoot WPC 2000 Option 1. Option 1 is compatible with WPC 2000 systems running WPC 2000 version

More information

Transfer Student Monitoring Batch Process. Set Up

Transfer Student Monitoring Batch Process. Set Up Transfer Student Monitoring Batch Process 1 Process Overview: 1. Create a batch file for NSLDS asking them to monitor the students on the file. 2. If there are changes, NSLDS sends an alert file as well

More information

Confidea Wired Conference System

Confidea Wired Conference System Confidea Wired Conference System Confidea Wired System Table of Contents Table of Contents... 2 Section 1 General Information... 3 1. Copyright Statement... 3 1.1. Communication... 4 1.2. Commands... 4

More information

Filing the IRS Form 990 N

Filing the IRS Form 990 N Filing the IRS Form 990 N First check the information that the IRS should have on file for your State/Chapter (available as a link on the Filing the 990 N on the AFA website at Field Resources ). If your

More information

Webforms - Frequently Asked Questions

Webforms - Frequently Asked Questions Webforms - Frequently Asked Questions 1. What is my username? 2. How do I reprint an existing Delivery Docket? 3. H ow do I reset my password? 4. H ow do I change my password? 5. H ow do I change the email

More information