Service Request PPI730 Transactions by Retirement Code. Technical Specification. Created on: October 09, Last Modified on: 11/18/2017

Size: px
Start display at page:

Download "Service Request PPI730 Transactions by Retirement Code. Technical Specification. Created on: October 09, Last Modified on: 11/18/2017"

Transcription

1 Service Request PPI730 Transactions by Retirement Code Created on: October 09, 2017 Last Modified on: 11/18/2017 Prepared by Baskar Chitravel Information Technology Services Office of the President University of California

2 Version History Version # Date Revised By Reason for Change /31/2017 Baskar Chitravel Initial version /18/2017 Baskar Chitravel Added changes to PPI750 Page 1

3 Table of Contents Version History Introduction Service Request Overview of System Modifications Design Considerations Assumptions and Dependencies Testing Considerations Mainframe Design UCRS Interface Changes COBOL Program PPI730 Transactions by Retirement Code Unit Testing Requirements Attachment A EDB Selection Attachment B PAR Employees Selection Attachment C Standard Mode PPI730 Run Attachment D PERS File Check Attachment E Verify Treasure File Run Page 2

4 1 Introduction Implementation of Retirement Choice has led to a high volume of corrections and adjustments on the UCRS interface. Most of the volume consists of adjustments that move contributions and service credit from one retirement code to another. Service Request outlines the requirements for the PPI730 UCRS Transaction File changes to ensure corrections and adjustments made in PPS are presented on the MEM730 file in a manner that can be processed by UCRS Service Request SR requests the following modifications in PPS: 1. Currently, program PPI730 applies the most recent retirement code of an employee to all the UCRS transactions produced for that employee. Change the PPI730 program logic to apply the employee retirement code retrieved from the current PAR to the associated UCRS transactions produced from that PAR. 2. Each time after a new PAR is read, as of now, PPI730 has differing ways of collecting year-to-date 403(b) and 457(b) amounts (inputting PAR employee ID: XPAR-ID-NO), as below: 403(b) YTD amounts are collected by calling routine PPPBLS. 457(b) YTD amounts are collected by calling routine PPDSAUTL. In order to ensure the correct 403(b) YTD amounts are included in each transaction record, pick up the 403(b) YTD amounts from XDSA array (rather than from PPPBLS) in the same way as the 457(b) amounts are handled. Page 3

5 2 Overview of System Modifications Following are the brief description of the PPI730 program changes to avoid adjustments that move contributions and service credit from one retirement code to another: In the PAR processing logic, accumulate UCRS T segment record, if the incoming new PAR satisfies the following criteria: 1) The incoming PAR is the first PAR of the first employee OR 2) The incoming PAR Employee ID is the same as the previous PAR Employee ID AND The incoming PAR Primary Control is not the same as the previous PAR Primary Control. Change the logic to pick up 403(b) amounts the same way as the 457(b) amounts are handled. Page 4

6 3 Design Considerations 3.1 Assumptions and Dependencies Following are the assumptions made, while designing the PPS changes for the PPI730 Transactions by Retirement Code: A. The solution suggested by Caroline Rider as proof of concept in June 2017 will be used to address the issue of high volume of corrections and adjustments on the UCRS interface after the implementation of Retirement Choice. B. If the employee has multiple input PAR Records in a month, each PAR has unique PAR Primary Gross Control Number. C. No change is needed to the layout of any of the output files produced by PPI730, including the MEM730 file, which will be processing individual PAR records produced for the employee in a month and passing these multiple Employee Retirement Records to the UCRS system. D. Changes impact only UCRS Records and Reporting. E. No CICS changes needed. F. No change needed in UCRS system to process the multiple corrections and adjustments, which are produced in PPS for an employee on the MEM730 file. Page 5

7 4 Testing Considerations o It is recommended to start the testing with the following database data: EDB Complete all the current Monthly and Bi-Weekly computes for the testing month. Also, complete the Monthly Maintenance to begin next month. PAR Load all the Monthly and Bi-Weekly PAR data produced during the current month. CTL Current Control Table data o Merged PAR Sequential File with all the Monthly and Bi-Weekly PAR data produced during the current month must be used to input into the PPI730 program run. o Only UCRS Retirement Interface file produced during the Standard Run should produce data changes. o In the UCRS file produced after the changes, make sure the following: Adjustments that move contributions and service credit from one retirement code to another are applied properly to all transactions. YTD 403(B) Contribution Amount is now retrieved from the XDSA array of the employee, rather than from the PPPBLS program call, make sure that the 403B Contribution Amount (PPPDBL: Y-Balance of GTN 008) is populated in all the fixed data of the UCRS records produced for the employee. o PPI730 changes should not affect the STIP file produced during the Treasurer Run mode of PPI730 program. o Extensive Unit Testing with the base environment is required. o Comprehensive QA and UAT testing setup and support are required. Page 6

8 5 Mainframe Design 5.1 UCRS Interface Changes COBOL Program PPI730 Using the earnings and deductions from the PAR file and the EDB extract, in the standard run mode, program PPI730 creates the UCRS, PERS, SCERS, FCSRS, and OCERS Retirement Interface files. In addition, in the treasurer run mode, PPI730 creates STIP Treasures File on a per compute basis. The details of the files produced by PPI730 in each mode of run is listed below: STANDARD RUN (Monthly PAR): Retirement Interface files produced in the Standard Run are the following: PERSFILE FCSRS OCERS SCERS UCRS TREASURER RUN (Per Cycle PAR): STIP Page 7

9 The changes to PPI730 to satisfy the SR requirements are the following: MISCELLANEOUS WORKING STORAGE Declare a temporary variable Previous Primary Control UCRS-PREV-PRI-GRS-CTL to store the PAR Primary Control XPAR-PRI-GRS-CTL of the processing PAR, which will be used for breaking logic. 10 UCRS-PREV-PRI-GRS-CTL PIC S9(3) VALUE READ-AND-PROCESS-NEW-REC SECTION Currently, in the PAR processing logic in READ-AND-PROCESS-NEW-REC section, accumulation of the UCRS T segment record by calling paragraph DEDUCTIONS-FOR-T-PLANS happens, only if the incoming new PAR satisties the following: The incoming PAR is the first PAR of the first employee OR The incoming PAR Employee ID is the same as the previous PAR Employee ID. Page 8

