Service Request W-2 Changes. Technical Specification. Created on: 8/16/2017 Modified 01/23/2018. Prepared by Mary Meyer

Size: px
Start display at page:

Download "Service Request W-2 Changes. Technical Specification. Created on: 8/16/2017 Modified 01/23/2018. Prepared by Mary Meyer"

Transcription

1 Service Request W-2 Changes Created on: 8/16/2017 Modified 01/23/2018 Prepared by Mary Meyer Information Technology Services Office of the President University of California

2 Version History Version # Date Revised By Reason for Change 1.0 8/16/2017 Mary Meyer Initial draft /2/2017 Mary Meyer Added details to program changes /7/2017 Mary Meyer Changed new error message from M60147 to M /23/18 Mary Meyer Added copylib CPWSTXTP and program PPTAXW2T Page 1

3 Table of Contents Version History Introduction Service Request Background Overview of System Modifications Design Considerations Mainframe Design COPYLIB Members COBOL Programs Unit Testing Requirements Page 2

4 1 Introduction Modify the IRS W-2 process for tax year This will include changing the year and modifying Box 14 for a new Pension Tier deduction. This technical specification provides detailed information about the modifications necessary in PPS to support the implementation of the W-2 changes and IRS W-2 process for the tax year SR changes must be implemented in time for campuses to install prior to tax reporting for calendar year Service Request SR asks for the implementation of the following W-2 changes for the year 2017: Change the tax year to 2017 Report the amount for GTN 724 (Employee DC Deduction) as a new category in Box 14 of the 2017 W-2. o OW2 Interface File The footnote on the OW2 interface file layout should be modified to correctly represent the GTN amounts that will be included in UCRP going forward. A new category in Box 14 should be established, labeled DC CHOICE. This category will be for the YTD amount for GTN 724 The logic for Box 14 should be modified to remove GTN 724 from UCRP. A new trailer row will need to be established for the new Box 14 category. The GTN 724 total amount should be removed from the UCRP trailer row in positions o Printed W-2 For the printed W-2, YTD GTN amount for GTN 724 should be removed from the UCRP category in Box 14. A new category DCCHOICE should be established in Box 14. To make room, the text included in Box 01 will be removed. YTD GTN amount for GTN 724 should be included in the new DCCHOICE category. Report the amount for GTN 724 (Employee DC Deduction) as a new category in Box 14 of the 2017 W-2. Page 3

5 o Reports The following reports will need to be modified to remove the specified GTN amount from the UCRP category and add a new category for GTN amount 724: PPP6007, 6008, 6009, 6011, 6014, 6017, 6019, 6020, 6021 and Background Changes in the printed Form W-2 are needed each year to satisfy IRS requirements. A modification is needed in Box 14 of the W-2. Some Pension Tier 2016 deductions that are currently included in the UCRP category need to be put into a separate, new category. The Pension Tier 2016 changes, implemented June, 2016, added several new GTNs that are associated with various Tier 2016 employee contributions. The following GTN amounts were included in the Box 14 category labeled UCRP for the 2016 Form W-2: 728: Employee DB deduction 722: Employee Supplement deduction 748: Employee Supplement deduction faculty 724: Employee DC deduction Starting with the 2017 Form W-2, the year to date amount for GTN 724 (Employee DC deduction) should be reported in a different (new) category in Box 14. The label will be DCCHOICE. 3 Overview of System Modifications The following PPS processes require modifications for the 2017 tax year: 1. OW2 Interface File 2. Printed Form W-2 3. W-2 Reports 4. SSA File 4 Design Considerations Page 4

6 5 Mainframe Design 5.1 COPYLIB Members CPWSTXW2 defines the record layout for the W2 extract file. Add new fields and reduce fillesr: 10 RW-EMPLOYEE-EMPLR-HLTH PIC 9(09)V99 VALUE ZEROES. 10 RW-SMALL-EMPLR-HLTH PIC 9(11) VALUE ZEROS. 10 FILLER PIC X(01) VALUE SPACES. *******10 FILLER PIC X(12) VALUE SPACES. 10 RT-SMALL-EMPLR-HLTH-TTL PIC X(015) VALUE SPACES. 10 FILLER PIC X(098) VALUE SPACES. *******10 FILLER PIC X(113) VALUE SPACES. The following copylib members will be modified to include fields for the new DCCHOICE amounts: CPLNKW2F defines a linkage area for PPTAXW2F. CPLNKW2O defines a linkage for PPTAXW2O. CPLNKW2R defines a linkage for PPTAXW2R. CPWSTXTO defines the record layouts for W2 data to be sent to UCOP for online W2s. CPWSTXTP defines the record layouts for tax reporting files sent to the state and federal government 5.2 COBOL Programs PPTAXEDB PPTAXEDB generates the extracts for W-2 and/or UI processing and selected control and error reports. The extract program PPTAXEDB should be changed, as below: 1. Remove GTN 724 amount from UCRP Box Create a new box with title DC CHOICE for GTN 724 amount 3. Create new working storage fields for DCCHOICE corresponding to existing UCRP fields. 4. Process the new DCCHOICE fields similar to how existing UCRP fields are processed 5. Create new error message for case where DCCHOICE amount is < 0 Page 5

7 PPTAXW2F PPTAXW2F produces the W-2 forms and fiche file. Add fields for the new DCCHOICE amounts. 1. Add fields in Working Storage for DC CHOICE smiliar to UCRP fields totals and do corresponding moves. 2. Add the New DC Choice total after the UCRP total 3. Remove literal included in Box 1 01 W2L-LNE FILLER PIC X(02) VALUE SPACES. 05 W2L-ADDR2 PIC X(31). 05 W2L-403B-LIT PIC X(03). 05 W2L-403B-AMT PIC Z,ZZZ,ZZZ W2L-403B-SPACE REDEFINES W2L-403B-AMT PIC X(12). *****05 W2L-DCP-CAS-LIT PIC X(07) VALUE SPACES. ***** *****05 W2L-DCP-CAS-AMT PIC ZZZZ,ZZZ.99. *****05 W2L-DCP-CAS-SPACE REDEFINES W2L-DCP-CAS-AMT 05 W2L-DCCHOICE-LIT PIC X(08) VALUE SPACES. 05 W2L-DCCHOICE-AMT PIC ZZZ,ZZZ W2L-DCCHOICE-SPACE REDEFINES W2L-DCCHOICE-AMT PIC X(10). 01 W2L-LNE FILLER PIC X(02) VALUE SPACES. 05 W2L-ADDR3 PIC X(31). 05 W2L-457B-LIT PIC X(03). 05 W2L-457B-AMT PIC Z,ZZZ,ZZZ W2L-457B-SPACE REDEFINES W2L-457B-AMT PIC X(12). 05 W2L-DCP-CAS-LIT PIC X(07) VALUE SPACES. 05 W2L-DCP-CAS-AMT PIC ZZZZ,ZZZ W2L-DCP-CAS-SPACE REDEFINES W2L-DCP-CAS-AMT *****05 W2L-DCP-REG-LIT PIC X(07) VALUE SPACES. ***** *****05 W2L-DCP-REG-AMT PIC ZZZZ,ZZZ.99. *****05 W2L-DCP-REG-SPACE REDEFINES W2L-DCP-REG-AMT PIC X(11). 01 W2L-LNE FILLER PIC X(02) VALUE SPACES. 05 W2L-ADDR4 PIC X(31) VALUE SPACES. 05 W2L-EXCL-MVE-LIT PIC X(03). Page 6

8 05 W2L-EXCL-MVE-AMT PIC Z,ZZZ,ZZZ W2L-EXCL-MVE-SPACE REDEFINES W2L-EXCL-MVE-AMT PIC X(12). 05 W2L-DCP-REG-LIT PIC X(07) VALUE SPACES. 05 W2L-DCP-REG-AMT PIC ZZZZ,ZZZ W2L-DCP-REG-SPACE REDEFINES W2L-DCP-REG-AMT PIC X(11). 05 FILLER PIC X(07) VALUE SPACES. *****05 W2L-OTHR-LIT PIC X(19). Comment out: *****05 FILLER PIC X(07) VALUE SPACES. *****IF PRINT-ZERO-BOX17-18-AMTS *****OR TXW2-EMP-OTHER-INCOME > ZERO *****OR TXW2-EMP-NDIP-AMOUNT > ZERO *****OR WS-TEMP-ACCUM > ZERO *********MOVE 'INCLUDED IN BOX 01:' TO W2L-OTHR-LIT *****ELSE *********MOVE SPACES TO W2L-OTHR-LIT. ADD: IF PRINT-ZERO-BOX17-18-AMTS OR TXW2-EMP-DCCHOICE > ZERO MOVE TXW2-EMP-DCCHOICE TO W2L-DCCHOICE-AMT MOVE 'DCCHOICE' TO W2L-DCCHOICE-LIT ELSE MOVE SPACES TO W2L-DCCHOICE-SPACE W2L-DCCHOICE-LIT PPTAXW2O PPTAXW2O creates the new OW2 file that is used by AYSO as the data source for generation of the online W-2 forms. Add fields to Working Storage for the new DCCHOICE amounts similar to existing fields for UCRP. Move fields similar to UCRP fields Increase occurs: ***05 WS-BOX14-LINE OCCURS 7 TIMES. 05 WS-BOX14-LINE OCCURS 8 TIMES. Increase varying: PERFORM VARYING WS-IXBX14 FROM +1 BY +1 UNTIL WS-IXBX14 > 8 ************ UNTIL WS-IXBX14 > 7 Move DCCHOICE amount to Box14: Page 7