10 The 2nd condition above will be changed to the condition below: The incoming PAR Employee ID is the same as the previous PAR Employee ID AND The incoming PAR Primary Control is the same as the previous PAR Primary Control PERFORM PROCESS-DEDUCTIONS XPAR-NO-DED-REF TIMES * ***** For consecutive PARs of same employee, process PAR T Plans ***** deductions, only if their XPAR-PRI-GRS-CTL also match. * IF (XPAR-ID-NO = UCRS-PREV-EMP-NO AND XPAR-PRI-GRS-CTL = UCRS-PREV-PRI-GRS-CTL) OR UCRS-PREV-EMP-NO = ZERO MOVE ZERO TO T-DED-I PERFORM DEDUCTIONS-FOR-T-PLANS XPAR-NO-DED-REF TIMES END-IF Page 9

11 33160-UCRS-SET-UP-FIXED-PORT SECTION Currently, the accumulated UCRS record is written (33170-WRITE-UCRS-REC), clear out the accumulated records (33050-CLEAR-T-PLAN-ARRAY), and start the fresh accumulation of the UCRS T segment record by calling paragraph DEDUCTIONS-FOR-T-PLANS happens, only if the incoming new PAR satisties the following: The incoming PAR is not the first PAR of the first employee AND The incoming PAR Employee ID is not the same as the previous PAR Employee ID. The 2nd condition above will be changed to the condition below: The incoming PAR Employee ID is not the same as the previous PAR Employee ID. OR The incoming PAR Primary Control is not the same as the previous PAR Primary Control UCRS-SET-UP-FIXED-PORT SECTION ENTRY. * ***** For consecutive PARs of same employee, skip processing of T ***** plans deductions, only if their XPAR-PRI-GRS-CTL also match * IF XPAR-ID-NO = UCRS-PREV-EMP-NO AND XPAR-PRI-GRS-CTL = UCRS-PREV-PRI-GRS-CTL IF UCRS-RETIREMENT-CODE = 'L' OR = 'V' GO TO ESTAB-RETR-CODE ELSE GO TO EXIT END-IF ELSE Page 10

12 Add code to save the PAR Primary Control XPAR-PRI-GRS-CTL of the processing PAR into the temporary variable Previous Primary Control UCRS-PREV-PRI-GRS-CTL, which will be used for comparison logic after reading the next PAR record. MOVE XPAR-ID-NO TO UCRS-PREV-EMP-NO WS-EMPLOYEE-ID. * ***** Save XPAR-PRI-GRS-CTL of the current PAR for matching with ***** consecutive PARs of same employee (for T plans dedns logic). * MOVE XPAR-PRI-GRS-CTL TO UCRS-PREV-PRI-GRS-CTL. * PERFORM 9800-SELECT-PCM. Change the logic to pick up 403(b) amounts the same way the 457(b) amounts are handled (from XDSA, rather than from PPPBLS), which is necessary to ensure that the correct amounts are included in each record. MOVE XDSA-BALAMT (YTD-457B, XDSA-YTD-P) TO UCRS-457B-YTD. * ***** If PPPBLS 403B Contribution Amount does not match with XDSA ***** 403B YTD Contribution Amount, move XDSA YTD Amt to UCRS. * IF XBLS-403B-YTD-CNTRB = XDSA-BALAMT (YTD-403B, XDSA-YTD-P) CONTINUE ELSE MOVE XDSA-BALAMT (YTD-403B, XDSA-YTD-P) TO UCRS-403B-YTD-CNTRB END-IF. * MOVE ZERO TO NUMBER-OF-APPTS-SELECTED. Page 11

13 PPI750 Using the UCRS file produced in PPI730 and Specification Card file input, program PPI750 creates the report PPI7502 UCRS Contribution List. In addition, it produces an Error Report, if there are any issues while processing the UCRS file. The details of the modes that PPI750 can run is listed below: SERIAL RUN: In this mode of program run, all the UCRS Records are read and processed sequentially. RANDOM RUN: In this mode, only random employees that are inputted in the input specification card is read and processed sequentially. RANGES RUN: Range of Employee ID is the input for this mode and the program run processes all the UCRS Records for these employees in the input range. Following modifications are done for Program PPI750: In order to avoid SOC7 ABEND due to data overflow in the Save Plan Array of Contribution and Tax Segment, the Save Plan Array size is increased from 99 to 200. In addition to the existing Employee ID, Retirement Code is also added to the logic that breaks the PPI7502 report display. Fixed a wrong Pay Year move statement, while sorting the Contribution and Tax Segment Save Plan Array, before displaying them in the PPI7502 report. Page 12

14 6 PPI730 Transactions by Retirement Code Unit Testing Requirements For testing the UCRS File changes, select a test region and perform the following steps: Load the needed data: Load the EDB after Monthly Maintenance. Load the recent CTL Database. Load the base PAR Files into the PAR tables. Using the RUN465 JCL, load the July Merged PAR file, which will be used for our test purposes, into the PAR tables. Query the database for test employees: Employees should be found with YTD Balances in PPPDBL table for GTN 008. Attachment A has the SQL to get the employees with non-zero GTN_AMT for GTN_IND GTN_NUMBER = '008. = 'Y' and Page 13

15 In order to verify the 403(b) amount in UCRS Detail record, which is taken from XDSA rather than from PPPBLS, choose few employees from the query, as below: EMPLOYEE_ID GTN_AMT Attachment B explains how to get employees with more than one PAR with a different Retirement Code produced during the current month. Using this SQL as a guide, find employees with more than one PAR with unique Retirement Code produced with a Pay Period End Date in the month of July Choose few test employees from the output produced using this PAR query result: EMPLOYEE_ID RECORD_TYPE PRI_GROSS_CTL RET_PLAN_CODE U U U U W Page 14

16 Also, choose few employees with the same Retirement Code: EMPLOYEE_ID RECORD_TYPE PRI_GROSS_CTL RET_PLAN_CODE U U U U U U U For each Employee ID, SQL Query in the JCL RUNQGTNO has queries to the PAR Deduction / Reduction / Contribution table (PPPDRC) to accumulate the contribution amounts for each plan (except plan 21, which is calculated using retirement routines). Submit the query and the results can be used against checking the Contribution Segment of the UCRS Record produced before the PPI730 change. For each PAR (identified by unique Primary Gross Control) of the Employee ID, SQL Query in the JCL RUNQGTNN has queries to the PAR Deduction / Reduction / Contribution table (PPPDRC) to accumulate the contribution amounts for each plan (except plan 21, which is calculated using retirement routines). Submit the query and the results can be used against checking the Contribution Segment of the UCRS Record produced after the PPI730 change. Page 15