9 IF TXW2-EMP-DCCHOICE NOT = 0 MOVE 'DC CHOICE ' TO WS-BOX14-TITLE (WS-IXBX14) MOVE TXW2-EMP-DCCHOICE TO WS-BOX14-AMT (WS-IXBX14) ADD +1 TO WS-IXBX14 END-IF. Increase from +7 to +8 : MOVE WS-BOX14-AMT (WS-IXBX *******IF WS-IXBX14 = +7 IF WS-IXBX14 = +8 GO TO EXIT PPTAXEDB PPTAXEDB generates the extracts for W-2 and/or UI processing and selected control and error reports. Add fields to Working Storage for the new DCCHOICE amounts similar to existing fields for UCRP. Move fields similar to UCRP fields Add new error message for DCCHOICE field: Increase OCCURS: 05 M60148 PIC X(5) VALUE '60148' And check for message in 1030-ACCUMULATE-UCRP-AMOUNT IF TXW2-EMP-DCCHOICE < 0 MOVE M60148 TO MSSG-DESIRED MOVE EMPLOYEE-ID OF PER-ROW-DATA TO RPT-EMPL-ID MOVE SPACES TO RPT-DATA-ONE MOVE 'TOTAL DC CHOICE AMOUNT' TO RPT-LITERAL-TWO MOVE TXW2-EMP-DCCHOICE TO RPT-NUM-AMOUNT MOVE ZERO TO TXW2-EMP-DCCHOICE PERFORM WRITE-MSSG-RECORD END-IF. 05 W2-ROW-TITLES-R REDEFINES *******W2-ROW-TITLES OCCURS 38 TIMES. W2-ROW-TITLES OCCURS 39 TIMES. 10 W2-ROW-TITLE PIC X(13). Add code to separate out DCCHOICE amount: Page 8

10 1030-ACCUMULATE-UCRP-AMOUNT. MOVE UCRP-XSET-GTN-NUMBER (GTN-INDEX) TO DSA-INDEX. IF UCRP-XSET-GTN-NUMBER (GTN-INDEX) = 724 ADD XDSA-BALAMT (DSA-INDEX, XDSA-YTD-P) TO TXW2-EMP-DCCHOICE ELSE ADD XDSA-BALAMT (DSA-INDEX, XDSA-YTD-P) TO TXW2-EMP-UCRP END-IF. Increase from 38 to 39: PERFORM PRINT-2ND-PAGE-TOTALS VARYING AMOUNT-INDEX FROM 1 BY 1 **************UNTIL AMOUNT-INDEX > 38 UNTIL AMOUNT-INDEX > 39 PPTAXW2 PPTAXW2 manages the W-2 reporting. Add fields to Working Storage for the new DCCHOICE amounts similar to existing fields for UCRP. Move fields similar to UCRP fields Increase from 38 to 39: 01 W2-ACCUMULATORS-R REDEFINES W2-ACCUMULATORS. 05 W2-ACCUMULATOR-GROUP OCCURS 4 TIMES. *********10 W2-ACC-AMOUNT OCCURS 38 TIMES 10 W2-ACC-AMOUNT OCCURS 39 TIMES 01 ZERO-SET-ACCUMULATORS. 05 ZERO-SET-GROUP OCCURS 4 TIMES. ************10 FILLER OCCURS 38 TIMES 10 FILLER OCCURS 39 TIMES PIC S9(11)V99 COMP W2-ROW-TITLES-R REDEFINES *******W2-ROW-TITLES OCCURS 38 TIMES. W2-ROW-TITLES OCCURS 39 TIMES. 10 W2-ROW-TITLE PIC X(13). ***PERFORM ACCUMULATOR-ROW 38 TIMES. PERFORM ACCUMULATOR-ROW 39 TIMES. ***PERFORM W2R-AMOUNT-ROW 38 TIMES. PERFORM W2R-AMOUNT-ROW 39 TIMES. PERFORM W2T-AMOUNT-ROW Page 9

11 VARYING ROW-NBR FROM 2 BY 1 ***********UNTIL ROW-NBR > 38. UNTIL ROW-NBR > 39. PERFORM OW2-AMOUNT-ROW VARYING ROW-NBR FROM 2 BY 1 UNTIL ROW-NBR > 39. ***********UNTIL ROW-NBR > 38. PERFORM W2F-AMOUNT-ROW VARYING ROW-NBR FROM 2 BY 1 ***********UNTIL ROW-NBR > 38. UNTIL ROW-NBR > 39. PPP610 PPP610 updates selected fields on the W2 extract file. Add fields to Working Storage for the new DCCHOICE amounts similar to existing fields for UCRP. Move fields similar to UCRP fields Increase from 38 to 39: 05 W2-ROW-TITLES-R REDEFINES *******W2-ROW-TITLES OCCURS 38 TIMES. W2-ROW-TITLES OCCURS 39 TIMES. 10 W2-ROW-TITLE PIC X(13). 1 W2-ACCUMULATORS-R REDEFINES W2-ACCUMULATORS. *******10 W2-ACC-AMOUNT OCCURS 38 TIMES 10 W2-ACC-AMOUNT OCCURS 39 TIMES PIC S9(11)V99 COMP W2-ACC-COUNT PIC S9(07) COMP. ***PERFORM VARYING I FROM 1 BY 1 UNTIL I > 38 PERFORM VARYING I FROM 1 BY 1 UNTIL I > 39 MOVE W2-ROW-TITLE(I) TO W2-TOTS-TITLE MOVE W2-ACC-AMOUNT(I) TO W2-TOTS-AMOUNT WRITE CONTROL-REC FROM W2-TOTS-LINE MOVE ZEROES TO W2-TOTS-AMOUNT END-PERFORM. PPTAXW2R PPTAXW2R produces the W-2 reports. Add fields to Working Storage for the new DCCHOICE amounts similar to existing fields for UCRP. Move fields similar to UCRP fields Page 10

12 Add / to column headings where missing, decrease filler if needed: *******05 FILLER PIC X(10) VALUE 'TAX EXEMPT' FILLER PIC X(11) VALUE 'TAX EXEMPT/' FILLER PIC X(02) VALUE SPACES *******05 FILLER PIC X(03) VALUE SPACES FILLER PIC X(10) VALUE '457B/UCRP/' FILLER PIC X(48) VALUE SPACES *******05 FILLER PIC X(09) VALUE '457B/UCRP' *******05 FILLER PIC X(49) VALUE SPACES FILLER PIC X(36) VALUE SPACES *******05 FILLER PIC X(13) VALUE 'TAX EXEMPT' FILLER PIC X(10) VALUE '457B/UCRP/'. 05 FILLER PIC X(51) VALUE SPACES. *******05 FILLER PIC X(09) VALUE '457B/UCRP'. *******05 FILLER PIC X(52) VALUE SPACES. *******05 FILLER PIC X(13) VALUE 'TAX EXEMPT'. 05 FILLER PIC X(13) VALUE 'TAX EXEMPT/'. 05 FILLER PIC X(14) VALUE SPACES. 05 FILLER PIC X(10) VALUE '457B/UCRP/'. 05 FILLER PIC X(13) VALUE SPACES. *******05 FILLER PIC X(09) VALUE '457B/UCRP'. *******05 FILLER PIC X(14) VALUE SPACES. *******05 FILLER PIC X(13) VALUE 'TAX EXEMPT'. 05 FILLER PIC X(13) VALUE 'TAX EXEMPT/'. 05 FILLER PIC X(10) VALUE '457B/UCRP/' FILLER PIC X(13) VALUE SPACES ******05 FILLER PIC X(09) VALUE '457B/UCRP' ******05 FILLER PIC X(14) VALUE SPACES FILLER PIC X(17) VALUE SPACES FILLER PIC X(10) VALUE '457B/UCRP/' FILLER PIC X(48) VALUE SPACES *******05 FILLER PIC X(09) VALUE '457B/UCRP' *******05 FILLER PIC X(49) VALUE SPACES *******05 FILLER PIC X(75) VALUE SPACES W2-SSTIP-HDG FILLER PIC X(47) VALUE SPACES. 05 FILLER PIC X(10) VALUE '409A DEFR/'. 05 FILLER PIC X(17) VALUE SPACES. 05 FILLER PIC X(09) VALUE 'DC CHOICE'. 05 FILLER PIC X(49) VALUE SPACES. 03 W2-NQPLS-HDG7. 05 FILLER PIC X(11) VALUE 'ALT TT CODE'. 05 FILLER PIC X(36) VALUE SPACES. *******05 FILLER PIC X(13) VALUE 'TAX EXEMPT'. 05 FILLER PIC X(13) VALUE 'TAX EXEMPT/'. 05 FILLER PIC X(14) VALUE 'EXCL MOVE'. 05 FILLER PIC X(08) VALUE 'DCP REG/'. 05 FILLER PIC X(10) VALUE Page 11

13 ' GROSS '. 03 W2-NQPLS-HDG8. 05 FILLER PIC X(47) VALUE SPACES. 05 FILLER PIC X(13) VALUE 'OTH STATE/'. 05 FILLER PIC X(14) VALUE '457NQP/'. 05 FILLER PIC X(10) VALUE '457B/UCRP/'. 05 FILLER PIC X(13) VALUE SPACES. *******05 FILLER PIC X(09) VALUE '457B/UCRP'. *******05 FILLER PIC X(14) VALUE SPACES. 05 FILLER PIC X(09) VALUE 03 W2-NQPLS-HDG9. 05 FILLER PIC X(47) VALUE SPACES. 05 FILLER PIC X(13) VALUE 'OTH LOCAL/ '. 05 FILLER PIC X(05) VALUE 'BOX11'. 05 FILLER PIC X(09) VALUE SPACES. 05 FILLER PIC X(09) VALUE 'DC CHOICE'. 05 FILLER PIC X(49) VALUE SPACES. *******05 FILLER PIC X(67) VALUE SPACES. 03 WRK7-NQPLS. 05 FILLER PIC X(01). 05 WRK7-W2-NQPLS-LNE. 07 FILLER PIC X(45). 07 WRK7-409A-DEFERRED PIC ZZZZ,ZZZ WRK7-NQBX11-INCOME PIC ZZZZ,ZZZ WRK7-DCCHOICE PIC ZZZZ,ZZZ FILLER PIC X(51). ***********07 FILLER PIC X(63). 03 W2-ALIEN-HDG7. 05 FILLER PIC X(11) VALUE 'ALT TT CODE'. 05 FILLER PIC X(36) VALUE SPACES. *******05 FILLER PIC X(13) VALUE 'TAX EXEMPT'. 05 FILLER PIC X(13) VALUE 'TAX EXEMPT/'. 05 FILLER PIC X(14) VALUE 'EXCL MOVE '. 05 FILLER PIC X(08) VALUE 'DCP REG/'. 05 FILLER PIC X(37) VALUE SPACES. 05 FILLER PIC X(13) VALUE 'CTZN '. 03 W2-ALIEN-HDG8. 05 FILLER PIC X(47) VALUE SPACES. 05 FILLER PIC X(10) VALUE 'OTH STATE/'. 05 FILLER PIC X(17) VALUE SPACES. 05 FILLER PIC X(10) VALUE '457B/UCRP/'. 05 FILLER PIC X(13) VALUE SPACES. *******05 FILLER PIC X(09) VALUE '457B/UCRP'. *******05 FILLER PIC X(14) VALUE SPACES. 05 FILLER PIC X(49) VALUE SPACES. 03 W2-ALIEN-HDG9. 05 FILLER PIC X(47) VALUE SPACES. *******05 FILLER PIC X(10) VALUE 'OTH LOCAL '. 05 FILLER PIC X(10) VALUE 'OTH LOCAL/'. 05 FILLER PIC X(17) VALUE SPACES. 05 FILLER PIC X(09) VALUE 'DC CHOICE'. 05 FILLER PIC X(49) VALUE SPACES. *******05 FILLER PIC X(75) VALUE SPACES. 03 W2-ALIEN-DETL-LNE7. Page 12

14 05 FILLER PIC X(46). 05 W2A-LN7-409A-DEFER PIC ZZZZ,ZZZ W2A-LN7-409A-DEFER-R REDEFINES W2A-LN7-409A-DEFER PIC X(12). 05 FILLER PIC X(01). 05 W2A-LN7-INT-LITERAL PIC X(11). *******05 FILLER PIC X(63). 05 FILLER PIC X(01). 05 W2A-LN7-DCCHOICE-AMT PIC ZZZ,ZZZ W2A-LN7-DCCHOICE-AMT-R REDEFINES W2A-LN7-DCCHOICE-AMT PIC X(11). 05 FILLER PIC X(29). 03 OTS-HDG7. 05 FILLER PIC X(11) VALUE 'ALT TT CODE'. 05 FILLER PIC X(36) VALUE SPACES. *******05 FILLER PIC X(10) VALUE 'TAX EXEMPT'. 05 FILLER PIC X(11) VALUE 'TAX EXEMPT/'. 05 FILLER PIC X(02) VALUE SPACES. *******05 FILLER PIC X(03) VALUE SPACES. 05 FILLER PIC X(10) VALUE 'EXCL MOVE '. and so on.several other places Add DC CHOICE 03 CONF-HDG9. 05 FILLER PIC X(47) VALUE SPACES. 05 FILLER PIC X(10) VALUE 'OTH LOCAL/'. 05 FILLER PIC X(17) VALUE SPACES. 05 FILLER PIC X(09) VALUE 'DC CHOICE'. 05 FILLER PIC X(49) VALUE SPACES. ****** 05 FILLER PIC X(75) VALUE SPACES. 03 W2-CNFRM-DETL-LNE7. 05 FILLER PIC X(46). 05 W2C-LN7-409A-DEFER PIC ZZZZ,ZZZ W2C-LN7-409A-DEFER-R REDEFINES W2C-LN7-409A-DEFER PIC X(12). 05 FILLER PIC X(01). 05 W2C-LN7-INT-LITERAL PIC X(11). *******05 FILLER PIC X(63). 05 FILLER PIC X(01). 05 W2C-LN7-DCCHOICE-AMT PIC ZZZ,ZZZ W2C-LN7-DCCHOICE-AMT-R REDEFINES W2C-LN7-DCCHOICE-AMT PIC X(11). 05 FILLER PIC X(29). 03 W2-EXCP-HDG9. 05 FILLER PIC X(47) VALUE SPACES. 05 FILLER PIC X(10) VALUE 'OTH LOCAL/'. 05 FILLER PIC X(17) VALUE SPACES. 05 FILLER PIC X(09) VALUE 'DC CHOICE'. 05 FILLER PIC X(52) VALUE SPACES. 03 W2-EDIT-HDG9. Page 13

15 05 FILLER PIC X(47) VALUE SPACES. 05 FILLER PIC X(10) VALUE 'OTH LOCAL/'. 05 FILLER PIC X(17) VALUE SPACES. 05 FILLER PIC X(09) VALUE 'DC CHOICE'. 05 FILLER PIC X(49) VALUE SPACES. ****** 05 FILLER PIC X(75) VALUE SPACES. Increase totals: 03 TOT-DESC REDEFINES TOT-DESCRPT. 05 DESC-TOTALS OCCURS 52. *******05 DESC-TOTALS OCCURS DESC-TOT PIC X(30). Take out conditional statement before printing line 5 or 6: ***IF W2C-ADD5 NOT = SPACES ***OR W2C-LN5-ALT-TT-CODE NOT = SPACES ***OR TXW2-EMP-OSWT-GROSS-1 NOT = ZERO ***OR TXW2-EMP-OSWT-TAX-1 NOT = ZERO ***OR TXW2-EMP-EXCL-MVE-EXP NOT = ZERO ***OR TXW2-EMP-457B-AMOUNT NOT = ZERO MOVE 1 TO LINE-CTR MOVE W2-CNFRM-DETL-LNE5 TO PRINT-REC-W2-CONFIRM MOVE 'Y' TO WS-LINE-5-PRINTED PERFORM W2-CONFIRM-PRINT ***END-IF. ***IF W2C-ADD6 NOT = SPACES ***OR W2C-LN6-NDIP-AMT NOT = ZERO ***OR W2C-LN6-UCRP-AMT NOT = ZERO ***OR TXW2-EMP-OSWT-LOC-GROSS-1 NOT = ZERO ***OR TXW2-EMP-OSWT-LOC-TAX-1 NOT = ZERO IF LINE-5-NOT-PRINTED MOVE 1 TO LINE-CTR MOVE W2-CNFRM-DETL-LNE5 TO PRINT-REC-W2-CONFIRM MOVE 'Y' TO WS-LINE-5-PRINTED PERFORM W2-CONFIRM-PRINT END-IF MOVE 1 TO LINE-CTR MOVE W2-CNFRM-DETL-LNE6 TO PRINT-REC-W2-CONFIRM MOVE 'Y' TO WS-LINE-6-PRINTED PERFORM W2-CONFIRM-PRINT ***ELSE **** MOVE SPACES TO W2-CNFRM-DETL-LNE6 **** IF W2C-ADD5 = SPACES **** AND W2C-LN5-ALT-TT-CODE = SPACES **** AND TXW2-EMP-OSWT-GROSS-1 = ZERO **** AND TXW2-EMP-OSWT-TAX-1 = ZERO **** AND TXW2-EMP-EXCL-MVE-EXP = ZERO **** AND TXW2-EMP-457B-AMOUNT = ZERO **** MOVE SPACES TO W2-CNFRM-DETL-LNE5 Do not move spaces to fields that are zero: MOVE TXW2-EMP-NDIP-AMOUNT TO W2C-LN6-NDIP-AMT. Page 14

16 IF TXW2-EMP-NDIP-AMOUNT = ZERO MOVE SPACES TO W2C-LN7-INT-LITERAL ******MOVE SPACES TO W2C-LN6-NDIP-AMT-R ELSE MOVE ' (INT) ' TO W2C-LN7-INT-LITERAL ******MOVE TXW2-EMP-NDIP-AMOUNT TO W2C-LN6-NDIP-AMT END-IF. ***IF TXW2-EMP-UCRP = ZERO ******MOVE SPACES TO W2C-LN6-UCRP-AMT-R ***ELSE MOVE TXW2-EMP-UCRP TO W2C-LN6-UCRP-AMT ***END-IF. ADD to summary amounts: MOVE DESC-TOT (52) TO W2-SUM-DESC. MOVE C-DCCHOICE (1) TO W2-SUM-AMT1. MOVE C-DCCHOICE (2) TO W2-SUM-AMT2. MOVE C-DCCHOICE (3) TO W2-SUM-AMT3. PERFORM W2-CONFIRM-PRINT-TOTALS. MOVE DESC-TOT (52) TO W2-SUM-DESC MOVE C-DCCHOICE (2) TO W2-SUM-AMT MOVE C-DCCHOICE (4) TO W2-SUM-AMT MOVE C-DCCHOICE (5) TO W2-SUM-AMT MOVE C-DCCHOICE (3) TO W2-SUM-AMT MOVE C-DCCHOICE (6) TO W2-SUM-AMT MOVE C-DCCHOICE (7) TO W2-SUM-AMT PERFORM W2-CONFIRM-PRINT-TOTALS MOVE 2 TO TOTALS-LINE-CTR. MOVE DESC-TOT (52) TO W2-SUM-DESC. MOVE O-DCCHOICE (1) TO W2-SUM-AMT1. MOVE O-DCCHOICE (2) TO W2-SUM-AMT2. MOVE O-DCCHOICE (3) TO W2-SUM-AMT3. PERFORM W2-OUTSTAT-PRINT-TOTALS. MOVE DESC-TOT (52) TO W2-SUM-DESC. MOVE E-DCCHOICE (1) TO W2-SUM-AMT1. MOVE E-DCCHOICE (2) TO W2-SUM-AMT2. MOVE E-DCCHOICE (3) TO W2-SUM-AMT3. PERFORM EXCEP-PRINT-TOTALS. MOVE DESC-TOT (52) TO W2-SUM-DESC. MOVE A-DCCHOICE (1) TO W2-SUM-AMT1. MOVE A-DCCHOICE (2) TO W2-SUM-AMT2. MOVE A-DCCHOICE (3) TO W2-SUM-AMT3. PERFORM ALIEN-PRINT-TOTALS. PPTAXW2T PPTAXW2T produces the Federal W-2 reporting file. Add statement to move zeros to new field (field not applicable for UC): MOVE ZERO TO RW-SMALL-EMPLR-HLTH RT-SMALL-EMPLR-HLTH-TTL. Page 15

17 6 Unit Testing Requirements 1. Select a test region and install the changed programs into the test region using the installation instructions provided with the release. 2. Identify or setup some employees to have amounts in GTN Exec PPP600 using spec card: //CARDFIL DD * PPP600-SPEC417 BOTH YY AYYYE001YY Verify that DC CHOICE amounts are shown on reports per samples in BRD for reports 6017, 6008, 6007, 6019, 6009, 6021, 6020, 6011, Exec PPP610 using spec card: //CARDFIL DD * PPP610-SPEC17IYYYYY Verify that DC CHOICE is shown on report W-2 Form Printing Process Sample JCL member PRINTW2P to print the W-2 forms. (Note: The overlay, pagedef and formdef definitions have been pre-assembled in PAYT.PSF libraries. The assemble JCL members are supplied in the release JCL library (OVLYAS17 and PSFASM17). For testing purposes, you may run just the PSFPRT17or you may choose to run the assemble jobs in your own campus test libraries and adjust the USERLIB in PSFPRT17 accordingly. Your campus may have different procedures for printing W-2 forms. 6. Send the Online W-2 file to the At Your Service Online (AYSO) system for testing. Page 16

Adafruit AMG8833 8x8 Thermal Camera Sensor

Adafruit AMG8833 8x8 Thermal Camera Sensor Adafruit AMG8833 8x8 Thermal Camera Sensor Created by Justin Cooper Last updated on 2017-11-27 10:00:27 PM UTC Guide Contents Guide Contents Overview Pinouts Power Pins: Logic pins: Assembly Prepare the

More information

Toy Car Speed Timer. Created by Kirby Griese. Last updated on :13:49 PM UTC

Toy Car Speed Timer. Created by Kirby Griese. Last updated on :13:49 PM UTC Toy Car Speed Timer Created by Kirby Griese Last updated on 2017-03-20 09:13:49 PM UTC Guide Contents Guide Contents Overview Parts needed Prerequisites 3D Printing Assembly Wiring Software Use It 2 3

More information

Grove - LED Bar. Introduction. Features

Grove - LED Bar. Introduction. Features Grove - LED Bar Introduction 3.3V 5.0V Digital Grove LED Bar is comprised of a 10 segment LED gauge bar and an MY9221 LED controlling chip. It can be used as an indicator for remaining battery life, voltage,

More information

Written Program. for. Hazard Communication

Written Program. for. Hazard Communication Written Program for Hazard Communication 1910.1200 Hazard Communication The following hazard communication program is provided as a guide to assist employers and employees in complying with the requirements

More information

Adafruit IO Basics: Servo

Adafruit IO Basics: Servo Adafruit IO Basics: Servo Created by Todd Treece Last updated on 2018-08-22 03:59:11 PM UTC Guide Contents Guide Contents Overview Adafruit IO Setup Creating the Servo Feed Adding the Slider Block Wiring

More information

Chapman Ranch Lint Cleaner Brush Evaluation Summary of Fiber Quality Data "Dirty" Module 28 September 2005 Ginning Date

Chapman Ranch Lint Cleaner Brush Evaluation Summary of Fiber Quality Data Dirty Module 28 September 2005 Ginning Date Chapman Ranch Lint Cleaner Evaluation Summary of Fiber Quality Data "Dirty" Module 28 September 25 Ginning Date The following information records the results of a preliminary evaluation of a wire brush

More information

Pressure Spy Quick Install Guide PRESSURE SPY QUICK INSTALL GUIDE

Pressure Spy Quick Install Guide PRESSURE SPY QUICK INSTALL GUIDE Pressure Spy Quick Install Guide PRESSURE SPY QUICK INSTALL GUIDE 1: General Instructions The Pressure Spy is designed for use with the R900 pit meter interface unit (MIU). Before installing, the Pressure

More information

MLX90393 Wide-Range 3-Axis Magnetometer

MLX90393 Wide-Range 3-Axis Magnetometer MLX90393 Wide-Range 3-Axis Magnetometer Created by Kevin Townsend Last updated on 2019-02-15 01:48:36 AM UTC Guide Contents Guide Contents Overview Specifications Pinout Power Pins Digital Pins Arduino

More information

Adafruit SI7021 Library Documentation

Adafruit SI7021 Library Documentation Adafruit SI7021 Library Documentation Release 1.0 Radomir Dopieralski Aug 25, 2018 Contents 1 Dependencies 3 2 Usage Notes 5 3 Contributing 7 4 Building locally 9 4.1 Sphinx documentation..........................................

More information

OpenSesame EyeLink tutorial

OpenSesame EyeLink tutorial OpenSesame EyeLink tutorial Daniel Schreij 1, Sebastiaan Mathôt 1,2, and Lotje van der Linden 2 1 VU University Amsterdam, Dept. of Cognitive Psychology 2 Aix-Marseille Université, Laboratoire de Psychologie

More information

HAZARD COMMUNICATION PROGRAM

HAZARD COMMUNICATION PROGRAM HAZARD COMMUNICATION PROGRAM I. Purpose In order to protect our employees and comply with 29 CFR 1910.1200 the Hazard Communication Standard, the following written Hazard Communication Program has been

More information

Request Conditional Use Permit (Tattoo Parlor) Staff Planner Jimmy McNamara

Request Conditional Use Permit (Tattoo Parlor) Staff Planner Jimmy McNamara Applicant Property Owner Act B Partners Public Hearing April 13, 2016 City Council Election District Lynnhaven Agenda Item 7 Request Conditional Use Permit (Tattoo Parlor) Staff Planner Jimmy McNamara

More information

Hazardous Chemical Communication Program

Hazardous Chemical Communication Program Hazardous Chemical Communication Program Revised: April 22, 2004 1 A. Peninsula College Policy Peninsula College is committed to the prevention of exposures that result in injury and/or illness; and to

More information

EASTERN KENTUCKY UNIVERSITY HAZARD COMMUNICATION PROGRAM SUMMARY COMPLIANCE MANUAL. Table of Contents

EASTERN KENTUCKY UNIVERSITY HAZARD COMMUNICATION PROGRAM SUMMARY COMPLIANCE MANUAL. Table of Contents EASTERN KENTUCKY UNIVERSITY HAZARD COMMUNICATION PROGRAM SUMMARY COMPLIANCE MANUAL Table of Contents I. OVERVIEW OF THE HAZARD COMMUNICATION STANDARD A. Background and Scope.................................

More information

Adafruit Color Sensors

Adafruit Color Sensors Adafruit Color Sensors Created by Bill Earl Last updated on 2018-11-05 03:48:12 PM UTC Guide Contents Guide Contents Overview Assembly and Wiring Assembly (breakout version only) Position the header Position

More information

Using BodyPaint 3D with LightWave

Using BodyPaint 3D with LightWave Addendum 23 Plugins ADDENDUM 1 Exchange Plugins Using BodyPaint 3D with LightWave If you are a LightWave user, the quickest way to get your models from LightWave to BodyPaint 3D then back again once you

More information

Adafruit MMA8451 Accelerometer Breakout

Adafruit MMA8451 Accelerometer Breakout Adafruit MMA8451 Accelerometer Breakout Created by lady ada Last updated on 2014-07-31 07:00:14 PM EDT Guide Contents Guide Contents Overview Pinouts (http://adafru.it/dln)power Pins I2C Pins INT and ADDR

More information

Adafruit APDS9960 breakout

Adafruit APDS9960 breakout Adafruit APDS9960 breakout Created by Dean Miller Last updated on 2018-01-19 11:18:59 PM UTC Guide Contents Guide Contents Overview Pinouts Power Pins: Logic pins: Assembly Prepare the header strip: Add

More information

NeoMatrix 8x8 Word Clock

NeoMatrix 8x8 Word Clock NeoMatrix 8x8 Word Clock Created by Andy Doro Last updated on 2017-10-10 04:10:51 AM UTC Guide Contents Guide Contents Overview Parts List Parts Tools Circuit Assembly Overview Uploading Code Understanding

More information

Adobe InDesign. Figure 1 Apply fill and stroke color to text by using the Swatches panel

Adobe InDesign. Figure 1 Apply fill and stroke color to text by using the Swatches panel How to manage colors Adobe InDesign provides a variety of ways for you to manage colors (Figure 1): from selecting and applying color, to using swatches and swatch libraries, and applying tints and transparencies.

More information

Enhance nails using electric files Unit 320 1

Enhance nails using electric files Unit 320 1 320 Enhance nails using electric files An electric file is a great piece of equipment that can speed up the service time when creating nail enhancements. It must only be used by a person qualified to use

More information

Adafruit GPS Hat in Windows IoT Core

Adafruit GPS Hat in Windows IoT Core Adafruit GPS Hat in Windows IoT Core Created by Rick Lesniak Last updated on 2017-01-01 08:17:19 PM UTC Guide Contents Guide Contents Overview Assembly GPSDemoApp Adafruit Class Library 2 3 4 6 13 Adafruit

More information

Adafruit CCS811 Air Quality Sensor

Adafruit CCS811 Air Quality Sensor Adafruit CCS811 Air Quality Sensor Created by Dean Miller Last updated on 2018-01-15 11:03:58 PM UTC Guide Contents Guide Contents Overview Pinouts Power Pins: Logic pins: Arduino Wiring & Test I2C Wiring

More information

1.8" TFT Display Breakout and Shield

1.8 TFT Display Breakout and Shield 1.8" TFT Display Breakout and Shield Created by lady ada Last updated on 2017-11-17 05:51:22 PM UTC Guide Contents Guide Contents Overview Breakout Pinouts Breakout Assembly Prepare the header strip: Add

More information

BeagleBone. Created by lady ada. Last updated on :46:10 PM UTC

BeagleBone. Created by lady ada. Last updated on :46:10 PM UTC BeagleBone Created by lady ada Last updated on 2016-10-17 08:46:10 PM UTC Guide Contents Guide Contents Overview Installing Drivers Download & Install Connect! Ethernet Terminal Software dmesg Ethernet

More information

Steam Heat Retrofit for Coover Hall

Steam Heat Retrofit for Coover Hall Steam Heat Retrofit for Coover Hall sddec1802 Jevay Aggarwal Technical Lead Sarah Coffey Reporting Lead Thomas Devens Project Plan Lead Joseph Filbert Client Contact Lead Kenneth Wendt Webmaster Liz Wickham

More information

ALASKA GROSS STATE PRODUCT

ALASKA GROSS STATE PRODUCT ALASKA GROSS STATE PRODUCT 1961-1998 by Scott Goldsmith Professor of Economics prepared for Alaska Department of Commerce and Economic Development June 1999 Institute of Social and Economic Research University

More information

Joy Featherwing. Created by Dean Miller. Last updated on :03:07 PM UTC

Joy Featherwing. Created by Dean Miller. Last updated on :03:07 PM UTC Joy Featherwing Created by Dean Miller Last updated on 2018-08-22 04:03:07 PM UTC Guide Contents Guide Contents Overview Pinouts Power and Reset Pins I2C Data Pins I2C Addressing Optional Interrupt Pin

More information

University of Wisconsin-Madison Hazard Communication Standard Policy Dept. of Environment, Health & Safety Office of Chemical Safety

University of Wisconsin-Madison Hazard Communication Standard Policy Dept. of Environment, Health & Safety Office of Chemical Safety University of Wisconsin-Madison Hazard Communication Standard Policy Dept. of Environment, Health & Safety Office of Chemical Safety 1.0 Introduction... 1 1.1 Purpose... 1 1.2 Regulatory Background...

More information

Germanna Community College Policy 70210: Hazard Communication Plan

Germanna Community College Policy 70210: Hazard Communication Plan 1. Purpose Germanna Community College Policy 70210: Hazard Communication Plan 1.1. To establish guidelines and policies to make Germanna Community College employees aware of chemical hazards to which they

More information

ClearPath integration into SOA modernised applications

ClearPath integration into SOA modernised applications ClearPath integration into SOA modernised applications Operational & practical aspects Rudi Chati Senior Integration Architect Unisys APLA Enterprise Solution Services This session will give a view of

More information

WWWWW. ( 12 ) Patent Application Publication ( 10 ) Pub. No.: US 2017 / A1. 19 United States

WWWWW. ( 12 ) Patent Application Publication ( 10 ) Pub. No.: US 2017 / A1. 19 United States THE MAIN TEA ETA AITOR A TT MA N ALUMINIUM TIN US 20170266826A1 19 United States ( 12 ) Patent Application Publication ( 10 ) Pub. No.: US 2017 / 0266826 A1 Kole et al. ( 43 ) Pub. Date : Sep. 21, 2017

More information

Arduino Lesson 6. Digital Inputs

Arduino Lesson 6. Digital Inputs Arduino Lesson 6. Digital Inputs Created by Simon Monk Last updated on 2018-02-27 10:20:04 PM UTC Guide Contents Guide Contents Overview Parts Part Qty Breadboard Layout Arduino Code Push Switches Other

More information

UNIVERSITY OF HAWAII Community Colleges ENVIRONMENTAL HEALTH AND SAFETY OFFICE HAZARD COMMUNICATION PROGRAM

UNIVERSITY OF HAWAII Community Colleges ENVIRONMENTAL HEALTH AND SAFETY OFFICE HAZARD COMMUNICATION PROGRAM UNIVERSITY OF HAWAII Community Colleges ENVIRONMENTAL HEALTH AND SAFETY OFFICE HAZARD COMMUNICATION PROGRAM Revised January 2011 TABLE OF CONTENTS 1.0 INTRODUCTION 2.0 PROGRAM ADMINISTRATION 3.0 AN OVERVIEW

More information

Australian Standard. Sunglasses and fashion spectacles. Part 1: Safety requirements AS

Australian Standard. Sunglasses and fashion spectacles. Part 1: Safety requirements AS AS 1067.1 1990 Australian Standard Sunglasses and fashion spectacles Part 1: Safety requirements This Australian Standard was prepared by Committee CS/53, Sunglasses. It was approved on behalf of the Council

More information

Adafruit IO Basics: Digital Input

Adafruit IO Basics: Digital Input Adafruit IO Basics: Digital Input Created by Todd Treece Last updated on 2017-07-14 11:49:29 PM UTC Guide Contents Guide Contents Overview Adafruit IO Setup Creating the Digital Feed Adding the Gauge Block

More information

Sino:bit with Arduino

Sino:bit with Arduino Sino:bit with Arduino Created by Dave Astels Last updated on 2017-12-04 02:22:05 PM UTC Guide Contents Guide Contents Accelerometer and Magnetometer Magnetometer Accelerometer Adafruit Libraries Download

More information

Adafruit 8x16 LED Matrix FeatherWing

Adafruit 8x16 LED Matrix FeatherWing Adafruit 8x16 LED Matrix FeatherWing Created by lady ada Last updated on 2016-05-20 01:58:38 PM EDT Guide Contents Guide Contents Overview Pinouts Power Pins I2C pins Address Jumpers Changing Addresses

More information

Monochrome OLED Breakouts

Monochrome OLED Breakouts Monochrome OLED Breakouts Created by lady ada Last updated on 2018-01-02 08:35:47 PM UTC Guide Contents Guide Contents Overview Power Requirements OLED Power Requirements 5V- ready 128x64 and 128x32 OLEDs

More information

HAZARD COMMUNICATION PROGRAM

HAZARD COMMUNICATION PROGRAM DRAFT SAMPLE WRITTEN HAZARD COMMUNICATION PROGRAM For Compliance With 1910.1200 Wyoming General Rules and Regulations Wyoming Department of Workforce Services OSHA Division Consultation Program ACKNOWLEDGEMENTS

More information

Adafruit IO Basics: Temperature & Humidity

Adafruit IO Basics: Temperature & Humidity Adafruit IO Basics: Temperature & Humidity Created by Todd Treece Last updated on 2018-03-13 03:35:08 PM UTC Guide Contents Guide Contents Overview Adafruit IO Setup Creating the Feeds Adding the Line

More information

Adafruit IO Basics: Analog Input

Adafruit IO Basics: Analog Input Adafruit IO Basics: Analog Input Created by Todd Treece Last updated on 2018-08-22 03:47:38 PM UTC Guide Contents Guide Contents Overview Adafruit IO Setup Creating the Analog Feed Adding the Gauge Block

More information

Adafruit DRV2605 Haptic Controller Breakout

Adafruit DRV2605 Haptic Controller Breakout Adafruit DRV2605 Haptic Controller Breakout Created by lady ada Last updated on 2018-08-20 03:28:51 PM UTC Guide Contents Guide Contents Overview Pinouts Power Pins I2C Pins Other! Assembly Prepare the

More information

Restrictions on the Manufacture, Import, and Sale of Personal Care and Cosmetics Products Containing Plastic Microbeads. Overview

Restrictions on the Manufacture, Import, and Sale of Personal Care and Cosmetics Products Containing Plastic Microbeads. Overview Restrictions on the Manufacture, Import, and Sale of Personal Care and Cosmetics Products Containing Plastic Microbeads Overview In order to facilitate exfoliation and cleaning, enterprises have commonly

More information

Circuit Playground Express Laser Tag

Circuit Playground Express Laser Tag Circuit Playground Express Laser Tag Created by John Park Last updated on 2017-11-14 01:56:23 AM UTC Guide Contents Guide Contents Build a Laser Tag Game Code the Laser Tag Game MakeCode Transmitting IR

More information

MCP Bit DAC Tutorial

MCP Bit DAC Tutorial MCP4725 12-Bit DAC Tutorial Created by lady ada Last updated on 2018-03-05 10:51:16 PM UTC Guide Contents Guide Contents Overview Wiring Arduino Code Using the library Increasing the speed CircuitPython

More information

NeoPixel Manicure. Created by Sophy Wong. Last updated on :50:38 PM UTC

NeoPixel Manicure. Created by Sophy Wong. Last updated on :50:38 PM UTC NeoPixel Manicure Created by Sophy Wong Last updated on 2018-04-11 05:50:38 PM UTC Guide Contents Guide Contents Overview Parts & Supplies Tools Circuit Diagram Build the Circuit Measure Your Circuit Prepare

More information

Adafruit ATWINC1500 WiFi Breakout

Adafruit ATWINC1500 WiFi Breakout Adafruit ATWINC1500 WiFi Breakout Created by lady ada Last updated on 2018-01-29 08:25:04 PM UTC Guide Contents Guide Contents Overview Pinouts Power Pins SPI Pins Other SPI Interface Pins Assembly Prepare

More information

Lead in Cosmetic Lip Products and Externally Applied Cosmetics: Recommended Maximum

Lead in Cosmetic Lip Products and Externally Applied Cosmetics: Recommended Maximum This document is scheduled to be published in the Federal Register on 12/22/2016 and available online at https://federalregister.gov/d/2016-30781, and on FDsys.gov 4164-01-P DEPARTMENT OF HEALTH AND HUMAN

More information

LED Stego Flex Spike Hoodie

LED Stego Flex Spike Hoodie LED Stego Flex Spike Hoodie Created by Becky Stern Last updated on 2015-02-19 04:45:44 PM EST Guide Contents Guide Contents Overview Like this project? 3D Print Spikes NinjaFlex Assemble Circuit Layout

More information

PLEASE NOTE: ADDITIONAL DOCUMENTATION ON PAGE 2 MUST BE SUBMITTED WITH THIS APPLICATION. Name Business is Conducted Under (DBA):

PLEASE NOTE: ADDITIONAL DOCUMENTATION ON PAGE 2 MUST BE SUBMITTED WITH THIS APPLICATION. Name Business is Conducted Under (DBA): BUSINESS FILING AND VERIFICATION SECTION TATTOO STUDIO Initial / Renewal License Application (Health and Safety Code, Chapter 146 Return both the completed application, and nonrefundable check or money

More information

Arkansas Department of Finance & Administration Rule Comments

Arkansas Department of Finance & Administration Rule Comments Save money. live better. 702 SW 8th Street BenlOnville. AR 727111 Phone '19 ~ _ 2178 Fax 866 31 1 7270 wwwwa!martcom Arkansas Department of Finance & Administration Rule 2012-2 Comments 1. requests that

More information

Call to Artists Fourth Annual Temporary Exhibit Issued by Public Art Commission City of Blue Springs, Missouri September 19, 2008

Call to Artists Fourth Annual Temporary Exhibit Issued by Public Art Commission City of Blue Springs, Missouri September 19, 2008 Call to Artists Fourth Annual Temporary Exhibit Issued by Public Art Commission City of Blue Springs, Missouri September 19, 2008 EXHIBITION OVERVIEW The City of Blue Springs established the Public Art

More information

Zelda Thunder Helm. Created by Ruiz Brothers. Last updated on :46:52 PM UTC

Zelda Thunder Helm. Created by Ruiz Brothers. Last updated on :46:52 PM UTC Zelda Thunder Helm Created by Ruiz Brothers Last updated on 2017-08-23 02:46:52 PM UTC Guide Contents Guide Contents Overview Zelda: Breath Of The Wild Parts, Tools and Supplies Proto-Pasta - Aromatic

More information

THE COMPLETE PICTURE GENERAL RULES & REGULATIONS Hairstylist: Jason Fassbender, Photographer: Andrew O Toole

THE COMPLETE PICTURE GENERAL RULES & REGULATIONS Hairstylist: Jason Fassbender, Photographer: Andrew O Toole 2018 GENERAL RULES & REGULATIONS 2018 HAIR EXPO AWARDS 2018 General Rules and Regulations AWARDS PERIOD March 2017 March 2018 First round Creative entries and final Business category entries are due Wednesday

More information

SAFETY DATA SHEET. Qualitek No Clean Paste Flux PF601. MANUFACTURER 24 HR. EMERGENCY TELEPHONE NUMBERS Qualitek International, Inc.

SAFETY DATA SHEET. Qualitek No Clean Paste Flux PF601. MANUFACTURER 24 HR. EMERGENCY TELEPHONE NUMBERS Qualitek International, Inc. Page 1 of 5 1. PRODUCT AND COMPANY IDENTIFICATION PRODUCT NAME: PRODUCT DESCRIPTION: No Clean Paste Flux MANUFACTURER 24 HR. EMERGENCY TELEPHONE NUMBERS Qualitek International, Inc. 1-800-535-5053 Infotrac

More information

i2c/spi LCD Backpack Created by lady ada Last updated on :11:04 PM UTC

i2c/spi LCD Backpack Created by lady ada Last updated on :11:04 PM UTC i2c/spi LCD Backpack Created by lady ada Last updated on 2017-08-16 05:11:04 PM UTC Guide Contents Guide Contents Overview Which LCD to Use? Wait - the backpack has 16 holes, but my LCD only has 14 pins!

More information

HAIR OIL. Profile No.: 15 NIC Code: INTRODUCTION 2. PRODUCTS AND ITS APPLICATION 3. DESIRED QUALIFICATION FOR PROMOTER

HAIR OIL. Profile No.: 15 NIC Code: INTRODUCTION 2. PRODUCTS AND ITS APPLICATION 3. DESIRED QUALIFICATION FOR PROMOTER Profile No.: 15 NIC Code: 20236 1. INTRODUCTION HAIR OIL Hair oils are widely used in India for haircare. Indigenously available herbal ingredients are used to make hair oils. However, nowadays, synthetic

More information

Add to Apple Wallet. Guidelines March 2017

Add to Apple Wallet. Guidelines March 2017 Add to Apple Wallet Guidelines March 2017 Contents Add to Apple Wallet Overview 3 Graphic Standards 4 Examples 5 Do s and Don ts 6 Printing the Add to Apple Wallet Button Requirements 7 Codes 8 Button

More information

Work-Based Activities Plan for Student Clinic

Work-Based Activities Plan for Student Clinic Work-Based Activities Plan for Student Clinic Purpose: This plan is written to specify the objectives, experiences, competencies and evaluations that are required for student clinical experiences. The

More information

Adafruit Capacitive Touch Sensor Breakouts

Adafruit Capacitive Touch Sensor Breakouts Adafruit Capacitive Touch Sensor Breakouts Created by Bill Earl Last updated on 2018-08-22 03:36:13 PM UTC Guide Contents Guide Contents Overview Momentary Toggle 5-Pad Momentary Assembly and Wiring Installing

More information

Kansas Department of Transportation. Counties: DISTRICT 6. Project(s): Min: Max:

Kansas Department of Transportation. Counties: DISTRICT 6. Project(s): Min: Max: Page 1 of 9 517106 VENTURE CORPORATION (2) J & R SAND COMPANY INC (3) APAC-KANSAS INC SHEARS DIVISION SECTION: 01 COMMON ITEMS Cat Alt Set: Cat Alt Member: LCC: 1 025323 MOBILIZATION 2 070626 MOBILIZATION

More information

HAZARD COMMUNICATION TRAINING

HAZARD COMMUNICATION TRAINING HAZARD COMMUNICATION TRAINING You Have a Right to Know You, as an employee, have a Right to Know about the hazardous materials used in your work area and the potential effects these materials may have

More information

3-month Fondazione di Venezia scholarships

3-month Fondazione di Venezia scholarships Fondazione Giorgio Cini onlus, Venice Vittore Branca International Center for the Study of Italian Culture 3-month Fondazione di Venezia scholarships Application deadline: 10 March 2019 www.cini.it THE

More information

Sampling Process in garment industry

Sampling Process in garment industry Sampling Process in garment industry Sampling is one of the main processes in garment manufacturing and it plays vital role in attracting buyers and confirming the order, as the buyers generally places

More information

Fume Hood ECON VAV Controls

Fume Hood ECON VAV Controls ECON VAV Controls Increases Safety, Conserves Energy and Save You Money AFA 1000 / E / BLD Fresh Air Bleed Fresh Air Bleed Constant Discharg e Velocity Extract Duct Pressure Constant Speed Exhaust Blower

More information

Table of Contents. 7/23/2018 Kohl's Department Stores 2

Table of Contents. 7/23/2018 Kohl's Department Stores 2 Table of Contents Fit Consistency....3-5 Fit Classification-Definitions...6 Fit Consistency Checklist....7 Additional Tools for Fit Consistency 8-9 Starting with Proven Pattern.10 Roles of CFT in Product

More information

Adafruit Si5351 Clock Generator Breakout

Adafruit Si5351 Clock Generator Breakout Adafruit Si5351 Clock Generator Breakout Created by lady ada Last updated on 2017-06-02 07:54:50 PM UTC Guide Contents Guide Contents Overview Pinouts Power Pins I2C Pins Assembly Prepare the header strip:

More information

Restrictions on the Manufacture, Import, and Sale of Personal Care and Cosmetics Products Containing Plastic Microbeads.

Restrictions on the Manufacture, Import, and Sale of Personal Care and Cosmetics Products Containing Plastic Microbeads. Restrictions on the Manufacture, Import, and Sale of Personal Care and Cosmetics Products Containing Plastic Microbeads Overview of Draft In order to facilitate exfoliation and cleaning, enterprises have

More information

A Comparison of Two Methods of Determining Thermal Properties of Footwear

A Comparison of Two Methods of Determining Thermal Properties of Footwear INTERNATIONAL JOURNAL OF OCCUPATIONAL SAFETY AND ERGONOMICS 1999, VOL. 5, NO. 4, 477-484 A Comparison of Two Methods of Determining Thermal Properties of Footwear Kalev Kuklane Department of Occupational

More information

EMERGENCY PHONE: or (651) (24 hours)

EMERGENCY PHONE: or (651) (24 hours) Material Safety Data Sheet Copyright, 2007, 3M Company. All rights reserved. Copying and/or downloading of this information for the purpose of properly utilizing 3M products is allowed provided that: (1)

More information

Adafruit WINC1500 WiFi Shield for Arduino

Adafruit WINC1500 WiFi Shield for Arduino Adafruit WINC1500 WiFi Shield for Arduino Created by lady ada Last updated on 2017-11-27 07:04:37 PM UTC Guide Contents Guide Contents Overview Pinouts SPI Interface Pins WiFi Control Pins SD Card Interface

More information

Trinket-Powered Conference Room Occupancy Display

Trinket-Powered Conference Room Occupancy Display Trinket-Powered Conference Room Occupancy Display Created by Mike Barela Last updated on 2018-08-22 03:38:56 PM UTC Guide Contents Guide Contents Overview Build Wiring Diagrams Populating the Board Code

More information

Adafruit GPIO Expander Bonnet for Raspberry Pi Created by Kattni Rembor. Last updated on :12:47 PM UTC

Adafruit GPIO Expander Bonnet for Raspberry Pi Created by Kattni Rembor. Last updated on :12:47 PM UTC Adafruit GPIO Expander Bonnet for Raspberry Pi Created by Kattni Rembor Last updated on 2019-03-09 11:12:47 PM UTC Overview The Raspberry Pi is an amazing single board computer - and one of the best parts

More information

NeoLoch. Inquisitor Core. Assembly Instructions (9/3/2015)

NeoLoch. Inquisitor Core. Assembly Instructions (9/3/2015) NeoLoch Inquisitor Core Assembly Instructions (9/3/2015) Your kit should contain the following items. If you find a part missing, please contact NeoLoch for a replacement. Kit contents: 1 PCB 1 2.1mm DC

More information

Technical Regulations

Technical Regulations Technical Regulations 1. Presentation area The works (pictures or models) shall be presented at the grafikschweiz 18 Exhibition on white Sagex cubes. Each participant shall have one cube (4 x 1 x 0.5 metres)

More information

Prophet 600 GliGli mod

Prophet 600 GliGli mod Prophet 600 GliGli mod Created by Collin Cunningham Last updated on 2018-08-22 04:04:56 PM UTC Guide Contents Guide Contents Overview What you'll need Program the Teensy++ Modify the Teensy++ Prep header

More information

Please Allow 4-6 Weeks for Custom Orders. Custom Message Bangles Also Available!

Please Allow 4-6 Weeks for Custom Orders. Custom Message Bangles Also Available! CUSTOM COORDINATE & MORSE CODE BANGLES Solid Stainless Steel, 5mm wide Double-Sided, Deep Engraving with Black Enamel Adjustable for most wrist sizes: 6.5-7.75 Please Allow 4-6 Weeks for Custom Orders

More information

Weber State University Hazard Communication Program April 2000

Weber State University Hazard Communication Program April 2000 Weber State University Hazard Communication Program April 2000 CONTENTS I. Introduction II Listing of Hazardous Materials III. Material Safety Data Sheets IV. Labels and Other Forms of Warning V. Employee

More information

Crickit Dancing Marionette Kit Created by Dano Wall. Last updated on :03:11 PM UTC

Crickit Dancing Marionette Kit Created by Dano Wall. Last updated on :03:11 PM UTC Crickit Dancing Marionette Kit Created by Dano Wall Last updated on 2019-04-04 07:03:11 PM UTC Overview This project demonstrates how to build a robotic marionette that is controlled with four arcade-style

More information

4 July 8, 2015 Public Hearing

4 July 8, 2015 Public Hearing 4 July 8, 2015 Public Hearing APPLICANT: STUDIO EVOLVE, LLC PROPERTY OWNER: MT. TRASHMORE OFFICE, LC STAFF PLANNER: Carolyn A.K. Smith REQUEST: Modification of a Conditional Use Permit approved by the

More information

Adafruit I2C FRAM Breakout

Adafruit I2C FRAM Breakout Adafruit I2C FRAM Breakout Created by lady ada Last updated on 2017-07-14 05:38:45 AM UTC Guide Contents Guide Contents Overview Pinouts Power Pins: I2C Logic pins: Assembly Prepare the header strip: Add

More information

Using IFTTT with Adafruit IO to Make an IoT Door Detector

Using IFTTT with Adafruit IO to Make an IoT Door Detector Using IFTTT with Adafruit IO to Make an IoT Door Detector Created by Todd Treece Last updated on 2017-09-12 03:10:35 PM UTC Guide Contents Guide Contents Overview Adafruit.io + IFTTT Wiring Low Power Usage

More information

Trellis 3D Printed Enclosure

Trellis 3D Printed Enclosure Trellis 3D Printed Enclosure Created by Ruiz Brothers Last updated on 2018-08-22 03:39:07 PM UTC Guide Contents Guide Contents Overview Parts Tools & Supplies Modeling 123D Design Customize Measuring Parts

More information

Active Beauty Raw Material Information Profile

Active Beauty Raw Material Information Profile Trade name: PRIMALHYAL 1000 Commercial reference: SO_PRIM Harmonized tariff code: 3913900088 Supplier name: Soliance Country of origin: France Product category: Active cosmetic ingredient 1. Regulatory

More information

The Dunedin Art Show Terms and Conditions of Exhibition

The Dunedin Art Show Terms and Conditions of Exhibition The Dunedin Art Show Terms and Conditions of Exhibition Artists please take note of our terms and conditions. Read the terms and conditions well and make sure you understand them before you submit your

More information

INTERRUTTORI CREPUSCOLARI ASTRONOMICI. Manuale d Uso. memo AST2. Astronomical twilight switches: User Manual

INTERRUTTORI CREPUSCOLARI ASTRONOMICI. Manuale d Uso. memo AST2. Astronomical twilight switches: User Manual INTERRUTTORI CREPUSCOLARI ASTRONOMICI Manuale d Uso memo AST2 Astronomical twilight switches: User Manual Index Safety warnings pag. 3 Technical characteristics pag. 3 Dimensions pag. 4 Connection diagrams

More information

Adafruit IO Basics: Digital Output

Adafruit IO Basics: Digital Output Adafruit IO Basics: Digital Output Created by Todd Treece Last updated on 2017-09-12 03:10:33 PM UTC Guide Contents Guide Contents Overview Adafruit IO Setup Creating the Digital Feed Adding the Toggle

More information

Growth and Changing Directions of Indian Textile Exports in the aftermath of the WTO

Growth and Changing Directions of Indian Textile Exports in the aftermath of the WTO Growth and Changing Directions of Indian Textile Exports in the aftermath of the WTO Abstract A.M.Sheela Associate Professor D.Raja Jebasingh Asst. Professor PG & Research Department of Commerce, St.Josephs'

More information

Adafruit 10-DOF IMU Breakout

Adafruit 10-DOF IMU Breakout Adafruit 10-DOF IMU Breakout Created by Kevin Townsend Last updated on 2018-08-22 03:38:43 PM UTC Guide Contents Guide Contents Introduction Related Links Connecting It Up Basic Setup (5V Logic, Arduino

More information

Adafruit IO Basics: Color

Adafruit IO Basics: Color Adafruit IO Basics: Color Created by Todd Treece Last updated on 2017-02-20 04:33:33 PM UTC Guide Contents Guide Contents Overview Adafruit IO Setup Creating the Color Feed Adding the Color Block Wiring

More information

Circuit Playground Digital Input

Circuit Playground Digital Input Circuit Playground Digital Input Created by Carter Nelson Last updated on 2017-02-27 03:36:50 AM UTC Guide Contents Guide Contents Overview Required Parts Before Starting Digital Signals 3V Logic Pocket

More information

Guardian Shield+ Zelda Breath of the Wild

Guardian Shield+ Zelda Breath of the Wild Guardian Shield+ Zelda Breath of the Wild Created by Ruiz Brothers Last updated on 2018-08-22 04:01:50 PM UTC Guide Contents Guide Contents Overview Articulating Handle Rechargeable Prerequisite Guides

More information

Indian Eyewear Industry Report

Indian Eyewear Industry Report 2013 158 Pages For any queries or detailed information contact us on +91 22 2436 3161 /+91-22 60022001 or e-mail at research@reevolv.in Reevolv Advisory Services Private Limited Table of Contents Particulars

More information

Warstone Lane catacombs

Warstone Lane catacombs Warstone Lane catacombs Recently, Shortie and Leslam investigated the Warstone Burial indices to try to identify certain grave numbers that do not appear on the grave plans. This was instigated by the

More information

Outbreak Investigation

Outbreak Investigation Outbreak Investigation Joyce Chung Santa Clara County Public Health Department Steps of an outbreak investigation 1) Establish the existence of an outbreak 2) Verify the diagnosis 3) Define and identify

More information

Chapter 2 Relationships between Categorical Variables

Chapter 2 Relationships between Categorical Variables Chapter 2 Relationships between Categorical Variables Introduction: An important field of exploration when analyzing data is the study of relationships between variables. A lot of thought has been put

More information

U.S. FACILITIES EXPORTING TREATED HIDES AND SKINS, April

U.S. FACILITIES EXPORTING TREATED HIDES AND SKINS, April U.S. FACILITIES EXPORTING TREATED HIDES AND SKINS, April 2004-1 - APPROVAL OF FACILITIES TO EXPORT TREATED HIDES AND SKINS OF UNGULATES TO THE EUROPEAN UNION I. PURPOSE The purpose of this article is to:

More information

Adafruit MMA8451 Accelerometer Breakout

Adafruit MMA8451 Accelerometer Breakout Adafruit MMA8451 Accelerometer Breakout Created by lady ada Last updated on 2018-02-06 04:55:03 PM UTC Guide Contents Guide Contents Overview Pinouts Power Pins I2C Pins INT and ADDR Pins Assembly Prepare

More information

Adafruit DRV2605 Haptic Controller Breakout

Adafruit DRV2605 Haptic Controller Breakout Adafruit DRV2605 Haptic Controller Breakout Created by lady ada Last updated on 2016-10-03 09:48:16 PM UTC Guide Contents Guide Contents Overview Pinouts Power Pins I2C Pins Other! Assembly Prepare the

More information