17 Run unmodified PPI730: Submit the JCL RUNI730, which runs PPI730 in the Standard Mode. Verify the following: 1. All the files, except the Treasurers file, are produced. In base, only PERS and UCRS files have records populated. 2. In the UCRS file, using the UCRS Detail Record Layout in PAYBCC.TEST.COPYLIB(UCRSDSCT), verify that the 403(b) amounts for the test employees above match the expected amount. The snapshots for the 403(b) amount for the test employees are in the Attachment C. 3. In the UCRS file, no separate UCRS Records produced for the test employees selected by the PAR lookup above. So, for the verification of UCRS Record per Retirement Code logic, for the employees chosen from the Attachment B query, verify that only one UCRS Record produced eventhough multiple PAR records are found. The snapshots for the UCRS Detail Recors for the test employees are in the Attachment C. Submit the JCL RUNI730T, which runs PPI730 in the Treasurer Mode. Verify that only the Treasurers file is produced in this run. Page 16

18 Run modified PPI730: Install the changed PPI730 batch program into the test region using the installation instructions provided with the release. Change the RUNI730 and RUNI730T JCLs so that it can point to the modified version of the PPI730 program. Also, rename all the files produced so that they can be compared against the unmodified run files. Submit the JCL RUNI730, which runs PPI730 in the Standard Mode. Verify the following: 1. All the files, except the Treasurers file, are produced. In base, only PERS and UCRS files have records populated. 2. In the PERS File, only label header record has the changes from before and after run. Use Attachment D for PERS File Check details. 3. In the UCRS file, using the UCRS Detail Record Layout in PAYBCC.TEST.COPYLIB(UCRSDSCT), verify that the 403(b) amounts for the test employees above match the expected amount. The snapshots for the 403(b) amount for the test employees are in the Attachment C. Page 17

19 3. In the UCRS file, no separate UCRS Records produced for the test employees selected by the PAR lookup above. So, for the verification of UCRS Record per Retirement Code logic, for the employees chosen from the Attachment B query, verify that only one UCRS Record produced eventhough multiple PAR records are found. The snapshots for the UCRS Detail Recors for the test employees are in the Attachment C. 4. Verify that the file UCRS CONTROL RECORD REPORT (DD GRPA1) produced in both the production and changed version should match, except Covered Gross has a difference of 3, due to the Retirement Code change for employee Submit the JCL RUNI730T, which runs PPI730 in the Treasurer Mode. Verify that only the Treasurers file is produced in this run. Verify that the file UCRS CONTROL FOR TREASURERS STIP (DD GRPA1) produced in both the production and changed version should match, except Covered Gross has a difference of 3, due to the Retirement Code change for employee Also, the STIP file (DD TFILE) produced during the Treasurer Run mode from both the runs of PPI730 program should match as well (Attachment E Verify Treasure File Run). Page 18

20 Attachment A EDB Selection Select Test Employees with 403(B) YTD Amounts From the EDB, select few employees with non-zero 403(b) Year-to-date amount. The SQL to find employees with 403(b) YTD amount is below: Query (RUNQDBL): SELECT EMPLOYEE_ID, GTN_AMT FROM PBQDA.PPPDBL WHERE GTN_IND = 'Y' AND GTN_NUMBER = '008' AND GTN_AMT > 0; Result: EMPLOYEE_ID GTN_AMT Page 19

21 Page 20

22 Attachment B PAR Employees Selection Select PAR Test Employees Select few employees with more than one PAR with a different Retirement Code produced during the current month. The SQL to find employees with more than one PAR with unique Retirement Code produced with a Pay Period End Date in the month of July 2017 is below: Query (RUNQEUD): SELECT EMPLOYEE_ID, RECORD_TYPE, PRI_GROSS_CTL, RET_PLAN_CODE FROM PBQDA.PPPEUD A WHERE PAY_CYCLE_END_DATE >= '07/01/2017' AND PAY_CYCLE_END_DATE <= '07/31/2017' AND A.EMPLOYEE_ID IN (SELECT B.EMPLOYEE_ID FROM PBQDA.PPPEUD B WHERE PAY_CYCLE_END_DATE >= '07/01/2017' AND PAY_CYCLE_END_DATE <= '07/31/2017' AND A.EMPLOYEE_ID = B.EMPLOYEE_ID AND A.RET_PLAN_CODE <> B.RET_PLAN_CODE) ORDER BY EMPLOYEE_ID; Result: EMPLOYEE_ID RECORD_TYPE PRI_GROSS_CTL RET_PLAN_CODE U U U U U U U U U N H H H N U U U U U Page 21

23 U U U U U N U U U U U U U U U H H U U N U N U U U U U U U U U U N U U N U U W W U U H Page 22

24 Attachment C Standard Mode PPI730 Run Verification of 403(b) Amount From the Attachment A query for the 403(b) amounts, choose few employees with their expected 403(b) amounts, as below: EMPLOYEE_ID GTN_AMT Verify that the 403(b) amounts from the production run (populated using PPPBLS) match with the changed PPI730 run (fetched from the XDSA Array), as below: Employee ID: GTN Amount: Before: Page 23

25 After: Employee ID: GTN Amount: Before: After: Page 24

26 Employee ID: GTN Amount: Before: After: Employee ID: GTN Amount: Before: After: Page 25

27 Employee ID: GTN Amount: Before: After: Page 26

28 Verification of UCRS Record per Retirement Code From the Attachment B query, which contains employees with more than one PAR with a different Retirement Code produced during the current month, choose a test employee, as below: EMPLOYEE_ID RECORD_TYPE PRI_GROSS_CTL RET_PLAN_CODE U U W In the UCRS record, for the above employee, verify that only one UCRS Record produced eventhough multiple PAR records are found in the production run, as below: Before: After: After the PPI730 change, each PAR produces an UCRS Record and so verify that total of 3 UCRS Records are produced for the test employee, as below: Page 27

29 Employee ID: Total Number of Detail Records: 11 For the test employee , Total of 11 Detail Records produced, out of which 3 are Service Credit Segment, 3 are Contribution Segment, and 5 are Tax Segment, as per the statistics below: Before: #Service Records: 3 Page 28

30 After: After the PPI730 change, 3 UCRS Recors are produced. verify that each UCRS Record has 1 Service Record and the details match the base version, as below: Page 29

31 Page 30

32 Before: #Contribution Records: 3 For the production run, SQL query RUNQGTNO is developed to fetch the Total Contribution Amounts for all the Plan Codes except Plan 21, using the PPPDRC PAR Deduction/Reduction/Contribution table. Verify the below contribution amount for each plan, other than 21, with the SQL Query Result of the RUNQGTNO Query. After: For the changed run, SQL query RUNQGTNN is developed to fetch the Total Contribution Amounts for all the Plan Codes except Plan 21, using the PPPDRC PAR Deduction/Reduction/Contribution table. Verify the below contribution amount for each plan, other than 21, with the SQL Query Result of the RUNQGTNN Query. For Plan 21, make sure that Total Plan 21 amount below is equal to the production run amount above of Employee: UCRS Record# 1 #Contribution Records: 1 Page 31

33 Employee: UCRS Record# 2 #Contribution Records: 2 Employee: UCRS Record# 3 #Contribution Records: 1 Page 32

34 Before: #Tax Records: 5 For the production run, SQL query RUNQTSPO is developed to fetch the Tax Segment Monthly Amounts for the Plan Codes 02 (Parking), 03 (Transit/Vanpool), and 04 (Health/Dental/Vision), using the PPPDRC (PAR Deduction / Reduction / Contribution) table. Verify the below Tax Segment amount for the 02, 03, and 04 plans, with the SQL Query Result of the RUNQTSPO Query. Also, SQL query RUNQTS01 is developed to fetch the Tax Segment YTD Amounts, from the EDB tables PPPPAY and PPPPCM, for the following Plan Codes: Plan Code Description (Current Year) YTD Total Gross (Prior Year) YTD Total Gross (Current Year) YTD FWT Gross (Prior Year) YTD FWT Gross Verify the below Tax Segment amount for the 00 and 01 plans, from the SQL Query Result of the RUNQTS01 Query. After: For the changed run, SQL query RUNQTSPN is developed to fetch the Tax Segment Monthly Amounts for the Plan Codes 02 (Parking), 03 (Transit/Vanpool), and 04 (Health/Dental/Vision), using the PPPDRC (PAR Deduction / Reduction / Contribution) table. Verify the below Tax Segment amount for the 02, 03, and 04 plans, with the SQL Query Result of the RUNQTSPN Query. Verify the below Tax Segment amount for the 00 and 01 plans, which is repeated in all the 3 UCRS Records for the employee , from the SQL Query Result of the RUNQTS01 Query. Page 33

35 Employee: UCRS Record# 1 #Tax Segment Records: 4 Employee: UCRS Record# 2 #Tax Segment Records: 5 Employee: UCRS Record# 3 #Tax Segment Records: 4 Page 34

36 The UCRS Detail Record details for more Test Employees, using before run, are below: These UCRS records have been matched against the changed program run as above for employee Employee ID: Total Number of Detail Records: 7 Before: #Service Records: 2 After: After the PPI730 change, 2 UCRS Records are produced and verify that each UCRS Record has 1 Service Record and the details match the base version (above). Page 35

37 Before: #Contribution Record: 1 After: Verify that the total contribution amount is for plan 95 matches, as above, and the split of amounts is from the SQL Query Result of the RUNQGTNN Query. EMPLOYEE_ID PRI_GROSS_CTL PLAN 95 3_ _ Before: #Tax Records: 4 After: Verify the below Tax Segment amount for the 00 and 01 plans, which is repeated in all the 2 UCRS Records for the employee , from the SQL Query Result of the RUNQTS01 Query EMPLOYEE_ID PLAN 00 (2017 YTD GRS) PLAN 00 (2016 YTD GRS) PLAN 01 (2017 FWT GRS) PLAN 01 (2016 FWT GRS) _ Page 36

38 Employee ID: Total Number of Detail Records: 15 Before: #Service Records: 3 After: After the PPI730 change, 3 UCRS Records are produced and verify that each UCRS Record has 1 Service Record and the details match the base version (above). Before: #Contribution Records: 7 Page 37

39 After: Verify the contribution amounts for each plan, with the SQL Query Result of the RUNQGTNN Query (plan 21 is split into 3 times ; which is total). EMPLOYEE_ID PRI_GROSS_CTL PLAN _ _ _ EMPLOYEE_ID PRI_GROSS_CTL PLAN 18 3_ EMPLOYEE_ID PRI_GROSS_CTL PLAN 29 3_ _ EMPLOYEE_ID PRI_GROSS_CTL PLAN 30 3_ EMPLOYEE_ID PRI_GROSS_CTL PLAN 93 46_ _ EMPLOYEE_ID PRI_GROSS_CTL PLAN 99 25_ _ Page 38

40 Before: #Tax Records: 5 After: Verify the below Tax Segment amount for the 00 and 01 plans, which is repeated in all the 3 UCRS Records for the employee , from the SQL Query Result of the RUNQTS01 Query EMPLOYEE_ID PLAN 00 (2017 YTD GRS) PLAN 00 (2016 YTD GRS) PLAN 01 (2017 FWT GRS) PLAN 01 (2016 FWT GRS) _ Verify that the split of the Tax Segment amount for the 04 plan, with the SQL Query Result of the RUNQTSPN Query. EMPLOYEE_ID PRI_GROSS_CTL T_PLAN 04 52_ Page 39

41 Attachment D PERS File Check Testing of PERS File Compare the PERS File produced in the Before Change run and After Change run. For the layout, use the PERS LABEL Record copybook in PAYBCC.TEST.COPYLIB(PERSLABL). In the PERS File, all the employee records should match for both the PERS Files produced during before and after run. However, it has the difference only in label creation date, as below: OLD PERS File: NEW PERS File: Page 40

42 Attachment E Verify Treasure File Run Testing of PPI730 in the Treasure File Run Compare the Treasury (TFILE) File produced in the Before Change run and After Change run. In the Treasury File, all the records should match for both the TFILE Files produced during before and after run. Before: After: Page 41

43 The file UCRS CONTROL FOR TREASURERS STIP (DD GRPA1) produced in both the production and changed version should match, except the Covered Gross Amount has a difference of 3, due to the Retirement Code change for employee , as below: Before: After: Page 42

Release 1694 Service Request ERS Interface Program Detail Design Revised By:

Release 1694 Service Request ERS Interface Program Detail Design Revised By: Release 1694 ERS Interface Program Detail Design Adam Cohen September 28, 2005 Revised By: Baskar Chitravel Application Technology Services Information Resources & Communications Office of the President

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 W-2 Changes. Technical Specification. Created on: 10/02/2014. Last Modified on: 03/12/2015. Prepared by Baskar Chitravel

Service Request W-2 Changes. Technical Specification. Created on: 10/02/2014. Last Modified on: 03/12/2015. Prepared by Baskar Chitravel Service Request 100759 2014 W-2 Changes Created on: 10/02/2014 Last Modified on: 03/12/2015 Prepared by Baskar Chitravel Information Technology Services Office of the President University of California

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 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

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

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

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

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

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

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 (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

Service Request PPS Changes to correct errors in California State DE9 data for certain Rush Checks Technical Specification for Phase 2

Service Request PPS Changes to correct errors in California State DE9 data for certain Rush Checks Technical Specification for Phase 2 Service Request 100434 PPS Changes to correct errors in California State DE9 data for certain Rush Checks for Phase 2 Prepared by Peter Parker Information Resources & Communications Office of the President

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

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee Financial Reporting Using Microsoft Excel Presented By: Jim Lee Table of Contents Financial Reporting Overview... 4 Reporting Periods... 4 Microsoft Excel... 4 SedonaOffice General Ledger Structure...

More information

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

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

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

ACE Write-Up to Creative Solutions Accounting Conversion Guide

ACE Write-Up to Creative Solutions Accounting Conversion Guide ACE Write-Up to Creative Solutions Accounting Conversion Guide The ACE-CSA Conversion Wizard is provided to convert your client data from ACE Write-Up Version 4.xx and above into the Write-Up Solution

More information

VIP ESSENTIALS & CLASSIC EMP501 RECONCILIATION AND VALIDATION REPORT

VIP ESSENTIALS & CLASSIC EMP501 RECONCILIATION AND VALIDATION REPORT VIP ESSENTIALS & CLASSIC EMP501 RECONCILIATION AND VALIDATION REPORT History Reports In order to simplify the reconciliation process, two new History Reports have been created: EMP501 Reconciliation; and

More information

Employee Online Overview.

Employee Online Overview. Employee Online Overview https://employeeonline.puyallup.k12.wa.us Employee Online Homepage You will find the site map running down the left side of Employee Online, as shown below: Message Board The Welcome

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

efinanceplus Payroll Procedures Revised: 07/23/15

efinanceplus Payroll Procedures Revised: 07/23/15 efinanceplus Payroll Procedures Revised: 07/23/15 1. Things to do before setting up and loading timecards (this is the table that holds all the pay information for processing payroll for all staff). a.

More information

JCL JOB CONTROL LANGUAGE

JCL JOB CONTROL LANGUAGE Mainframe Concepts:- What is Mainframe Difference between Open source Applications and Mainframe Application Where do we use Mainframe Applications Operating System information Resource Access Control

More information

HBB04P RUN CONTROL REPORT

HBB04P RUN CONTROL REPORT HBB04P RUN CONTROL REPORT This job will produce a Run Control report. The selection criteria must be provided on the parameter card. You need to specify the criteria for the report. These are specified

More information

Specialized Data Systems, Inc. Web Financial Office 2017 W2 Processing Instructions Specialized Data Systems, Inc Revised Last: 12/12/17

Specialized Data Systems, Inc. Web Financial Office 2017 W2 Processing Instructions Specialized Data Systems, Inc Revised Last: 12/12/17 Specialized Data Systems, Inc. Web Financial Office 2017 W2 Processing Instructions Specialized Data Systems, Inc. 2017 Revised Last: 12/12/17 Table of Contents WELCOME... 3 W2 Processing for 2017 Instructions...

More information

Trust Fund Administrative User Manual

Trust Fund Administrative User Manual Trust Fund Administrative User Manual Technical Requirements In order to perform transactions, your web browser must support 128-bit encryption. We recommend using the Microsoft Internet Explorer 8 browser

More information

Chapter 5: Output Production Phase Processing

Chapter 5: Output Production Phase Processing Chapter 5: Output Production Phase Processing CHAPTER 5: OUTPUT PRODUCTION PHASE PROCESSING... 1 OUTPUT PRODUCTION OVERVIEW... 2 OUTPUT PRODUCTION PHASE FLOWCHART... 3 OUTPUT PRODUCTION BACKGROUND INFORMATION...

More information

Welcome to Employee Self- Service! From the District home page, click the Employees link. Next, click Employee Self- Service.

Welcome to Employee Self- Service! From the District home page, click the Employees link. Next, click Employee Self- Service. Welcome to Employee Self- Service! From the District home page, click the Employees link. Next, click Employee Self- Service. Log in to Employee Self Service. You must type district\user name in order

More information

IMS Funds Receivables/ Transaction Processing User Guide

IMS Funds Receivables/ Transaction Processing User Guide IMS Funds Receivables/ Transaction Processing User Guide Financial & Membership Services Membership Management Services Version 4.0 Date of last update: 7/28/2010 Page 1 of 42 CONTENTS IMS Funds Receivables/Transaction

More information

Introduction to TT Payroll - Training

Introduction to TT Payroll - Training Introduction to TT Payroll - Training This document will guide you through the steps of generating your payslips. At any stage if you have any questions we are happy to take your call or email. Our contact

More information

New Vision Paymate Payroll System

New Vision Paymate Payroll System Conduent Finance & Tax Systems Constituent and Government Software Systems New Vision Paymate Payroll System Purge Processing Menu Conduent 130 Division Street Waite Park, MN 56387 @ 2017 Conduent Business

More information

Key-Payroll. User Meeting November 2017 Presented by: Jane Lyons and Joy Watson

Key-Payroll. User Meeting November 2017 Presented by: Jane Lyons and Joy Watson Key-Payroll User Meeting November 2017 Presented by: Jane Lyons and Joy Watson I Key Payroll Help Table of Contents Foreword 0 Part I 2017 Enhancements 2 1 Enhancements... 2 Part II Special Features 11

More information

MICROS e7 Version 1.0 Patch 1 ReadMe First

MICROS e7 Version 1.0 Patch 1 ReadMe First ICROS e7 Version 1.0 Patch 1 Reade First About This Document Reade First is a comprehensive guide to the revisions added since the Version 1.0 release of ICROS e7. Text is organized into the following

More information

ALL MEMBERS AND PAYEES

ALL MEMBERS AND PAYEES Table of Contents Click a link to walk through a specific procedure. ALL MEMBERS AND PAYEES 1 GETTING STARTED How do I register? How do I log on? How do I update security questions? How do I retrieve/reset

More information

9.3 WEB-BASED PAN. Post Authorization Notification Functions (Web PAN) Opening a PAN: Deleting PANs From Your Inbox: Status and Type Columns: 9.

9.3 WEB-BASED PAN. Post Authorization Notification Functions (Web PAN) Opening a PAN: Deleting PANs From Your Inbox: Status and Type Columns: 9. 9.3 WEB-BASED PAN Post Authorization Notification Functions (Web PAN) Note: This section covers web PAN features, but not general background or information about PAN. For detailed information about the

More information

Year-end closing procedures for General Ledger in

Year-end closing procedures for General Ledger in Page 1 of 18 Year-end closing procedures for General Ledger in Microsoft Dynamics GP Summary This article outlines the recommended year-end closing procedures for Microsoft Dynamics GP. This article contains

More information

Evolution Query Builder Manual

Evolution Query Builder Manual Evolution Query Builder Manual PayData A Vermont Company Working for You! Page 1 of 37 Report Writer Introduction... 3 Creating Customized Reports... 4 Go to Client RW Reports... 4 Reports Tab... 4 Details

More information

Free and Reduced Online Application Instructions Step #1: In the Internet address field, type in the web site address: http://gwinnett.schoollunchapp.com Step #2: You must click the button to select: Privacy

More information

QSalesData User Guide

QSalesData User Guide QSalesData User Guide Updated: 11/10/11 Installing the QSalesData Software... 2 Licensing the QSalesData Product... 3 Build QSalesData fields in ACT Step 2 of Install Checklist... 4 Adding the QB Data

More information

Microsoft Dynamics GP: General Ledger Year-End Closing Procedures

Microsoft Dynamics GP: General Ledger Year-End Closing Procedures Microsoft Dynamics GP: General Ledger Year-End Closing Procedures Introduction This article outlines the recommended year-end closing procedures for Microsoft Dynamics GP. This article contains a checklist

More information

BUSINESS BANKING ONLINE. Deskside User Guide

BUSINESS BANKING ONLINE. Deskside User Guide BUSINESS BANKING ONLINE Deskside User Guide INTRODUCTION TO BUSINESS BANKING ONLINE Business Banking Online (BBOL) offers our business customers both large and small the tools and features needed to manage

More information

JOB AID: REPORT A CHANGE

JOB AID: REPORT A CHANGE October 7, 2015 Your destination for affordable, quality health care, including Medi-Cal This Job Aid shows how to use the Report a Change function on behalf of a Consumer to make changes to their application

More information

Report Designer. Sage Business Intelligence 2013

Report Designer. Sage Business Intelligence 2013 Report Designer Sage Business Intelligence 2013 Reports Designer This guide will provide you with an understanding of the Reports Designer and how it is used in Sage 50 Intelligence. In this lesson, you

More information

EXHIBIT M Page 1 of 7

EXHIBIT M Page 1 of 7 Page 1 of 7 GENERAL TREASURY DISBURSEMENT SERVICES RFP STANDARD CHECK, ACH, PRENOTE, CHECK PAID and OUTSTANDING HEAP CHECK FILE LAYOUTS STANDARD CHECK FILE LAYOUT THE FOLLOWING ACCOUNTS WILL USE THE STANDARD

More information

Bank Reconciliation Release 2015

Bank Reconciliation Release 2015 Bank Reconciliation Release 2015 Disclaimer This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without notice.

More information

First State Bank of Blakely, Inc. Cash Manager. User Guide

First State Bank of Blakely, Inc. Cash Manager. User Guide First State Bank of Blakely, Inc. Cash Manager User Guide Table of Contents Logging In... 1 Changing Your Password... 2 Cash User Login Screen... 3 Cash Management User Single Sign On... 4 Navigation...

More information

Welcome to Client Access Web!

Welcome to Client Access Web! Welcome to Client Access Web! Introduction W elcome to the Express Collections Client Access Portal. This portal has been crafted so that you, our valued client, can have convenient and secure access to

More information

Burbank School District 111

Burbank School District 111 Page 1 of 12 user sign on page. Burbank School District 111 This page is used to sign onto the EIS (). Enter your user name, tab to password and enter your password. Click on the Click to Continue button

More information

Release Notes: Employer version 4

Release Notes: Employer version 4 Release Notes: e@syfile Employer version 4 The first Pay-As-You-Earn (PAYE) biannual reconciliation takes place from 1 September 2010 to 31 October 2010. The e@syfile Employer software product has been

More information

VERSION 7 JUNE Union Benefits. Employer User Guide Data Collection Tool

VERSION 7 JUNE Union Benefits. Employer User Guide Data Collection Tool VERSION 7 JUNE 2018 Union Benefits Employer User Guide Data Collection Tool About this guide This document is intended to provide an overview of the main sections of the Data Collection Tool ( DCT ) for

More information

Customer Maintenance

Customer Maintenance 7 FTD Mercury makes maintaining customers easy. If you use house accounts for your customers, after setting up these accounts, the customer billing process is automated (using the Accounts Receivable Billing

More information

Data Import Guide DBA Software Inc.

Data Import Guide DBA Software Inc. Contents 3 Table of Contents 1 Introduction 4 2 Data Import Instructions 5 3 Data Import - Customers 10 4 Data Import - Customer Contacts 16 5 Data Import - Delivery Addresses 19 6 Data Import - Suppliers

More information

FirstNet for Business

FirstNet for Business Page 1" First State Community Bank FirstNet for Business End-User Guide Page 2" Table of Contents" Logging In... 3% Changing Your Password... 4% Cash User Login Screen... 4% Navigation... 7% Account Listing

More information

Test Plan RELEASE 1652

Test Plan RELEASE 1652 Test Plan RELEASE 1652 NACHA File Zero SSN 09:00 AM Enterprise IT Services Office of the President University of California Table of Contents TESTING OVERVIEW... 1 CONTROL TABLE (CTL) INITIAL LOAD (LOADCTL)...

More information

Copyright...7. Overview of General Ledger Processes Configuration...11

Copyright...7. Overview of General Ledger Processes Configuration...11 Contents 2 Contents Copyright...7 Overview of General Ledger Processes... 8 Configuration...11 Preparation...11 Recommended Initial Configuration of the General Ledger Module... 11 Advanced Configuration...12

More information

6. Vendor Maintenance

6. Vendor Maintenance 6. Vendor Maintenance Table of Contents Vendor Maintenance... 2 Direct Pay Info... 7 History... 8 Accounts... 10 Del Move... 11 Click on 6. Vendor Maintenance from the Main Menu and the following window

More information

JOB AID: REPORT A CHANGE

JOB AID: REPORT A CHANGE Your destination for affordable, quality health care, including Medi-Cal April 24, 2015 This Job Aid shows how to use the Report a Change function on behalf of a Consumer to make changes to their application

More information

Get the most from your Health Savings Account. Your guide to your HSA and online account access

Get the most from your Health Savings Account. Your guide to your HSA and online account access Get the most from your Health Savings Account Your guide to your HSA and online account access 1 Health Savings Account Investments Contents Getting started... 2 Accessing the BBPadmin Online Portal...

More information

Release 6.9 and Datafile 2016 Supplement

Release 6.9 and Datafile 2016 Supplement Release 6.9 and Datafile 2016 Supplement Datafile Software Solutions Limited Windgate Lodge Windgate Tarleton Lancashire PR4 6JF IMPORTANT NOTICE This document is the copyright of Datafile Software Solutions

More information

Oracle FLEXCUBE Direct Banking

Oracle FLEXCUBE Direct Banking Oracle FLEXCUBE Direct Banking Retail Transfer and User Manual Release 12.0.2.0.0 Part No. E50108-01 September 2013 Retail Tranfer and User Manual September 2013 Oracle Financial Services Software Limited

More information

Year End 2014: AP 1099 Processing

Year End 2014: AP 1099 Processing Year End 2014: AP 1099 Processing Viewpoint, Viewpoint Construction Software, Viewpoint Vista Software, Vista by Viewpoint, ProContractor by Viewpoint, Construction Imaging, Mobile Field Manager, 4Projects,

More information

Release Notice. Version Release Date: June 12, (440)

Release Notice. Version Release Date: June 12, (440) Release Notice Version 5.7.57 Release Date: June 12, 2017 www.sedonaoffice.perennialsoftware.com (440) 247-5602 Table of Contents About this Document... 5 Overview... 5 Applications Enhancements/Improvements...

More information

Agent & Office Portal

Agent & Office Portal Independent Region Management Guide Independent Region Management Guide Table of Contents Accessing the Portal 1 Profile Management 2 Updating Your Regional Office Profile 3 Updating Regional Staff Profiles

More information

The PSHUP File Load and Maintenance is a combination of four specific processes.

The PSHUP File Load and Maintenance is a combination of four specific processes. One Time PSHUP File Load and Maintenance - 13i Purpose: Use this document as a reference for how to: load the One Time PSHUP Template.CSV file to the staging table, make changes to that data once loaded,

More information

Enhanced Perpetual Payroll History PR-1074

Enhanced Perpetual Payroll History PR-1074 Enhanced Perpetual Payroll History PR-1074 Overview This Extended Solution to the Payroll module creates and updates four data files that contain Perpetual Tax History by Check Date, and Perpetual UDF

More information

HOW TO COMPLETE A POST PAID ORDER ON CRM 2014/11/06

HOW TO COMPLETE A POST PAID ORDER ON CRM 2014/11/06 1 HOW TO COMPLETE A POST PAID ORDER ON CRM 2014/11/06 Business Rules No products will be sold to applicants under the age 18 years old Only the original bar coded RSA ID or Temporary RSA ID document will

More information

TBO Advanced: What do agencies frequently ask support?

TBO Advanced: What do agencies frequently ask support? TBO Advanced: What do agencies frequently ask support? Shirley Sweeney, Support Supervisor Trams and ClientBase Products and Services 1. How do I create a credit/debit memo? a. If you have an original

More information

3E Online Analytics Help Guide

3E Online Analytics Help Guide Document Revision History Date Version Change Reference November 16, 2009 AA Original version Table of Contents 1.0 Introduction... 1 2.0 Payroll Menus... 2 3.0 Filtering and Sorting... 3 4.0 Column Selection...

More information

SmartIS. What is SmartIS? Product Description

SmartIS. What is SmartIS? Product Description SmartIS Product Description What is SmartIS? SmartIS is a Smart Information System designed for today s mainframe data centers. SmartIS automatically collects and correlates data from the areas of: Operations

More information

LOCIS 7.0 CALENDAR YEAR-END PROCEDURES CURRENT YEAR

LOCIS 7.0 CALENDAR YEAR-END PROCEDURES CURRENT YEAR LOCIS 7.0 CALENDAR YEAR-END PROCEDURES CURRENT YEAR Page 1 Page 2 Aged Trial Balance: (NT) To print a list of vendors with unpaid invoices. X Lookup Range From: First Vendor Number To: Last Vendor Number

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

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

When you first login to CountAbout you will be on the Transactions tab (Figure 1). This is where you will spend most of your time on the website.

When you first login to CountAbout you will be on the Transactions tab (Figure 1). This is where you will spend most of your time on the website. Table of Contents Overview... Page 1 ACCOUNTS (Add, Edit, Delete, Hide)... Page 2 CATEGORIES (Add, Edit, Delete, Hide)... Page 4 Transactions tab... Page 6 Widgets... Page 8 Budgets tab... Page 10 Reports

More information

Payroll Data Set Index (PAYR Database)

Payroll Data Set Index (PAYR Database) Payroll Data Set Index (PAYR Database) Description The Payroll (PAYR) database contains payroll transaction records and keeps them on file for up to six months. The data you enter on screens PS1000 through

More information

RTI Pro User Guide

RTI Pro User Guide RTI Pro User Guide 2016-17 Contents Page Number Set Up Settings and Folder Locations 2 Add Payroll Employer Information 5 Import Payroll Employer Information 8 RTI Submissions Full Payment Submission 9

More information

PCGENESIS PAYROLL SYSTEM OPERATIONS GUIDE

PCGENESIS PAYROLL SYSTEM OPERATIONS GUIDE PCGENESIS PAYROLL SYSTEM OPERATIONS GUIDE 6/30/2010 Section C: Payroll Check and Direct Deposit Statement Processing, V2.0 [Topic 7: Import PCGenesis Paystub Leave Data for the Leave Management System,

More information

GrandMaster II Release Notes

GrandMaster II Release Notes GrandMaster II Release Notes The release notes included in this document are cumulative and include changes beginning from our January 2006 release (v 7.70) Dec 17th, 2018 (v14.00) Added the federal and

More information

MERCERSPECTRUM EMPLOYER USER GUIDE

MERCERSPECTRUM EMPLOYER USER GUIDE MERCERSPECTRUM EMPLOYER USER GUIDE WHAT DO YOU WANT TO DO TODAY? Getting started... 2 Day-to-day processing... 3 Linking the Choice fund to your Employer Fund List...4 Choice Fund exists but is not linked

More information

Trust Fund New User Manual

Trust Fund New User Manual Trust Fund New User Manual Technical Requirements In order to perform transactions, your web browser must support 128-bit encryption. We recommend using the Microsoft Internet Explorer 8 browser or above

More information

Employee Self Service (ESS) Guide

Employee Self Service (ESS) Guide Employee Self Service (ESS) Guide Revised June, 2011 Table of Contents 1. Access..page 2 Logging In Password Reset 2. Overview of Features.....page 5 Dashboard Benefits Information Certification Information

More information

Human Capital Management: Step-by-Step Guide

Human Capital Management: Step-by-Step Guide Human Capital Management: Step-by-Step Guide Payroll Expense Transfers PETs (Regular Users) This guide describes how to create and submit a Payroll Expense Transfer (PET). PETs are used to move expenses

More information

O N L I N E B A N K I N G C A S H M A N A G E M E N T End-User Guide

O N L I N E B A N K I N G C A S H M A N A G E M E N T End-User Guide ONLINE BANKING CASH MANAGEMENT End-User Guide TABLE OF CONTENTS LogIn Process...1 Company Login... 1 Cash User Login... 3 Cash Management User Single Sign On... 4 Navigation...5 Account Listing Page...6

More information

Nexsure Training Manual - Accounting. Chapter 7

Nexsure Training Manual - Accounting. Chapter 7 Nexsure Training Manual - Accounting Vendor Entries In This Chapter Vendor Entries at the Organization and Territory Level Vendor Entity Definition Disbursements to Vendors Line Item Distribution Receiving

More information

Sterling Virtual Terminal. User Guide

Sterling Virtual Terminal. User Guide Sterling Virtual Terminal User Guide Version 3.1.00 August 2015 Chapter 1: Getting started Table of Contents USER GUIDE... 1 CHAPTER 1: GETTING STARTED... 5 SYSTEM REQUIREMENTS... 5 STERLING VIRTUAL TERMINAL

More information

Michigan Tech University Banner Finance Self-Service User Guide. Revised 1/11/17

Michigan Tech University Banner Finance Self-Service User Guide. Revised 1/11/17 Michigan Tech University Banner Finance Self-Service User Guide Revised 1/11/17 TABLE OF CONTENTS Chart Terminology... 3 MTU Fiscal Year... 3 Web Resource Banner and Reporting... 3 Reports Listing your

More information

WEB PAY EMPLOYEE GUIDE

WEB PAY EMPLOYEE GUIDE Revised 4/14/2017 WEB PAY EMPLOYEE GUIDE Client Resource WWW.PAYLOCITY.COM TABLE OF CONTENTS WEB PAY... 2 SELF SERVICE PORTAL... 9 HOME... 26 EMPLOYEES... 35 PAYROLL... 108 NOTIFICATIONS... 113 GLOSSARY...

More information

Instruction Guide for Manual Update to EPE version

Instruction Guide for Manual Update to EPE version Instruction Guide for Manual Update to EPE version 10.6.09 What s inside this documentation Checklist prior to software update Page 1 Steps in updating to version 10.6.08 Page 2 How to verify if the software

More information

Access/SAS application for verification and correction: corporate tax returns

Access/SAS application for verification and correction: corporate tax returns Access/SAS application for verification and correction: corporate tax returns Federation of Tax Administrators Revenue Estimating and Research Conference September 17, 2007 Steps in our decision SAS verification

More information

MICROS e7 Version 2.0 Patch 2 ReadMe First

MICROS e7 Version 2.0 Patch 2 ReadMe First MICROS e7 Version 2.0 Patch 2 ReadMe First About This Document ReadMe First is a comprehensive guide to the revisions added since the Version 2.0 release of MICROS e7. Text is organized into the following

More information

Type of Cobol Entries

Type of Cobol Entries Review of COBOL Coding Rules: Columns Use Explanation 1-6 sequence numbers or page and line numbers (optional) 7 Continuation, Comment, or starting a new page Previously used for sequencechecking when

More information

Time and Attendance Self Service - Hourly Training Guide University of Massachusetts Boston Human Resources Department

Time and Attendance Self Service - Hourly Training Guide University of Massachusetts Boston Human Resources Department 2017-2018 Time and Attendance Self Service - Hourly Training Guide University of Massachusetts Boston Human Resources Department Revised: September 2017 Table of Contents HR Direct Self Service Login Login

More information

Commitment Accounting Direct Retro Distribution

Commitment Accounting Direct Retro Distribution Business Process 1. To create retroactive distribution transactions directly. 2. To review Retro Distribution error messages. 3. To review proposed changes 4. To update Actuals Distribution tables with

More information

Normalized Relational Database Implementation of VSAM Indexed Files

Normalized Relational Database Implementation of VSAM Indexed Files Normalized Relational Database Implementation of VSAM Indexed Files Note: this discussion applies to Microsoft SQL Server, Oracle Database and IBM DB2 LUW. Impediments to a Normalized VSAM Emulation Database

More information

TAKING QUERY TO THE NEXT LEVEL THE TEN QUERIES YOU MUST HAVE

TAKING QUERY TO THE NEXT LEVEL THE TEN QUERIES YOU MUST HAVE TAKING QUERY TO THE NEXT LEVEL THE TEN QUERIES YOU MUST HAVE Blackbaud s Conference for Not-For-Profits London Presenter s Name Page #2 Agenda What is Query for? Query Considerations Operators Hierarchy

More information

West Virginia Consolidated Public Retirement Board (WVCPRB) COMPASS Project 4b.04 Employer Self Service Download CPRB ID File Format Document

West Virginia Consolidated Public Retirement Board (WVCPRB) COMPASS Project 4b.04 Employer Self Service Download CPRB ID File Format Document West Virginia Consolidated Public Retirement Board (WVCPRB) COMPASS Project 4b.04 Employer Self Service Download CPRB ID File Format Document Table of Contents Introduction / Overview... 3 Purpose & Scope...

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

Labor Ledger Correction Process (LLCP)

Labor Ledger Correction Process (LLCP) Labor Distribution Module Labor Ledger Correction Process (LLCP) The Labor Ledger Correction Process (LLCP) document is used by central administration to correct errors that occur during Labor Ledger processing.

More information

Springfield City School District

Springfield City School District Springfield City School District 24/7 access to electronic paystubs and W-2 s are now available online! You can print from work, home, or anywhere you have computer access. For proof of income, verifications,

More information