Dean Harrison IBM. Date of presentation (03/11/2015) Session NE. WAPL A Sheepdog in the Pen

Size: px
Start display at page:

Download "Dean Harrison IBM. Date of presentation (03/11/2015) Session NE. WAPL A Sheepdog in the Pen"

Transcription

1 WAPL A Sheepdog in the Pen Dean Harrison IBM Date of presentation (03/11/2015) Session NE Session feedback Do it online at conferences.gse.org.uk/2015/feedback/ne

2 Abstract Traditionally scheduling tools made you decide exactly what is going to happen every day in advance, day in, day out. But gone are the days of static workloads, and scheduling tools need to be able to react dynamically to what happens each day. Previously this might have been possible with multiple versions of your schedules for each possible variance, but this brings effort and risk. IBM Workload Automation for z/os 9.3 introduced Workload Automation Programming Language for z/os (WAPL), which can be embedded within your scheduling definitions, allowing day to day variations from within, even being able to react to things that might happen, but you never know in advance. This session will show you how to embed basic WAPL code within your workload to handle rule based variation in execution, to trigger extra workload if needed and understand how to react to unpredictable events. 2 2

3 Agenda 1. Embedding 2. function 3. Occurrence control commands 4. Dealing with the unpredictable 3 3

4 Section 1 Embedding

5 New for IWS for z/os version 9.3 Workload Automation Programming Language for z/os Based on the SOE toolkit Is delivered within IWS A new capability is to be able to embed WAPL commands in applications Commands are stored in operation user fields Can be done with a normal WAPL batch job Use of a Started Task workstation removes need for individual jobs 5 5

6 Why would I use a started task workstation? You write ONE piece of JCL for WAPL and reuse over and over again It's quick, no initiator waits There is no system restriction of how many can run simultaneously Recommended for short processes only Leave real batch to initiators A separate workstation for WAPL is recommended (e.g. CMD1) Allows TWS automation to be controlled and limited if necessary Easy to spot where commands are being embedded 6 6

7 How do I implement a Started Task Workstation? First you need to know the setting of OPCOPTS RCLEANUP See In short... RCLEANUP(YES) EQQSTC must be in Master JCL STC jobs have job cards (base on EQQJOBS member EQQWCMD1) RCLEANUP(NO) EQQSTC must be in JES PROC00 STC jobs look like procs (base on EQQJOBS member EQQWCMD2) 7 7

8 Customisation of your WAPL STC job Recommended name XXXXCMD1 where XXXX is your subsystem name CMD1 would be your core task Allowing for other variants if needed Add a library to access your own modules of reusable code JCL //USRCODE DD DISP=SHR,DSN=MY.USER.CODE Accessed by INCLUDE USRCODE(MYWAPL) SYSIN points to pre-built member to identify the user fields to use - INCLUDE USER_FIELD(EQQ-SYSIN-*) Create your own if you want an alternate user field prefix NOTE: You can still embed without STC jobs, just slower. 8 8

9 Calling WAPL from user fields OPERATIONS Row 1 to 7 of 7 Command ===> Scroll ===> CSR Enter/Change data in the rows, and/or enter any of the following row commands: I(nn) - Insert, Hello R(nn),RR(nn) - Repeat, D(nn),DD - Delete S - Select operation details, J - Edit JCL Enter the TEXT command above to include operation text, or, enter the GRAPH command to view the list graphically. Application : DEEPFROG1 Demonstrate CMD1 WS Row Oper Duration Job name Internal predecessors Morepreds No.of cmd ws no. HH.MM.SS -IntExt- Conds '''' CMD WSLCCMD '''' CPU JOB '''' CPU JOB '''' CPU JOB '''' CPU JOB '''' CPU JOB '''' NONR ZLAST ******************************* Bottom of data ******************************** WAPL (STC) workstation WAPL Task Commands run in sort sequence OPERATION USER FIELDS Row 1 to 4 of 4 Command ===> Scroll ===> CSR Enter/Change data in the rows, and/or enter any of the following row commands: I(nn) - Insert, R(nn),RR(nn) - Repeat, D(nn),DD - Delete Application : DEEPFROG1 Demonstrate CMD1 WS Operation : CMD1 001 Jobname : WSLCCMD1 Row User Field Name User Field Value cmd '''' EQQ-SYSIN-01 VARSUB SCAN '''' EQQ-SYSIN-02 USRF(NOP=YES) '''' EQQ-SYSIN-03 USRF(HOLD=YES) '''' EQQ-SYSIN-04 JOBNAME(JOB050) ******************************* Bottom of data ******************************** 9 9

10 Section 2 function

11 WAPL knows when Returns TRUE or FALSE depending on whether the rule is true Simplest form assumes date is current IA date for scheduled, actual date for unscheduled MON ) would return TRUE if the AD is scheduled on a Monday The function can be used as part of IF/THEN expressions The function can be used as part of Occurrence Command rules 11

12 So what are the rules? Days of the week MON TUE WED THU FRI SAT SUN Part of the week - WEEKDAY WEEKEND Day type WORKDAY FREEDAY ( WORK, W, FREE or F allowed) Day of the month - D01 D31 Month of the year - M01 M12 Name of the month - JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC Year - Y00 Y99 A specific date yymmdd A valid ADRULE e.g. ONLY LAST(1) DAY(FRIDAY) MONTH 12

13 What's in a date Specific date in yymmdd format Relative date in +/-n format e.g. +1, -3 Relative Work date in +/-nwd e.g. +1WD (next working day using occurrence calendar) Relative Work date with alternate calendar e.g. +1WD/MYCAL 13

14 What are the options? CALENDAR specifies alternate calendar for use in rule FDAYRULE specifies free day rule for use in rule IAT specifies input arrival time for use in rule to accommodate calendar work day end Note: If rule or options contain spaces they should be enclosed in quotes. 14

15 Putting it all together functions can be combined Using REXX boolean operators - & for AND for OR \ or for NOT For WORK ) & ( FREE,+1) Is today and workday and tomorrow a free ONLY LAST(1) DAY(FRIDAY) MONTH ) FREE ) Is it last Friday and FRI ) & \@( MON,+1WD) Is it Friday with next working day NOT being a Monday? 15

16 Section 3 Occurrence control commands

17 What is an occurrence control command? A command that runs embedded at the beginning of an application It checks user fields of each operation in the occurrence Makes decisions based on those user fields Modifies the behaviour of the operations if required There are currently two occurrence commands RUNIF Decides whether an operation will run or not ALTIF Alters specific attributes 17

18 RUNIF Should I run today? RUNIF evaluates rules on every operation to decide if it runs The decision is made as follows - If the operation has no rules, it is allowed to run If the operation has a positive rule, it is only allowed to run if the rule is true If the operation has a negative rule, it is only allowed to run if the rule is false To stop an operation running the following happens The operation is moved to a non-reporting workstation All special resources are removed (optional, but default behaviour) All time dependencies are removed (optional but default behaviour) Note: There is an optional method to only run operations marked with a particular user field 18

19 This is how RUNIF CRITERIA(RUNME) WSNAME(NONR) OPERATIONS Row 1 to 7 of 7 Command ===> Scroll ===> CSR Enter/Change data in the rows, and/or enter any of the following row commands: I(nn) - Insert, R(nn),RR(nn) - Repeat, D(nn),DD - Delete S - Select operation details, J - Edit JCL Enter the TEXT command above to include operation text, or, enter the GRAPH command to view the list graphically. Application : RUNIF Demo RUNIF feature RUNME-POS-01=@(MON) RUNME-POS-01=@(TUE) RUNME-POS-01=@(WED) RUNME-NEG-01=@(THU) Row Oper Duration Job name Internal predecessors Morepreds No.of cmd ws no. HH.MM.SS -IntExt- Conds '''' CMD WSLCCMD '''' CPU JOB '''' CPU JOB '''' CPU JOB '''' CPU JOB '''' CPU JOB '''' NONR ZLAST ******************************* Bottom of data ******************************** 19

20 ALTIF How should I run today ALTIF can alter attributes dependent on rules Rules are contained in user fields (IF) Actions to perform are also in user fields (DO) The action is defined as keywords of ALTER command If the rule is false, or the operation has no rules, no action is taken The kind of things that can be altered are Time dependency attribute Operation input arrival Remove special resources 20

21 This is how ALTIF CRITERIA(ABC) OPERATIONS Row 1 to 7 of 7 Command ===> Scroll ===> CSR Enter/Change data in the rows, and/or enter any of the following row commands: I(nn) - Insert, R(nn),RR(nn) - Repeat, D(nn),DD - Delete S - Select operation details, J - Edit JCL Enter the TEXT command above to include operation text, or, enter the GRAPH command to view the list graphically. Application : ALTIF Demo ALTIF feature Row Oper Duration Job name Internal predecessors Morepreds No.of cmd ws no. HH.MM.SS -IntExt- Conds '''' CMD WSLCCMD '''' CPU JOB '''' CPU JOB '''' CPU JOB '''' CPU JOB '''' CPU JOB '''' NONR ZLAST ******************************* Bottom of data ******************************** ABC-01-IF=@('ONLY LAST(1) DAY(WORKDAY) WEEK') ABC-01-DO=UFNAME(LATESUB) UFVALUE(23:24 TUESDAY) ABC-01-DO=OPIA(!OYMD1.2359) TIMEDEP(Y) ABC-02-DO=OPIA(!OYMD1.2345) TIMEDEP(Y) ABC-01-IF=@(MON) ABC-01-DO=TIMEDEP(Y) 21

22 Let's pretend These techniques can also be used for testing Providing the ability to pretend it's a different day So in the command - EQQ-SYSIN-01 EQQ-SYSIN-02 EQQ-SYSIN-02 Then in the rules MON,!RULEDATE.) VARSUB SCAN VARSET RULEDATE VALUE(!OYMD1.) USRF(USERDATE) ALTIF CRITERIA(ABC) So in normal cases RULEDATE is set to the Input Arrival But if you add a user field called USERDATE it will use that value instead INSERT CPOC ADID(MYDYNAMAPPL) MODIFY CPOP OPNO(001) INSERT CPUSRF UFNAME(USERDATE) UFVALUE(151104) 22

23 Section 4 Dealing with the unpredictable

24 It isn't JUST about function Rules can combine function calls with other & (!MYVAR. = NO ) The variable can be Passed in by a user field A TWS supplied variable A variable in a TWS table Something set or manipulated in the code So a rule could be as simple as -!DATA = YES Somewhere in your batch you set the variable DATA to YES or NO Then RUNIF can be used at any point following to make jobs only run if there is data 24

25 You can write as much program as you like Up to 100 lines directly embedded Only 54 characters per line INCLUDE can be used to go beyond 100 lines and 54 characters WAPL code and other User Fields can co-exist due to EQQ-SYSIN- prefix The code can call ANY command, not just restricted to RUNIF or ALTIF The Current Plan Operation commands have a special keyword of == When == is coded the search is restricted to operations within the same occurrence Essentially a short form replacing the ADID and IA keywords for 54 character limit 25

26 Addition instead of subtraction For infrequent batch you can decide to add to the plan on demand Application jobs would decide whether today is the day These could then set a TWS variable Then a WAPL operation can decide to include batch at key points VARSUB SCAN VARSET DATA = "YES" IF "!DATA" = "YES" THEN ADD ADID(ADHOC) LINK(YES) The LINK keyword inserts the new application ahead of the WAPL successors 26

27 27 Any questions?

28 Please submit your feedback at Session is NE 28

NC - What is WAPL? And what WAPL can do for your workload. Dean Harrison November 2016

NC - What is WAPL? And what WAPL can do for your workload. Dean Harrison November 2016 NC - What is WAPL? And what WAPL can do for your workload Dean Harrison November 2016 Workload Automation Programming Language for z/os Data commands (PIF) LIST SELECT DELETE MODIFY INSERT etc Batch Loader

More information

IBM Workload Scheduler V9.3

IBM Workload Scheduler V9.3 IBM Workload Scheduler V9.3 Workload Automation Programming Language 9 Interesting application scenarios Raffaella Viola (IBM) 03/11/2015 Abstract Workload Automation Programming Language for z/os (WAPL)

More information

How do I launch a Frog? Let me count the ways...

How do I launch a Frog? Let me count the ways... How do I launch a Frog? Let me count the ways... Anna Dawson IBM (UK) Ltd November 2018 Session NG Abstract Over the years SOE/WAPL has been associated with the concept of juggling frogs, a reference to

More information

Training & Education

Training & Education Automated Systems And Planning IBM Tivoli Workload Automation Training & Education driving user innovation in workload automation since 1988 2009 IBM Corporation Automated Systems And Planning driving

More information

AIMMS Function Reference - Date Time Related Identifiers

AIMMS Function Reference - Date Time Related Identifiers AIMMS Function Reference - Date Time Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Date-Time

More information

76 days Wed 8/24/16 Wed 12/7/16 Daniel Wang,Shreyas Makde,Madhavi Potluri,Roua 2 Requirements analysis 11 days Wed 8/24/16 Wed 9/7/16

76 days Wed 8/24/16 Wed 12/7/16 Daniel Wang,Shreyas Makde,Madhavi Potluri,Roua 2 Requirements analysis 11 days Wed 8/24/16 Wed 9/7/16 ID Mode Name Duration Start Finish Predecessors Resource Names 1 OpenWells Cross-Platform Mobile Application 76 days Wed 8/24/16 Wed 12/7/16 Daniel Wang,Shreyas Makde,Madhavi 2 Requirements analysis 11

More information

CIMA Certificate BA Interactive Timetable

CIMA Certificate BA Interactive Timetable CIMA Certificate BA Interactive Timetable 2018 Nottingham & Leicester Version 3.2 Information last updated 09/03/18 Please note: Information and dates in this timetable are subject to change. Introduction

More information

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1 INFORMATION TECHNOLOGY SPREADSHEETS Part 1 Page: 1 Created by John Martin Exercise Built-In Lists 1. Start Excel Spreadsheet 2. In cell B1 enter Mon 3. In cell C1 enter Tue 4. Select cell C1 5. At the

More information

Payflow Implementer's Guide FAQs

Payflow Implementer's Guide FAQs Payflow Implementer's Guide FAQs FS-PF-FAQ-UG-201702--R016.00 Fairsail 2017. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced, disclosed, or used

More information

TWS/WebAdmin for z/os

TWS/WebAdmin for z/os TWS/WebAdmin for z/os Helmut Ziegler HORIZONT Software GmbH Date of presentation (01/11/2016) Session NE HORIZONT HORIZONT Software TWS/WebAdmin for z/os The Web Interface for IWS for z/os (aka TWS for

More information

Lecture Notes: ESC 101

Lecture Notes: ESC 101 Lecture Notes: ESC 101 Date: 26/02/2008 // Program to Display calendar of a given month import java.util.scanner; class Year int year; Year() this.year=2000; Year(int y) year=(y>1900)? y:1900; //if year

More information

Conditional Formatting

Conditional Formatting Microsoft Excel 2013: Part 5 Conditional Formatting, Viewing, Sorting, Filtering Data, Tables and Creating Custom Lists Conditional Formatting This command can give you a visual analysis of your raw data

More information

Arrays III and Enumerated Types

Arrays III and Enumerated Types Lecture 15 Arrays III and Enumerated Types Multidimensional Arrays & enums CptS 121 Summer 2016 Armen Abnousi Multidimensional Arrays So far we have worked with arrays with one dimension. Single dimensional

More information

CSE 341 Section Handout #6 Cheat Sheet

CSE 341 Section Handout #6 Cheat Sheet Cheat Sheet Types numbers: integers (3, 802), reals (3.4), rationals (3/4), complex (2+3.4i) symbols: x, y, hello, r2d2 booleans: #t, #f strings: "hello", "how are you?" lists: (list 3 4 5) (list 98.5

More information

Tivoli Workload Scheduler for z/os Nested Dependent Variables

Tivoli Workload Scheduler for z/os Nested Dependent Variables Tivoli Workload Scheduler for z/os Nested Dependent Variables This document can be found on the web at www.ibm.com/support/techdocs Search for author s name under the category of White Papers. Version

More information

NORTHWEST. Course Schedule: Through June 2018 MICROSOFT ACCESS. Access 2016 / Access 2010 / Last Revised: 11/13/2017

NORTHWEST. Course Schedule: Through June 2018 MICROSOFT ACCESS. Access 2016 / Access 2010 / Last Revised: 11/13/2017 2659 Commercial Street SE, Suite 210 Salem, Oregon 97302 The Professional s Choice since 1983 Locally Owned & Operated Course Schedule: Through June 2018 Last Revised: 11/13/2017 Phone: (503) 362-4818

More information

Contents. Chapter 1 Time Sheets 02. Chapter 2 Your Schedule. Chapter 3 Jobs. Chapter 4 Starting a Timer. Chapter 5 Notes & Attachments

Contents. Chapter 1 Time Sheets 02. Chapter 2 Your Schedule. Chapter 3 Jobs. Chapter 4 Starting a Timer. Chapter 5 Notes & Attachments Contents Chapter 1 Time Sheets 02 Chapter 2 Your Schedule Chapter 3 Jobs Chapter 4 Starting a Timer Chapter 5 Notes & Attachments Chapter 6 Mark a Visit Complete Chapter 7 Invoicing Chapter 8 Quick Create

More information

MONITORING REPORT ON THE WEBSITE OF THE STATISTICAL SERVICE OF CYPRUS DECEMBER The report is issued by the.

MONITORING REPORT ON THE WEBSITE OF THE STATISTICAL SERVICE OF CYPRUS DECEMBER The report is issued by the. REPUBLIC OF CYPRUS STATISTICAL SERVICE OF CYPRUS MONITORING REPORT ON THE WEBSITE OF THE STATISTICAL SERVICE OF CYPRUS DECEMBER The report is issued by the Monitoring Report STATISTICAL DISSEMINATION AND

More information

BUP2 5/2 12/4/07 12:49 AM Page 1. Introduction

BUP2 5/2 12/4/07 12:49 AM Page 1. Introduction BUP2 5/2 12/4/07 12:49 AM Page 1 Introduction This booklet will give you easy to follow instructions to allow you to set your BUP2 Programmer to the Weekday/Weekend, (same times Monday - Friday, different

More information

Database Programming with SQL

Database Programming with SQL Database Programming with SQL 4-3 Objectives This lesson covers the following objectives: Demonstrate the use of SYSDATE and date functions State the implications for world businesses to be able to easily

More information

10/16/2016 CPET 490 SENIOR DESIGN PROJECT PHASE I ANDROID GOLF STATISTICS TRACKER. Brad Sorensen Kory Martin PROJECT SUMMARY

10/16/2016 CPET 490 SENIOR DESIGN PROJECT PHASE I ANDROID GOLF STATISTICS TRACKER. Brad Sorensen Kory Martin PROJECT SUMMARY CPET 490 SENIOR DESIGN PROJECT PHASE I ANDROID GOLF STATISTICS TRACKER Brad Sorensen Kory Martin PROJECT SUMMARY 1 Project Summary Allow users to track and analyze statistical information about their golf

More information

IT Services Executive Summary August 2017 KPI (974) (4106) Incidents 89% Requests 95% (4) (100) P1 Inc. 80% P2 Inc. 80% Incident and Service Request KPIs were expected to breach mainly due to the resourcing

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS DISTRICT 7030 WEBSITE FREQUENTLY ASKED QUESTIONS NB: THIS WILL BE REGULARLY UPDATED FOR YOUR INFORMATION. 1. This website works better with the following browsers: Internet Explorer (IE) and Google Chrome.

More information

HPE Security Data Security. HPE SecureData. Product Lifecycle Status. End of Support Dates. Date: April 20, 2017 Version:

HPE Security Data Security. HPE SecureData. Product Lifecycle Status. End of Support Dates. Date: April 20, 2017 Version: HPE Security Data Security HPE SecureData Product Lifecycle Status End of Support Dates Date: April 20, 2017 Version: 1704-1 Table of Contents Table of Contents... 2 Introduction... 3 HPE SecureData Appliance...

More information

Section 1.2: What is a Function? y = 4x

Section 1.2: What is a Function? y = 4x Section 1.2: What is a Function? y = 4x y is the dependent variable because it depends on what x is. x is the independent variable because any value can be chosen to replace x. Domain: a set of values

More information

software.sci.utah.edu (Select Visitors)

software.sci.utah.edu (Select Visitors) software.sci.utah.edu (Select Visitors) Web Log Analysis Yearly Report 2002 Report Range: 02/01/2002 00:00:0-12/31/2002 23:59:59 www.webtrends.com Table of Contents Top Visitors...3 Top Visitors Over Time...5

More information

Operator overloading: extra examples

Operator overloading: extra examples Operator overloading: extra examples CS319: Scientific Computing (with C++) Niall Madden Week 8: some extra examples, to supplement what was covered in class 1 Eg 1: Points in the (x, y)-plane Overloading

More information

DOWNLOAD OR READ : YEAR PLANNER 2014 WORD DOCUMENT VIEW PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : YEAR PLANNER 2014 WORD DOCUMENT VIEW PDF EBOOK EPUB MOBI DOWNLOAD OR READ : YEAR PLANNER 2014 WORD DOCUMENT VIEW PDF EBOOK EPUB MOBI Page 1 Page 2 year planner 2014 word document view year planner 2014 word pdf year planner 2014 word document view 2014 Calendar.

More information

Package RcppBDT. August 29, 2016

Package RcppBDT. August 29, 2016 Type Package Package RcppBDT August 29, 2016 Title Rcpp bindings for the Boost Date_Time library Version 0.2.3 Date 2014-04-13 Author Dirk Eddelbuettel and Romain Francois Maintainer This package provides

More information

Private Swimming Lessons

Private Swimming Lessons Private Swimming Lessons Private Lessons Designed for participants who would like a 1:1 ratio. Participants will receive individual attention to improve their swimming technique and have the convenience

More information

IT Services Executive Summary May 2017 1631 Incidents KPI As expected, the trend for a majority (1631) (4365) Incidents 78% Volumes Requests Requests 94% (4) (158) P1 Inc. 50% 4365 P2 Inc. 88% 2211 Phone

More information

What if Analysis, Charting, and Working with Large Worksheets. Chapter 3

What if Analysis, Charting, and Working with Large Worksheets. Chapter 3 What if Analysis, Charting, and Working with Large Worksheets Chapter 3 What we will cover Rotating Text Using the fill handle to create a series of month names Copying and pasting What we will cover Inserting,

More information

Contents. SCHTASKS CLI enables an administrator to manage scheduled tasks. SCHTASKS /parameter [arguments] SCHTASKS /Run

Contents. SCHTASKS CLI enables an administrator to manage scheduled tasks. SCHTASKS /parameter [arguments] SCHTASKS /Run SCHTASKS CLI enables an administrator to manage scheduled tasks Contents SCHTASKS /parameter [arguments]... 1 SCHTASKS /Run... 1 SCHTASKS /End... 2 SCHTASKS /Create... 2 SCHTASKS /Delete... 4 SCHTASKS

More information

A new data type: Lists. March 5, 2018 Sprenkle - CSCI Ø How can we convert from the numerical representa9on to the character?

A new data type: Lists. March 5, 2018 Sprenkle - CSCI Ø How can we convert from the numerical representa9on to the character? Objec9ves A new data type: Lists March 5, 2018 Sprenkle - CSCI111 1 Review How can we convert between characters and their numerical representa9on? Ø How can we convert from the numerical representa9on

More information

The Scheduler & Hotkeys plugin PRINTED MANUAL

The Scheduler & Hotkeys plugin PRINTED MANUAL The Scheduler & Hotkeys plugin PRINTED MANUAL Scheduler & Hotkeys plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

BUT2 7day 11/4/07 11:07 PM Page 1. Introduction

BUT2 7day 11/4/07 11:07 PM Page 1. Introduction BUT2 7day 11/4/07 11:07 PM Page 1 Introduction This booklet will give you easy to follow instructions to allow you to set your BUT2 Timeswitch to the 7 Day, (different times every day) program. Contents

More information

Package taskscheduler

Package taskscheduler Type Package Package taskscheduler November 16, 2017 Title Schedule R Scripts and Processes with the Windows Task Scheduler Schedule R scripts/processes with the Windows task scheduler. This allows R users

More information

I I. I I Wed 28-Jan-I WW1 - External Data I. EPF 29.5 Water Results. Consent of copyright owner required for any other use.

I I. I I Wed 28-Jan-I WW1 - External Data I. EPF 29.5 Water Results. Consent of copyright owner required for any other use. ~ EPF 29.5 Water Results 2. WW1 - External Data Frequency Parameter Week Day Date 2Mon 05-Jan-5. 1 06-Jan-5 [Wed ] 07-Jan-5 [Thu 1 08-Jan-5 Fri 09-Jan-5 O-Jan- 5 1 -Jan- 5 3 Mon 12-Jan- 5 ]Tue 13-Jan-5

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2018 Live Online Information version 8 last updated 04/05/18 Please note information and dates are subject to change. Premium Learning Partner 2018 CIMA Cert BA Course Overview

More information

IBM. Glossary. IBM Tivoli Workload Automation. Version 9 Release 2

IBM. Glossary. IBM Tivoli Workload Automation. Version 9 Release 2 IBM Tivoli Workload Automation IBM Glossary Version 9 Release 2 IBM Tivoli Workload Automation IBM Glossary Version 9 Release 2 Note Before using this information and the product it supports, read the

More information

GEOMETRY (TENTATIVE SCHEDULE) WEEK 1. Abbreviations: LT = Learning Target, Std. = Standard GR = Geometry Review Worksheet (Mixed Math Review)

GEOMETRY (TENTATIVE SCHEDULE) WEEK 1. Abbreviations: LT = Learning Target, Std. = Standard GR = Geometry Review Worksheet (Mixed Math Review) WEEK 1 MON Jan. 30 Std. 9-A * Lesson 8-1A: Pythagorean Theorem * Practice: Problems 1-9 all on back of note sheet TUE Jan. 31 Std. 9-A&B * LT Quiz Review (Radical Expressions) * Lesson 8-1A: Pythagorean

More information

High Performance Computing

High Performance Computing High Performance Computing MPI and C-Language Seminars 2009 Photo Credit: NOAA (IBM Hardware) High Performance Computing - Seminar Plan Seminar Plan for Weeks 1-5 Week 1 - Introduction, Data Types, Control

More information

TCA metric #3. TCA and fair execution. The metrics that the FX industry must use.

TCA metric #3. TCA and fair execution. The metrics that the FX industry must use. LMAX Exchange: TCA white paper V1. - May 17 TCA metric #3 TCA and fair execution. The metrics that the FX industry must use. An analysis and comparison of common FX execution quality metrics between last

More information

SCHEDULED PROGRAMMES/COURSES APRIL 2018 MARCH 2019 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY)

SCHEDULED PROGRAMMES/COURSES APRIL 2018 MARCH 2019 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY) SCHEDULED PROGRAMMES/ IL CH 2 SCHEDULED PROGRAMMES/ IL CH Award Categories Certificate Advanced Records : Modules 1 5** Audit Fundamentals: Modules 1 4 Budget Preparation & Effective Corporate Governance

More information

Functional Programming. Lecture 2: Algebra

Functional Programming. Lecture 2: Algebra Functional Programming by Łukasz Stafiniak Email: lukstafi@gmail.com, lukstafi@ii.uni.wroc.pl Web: www.ii.uni.wroc.pl/~lukstafi Lecture 2: Algebra Algebraic Data Types and some curious analogies 1 A Glimpse

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2017 2018 Live Online Version 1 Information last updated 09 October 2017 Please note: Information and dates in this timetable are subject to change. CIMA Cert BA Course

More information

Pennington County Government Justice Center. Schematic Design - October 27, 2015

Pennington County Government Justice Center. Schematic Design - October 27, 2015 Government Schematic Design - October 27, 2015 N Architecture 2 Proposed - Site Plan Proposed Jail / LEC Addition Proposed Addition 3 County Board Room Public Entrance County Attorney Proposed - Ground

More information

Asks for clarification of whether a GOP must communicate to a TOP that a generator is in manual mode (no AVR) during start up or shut down.

Asks for clarification of whether a GOP must communicate to a TOP that a generator is in manual mode (no AVR) during start up or shut down. # Name Duration 1 Project 2011-INT-02 Interpretation of VAR-002 for Constellation Power Gen 185 days Jan Feb Mar Apr May Jun Jul Aug Sep O 2012 2 Start Date for this Plan 0 days 3 A - ASSEMBLE SDT 6 days

More information

Microsoft Excel 2013 Series and Custom Lists (Level 3)

Microsoft Excel 2013 Series and Custom Lists (Level 3) IT Training Microsoft Excel 2013 Series and Custom Lists (Level 3) Contents Introduction...1 Extending a Single Cell...1 Built-in Data Series...2 Extending Two Cells...2 Extending Multiple Cells...3 Linear

More information

COP4020 Programming Assignment 1 - Spring 2011

COP4020 Programming Assignment 1 - Spring 2011 COP4020 Programming Assignment 1 - Spring 2011 In this programming assignment we design and implement a small imperative programming language Micro-PL. To execute Mirco-PL code we translate the code to

More information

User Guide. Need help? Electricity Pay As You Go. Visit our online Help Centre

User Guide. Need help? Electricity Pay As You Go. Visit our online Help Centre Need help? Visit our online Help Centre www.utilita.co.uk/help Call our Customer Care Team 03303 337 442 Emergency Line If you have lost supply please call 03452 068 999 Opening Hours 8:00am - 8:00pm Mon

More information

18050 (2.48 pages/visit) Jul Sep May Jun Aug Number of visits

18050 (2.48 pages/visit) Jul Sep May Jun Aug Number of visits 30-12- 0:45 Last Update: 29 Dec - 03:05 Reported period: OK Summary Reported period Month Dec First visit 01 Dec - 00:07 Last visit 28 Dec - 23:59 Unique visitors Number of visits Pages Hits Bandwidth

More information

Configure IBM Urban Code Deploy to manage Workload Automation for z/os objects By Maria Elena Massino

Configure IBM Urban Code Deploy to manage Workload Automation for z/os objects By Maria Elena Massino Configure IBM Urban Code Deploy to manage Workload Automation for z/os objects By Maria Elena Massino In this article I will show you step-by-step how to configure IBM UrbanCode Deploy with Workload Automation

More information

Schedule/BACnet Schedule

Schedule/BACnet Schedule Object Dictionary 1 Schedule/BACnet Schedule Introduction Note: The Johnson Controls Schedule object is considered a BACnet Schedule object because it supports BACnet functionality. In addition, this object

More information

Batch Scheduler. Version: 16.0

Batch Scheduler. Version: 16.0 Batch Scheduler Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from, through

More information

Tivoli Workload Scheduler for z/os Messages and Codes. Version 8.1 SH

Tivoli Workload Scheduler for z/os Messages and Codes. Version 8.1 SH Tivoli Workload Scheduler for z/os Messages and Codes Version 8.1 SH19-4548-00 Tivoli Workload Scheduler for z/os Messages and Codes Version 8.1 SH19-4548-00 Tivoli Workload Scheduler for z/os Messages

More information

REV SCHEDULER (iseries)

REV SCHEDULER (iseries) Powerful Scheduling made easy Run scheduled jobs in an unattended environment throughout your Enterprise to increase: Throughput, Accuracy, Efficiency. Base Model is native on all platforms Run REV SCHEDULER

More information

The MODBUS RTU/ASCII, MODBUS/TCP plugin PRINTED MANUAL

The MODBUS RTU/ASCII, MODBUS/TCP plugin PRINTED MANUAL The MODBUS RTU/ASCII, MODBUS/TCP plugin PRINTED MANUAL MODBUS RTU/ASCII, MODBUS/TCP plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic,

More information

SCHEDULED PROGRAMMES/COURSES APRIL 2017 MARCH 2018 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY)

SCHEDULED PROGRAMMES/COURSES APRIL 2017 MARCH 2018 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY) SCHEDULED PROGRAMMES/ IL CH 2 SCHEDULED PROGRAMMES/ IL CH Award Categories Certificate Advanced Records (Modules 1 5)** Auditing Fundamentals Level 1: Modules 1 4 (NEW) Budget Preparation & Effective Corporate

More information

ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND

ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND BYTES PEOPLE SOLUTIONS Bytes Business Park 241 3rd Road Halfway Gardens Midrand Tel: +27 (11) 205-7000 Fax: +27 (11) 205-7110 Email: gauteng.sales@bytes.co.za

More information

10) LEVEL 4 Assessment Success Pack. EOY Target: Teacher: WA Grade: Targets: Name: Class:

10) LEVEL 4 Assessment Success Pack. EOY Target: Teacher: WA Grade: Targets: Name: Class: Name: Class: WA Grade: EOY Target: Teacher: Targets: 1) LEVEL 4 Assessment Success Pack 2) 3) 4) 5) 6) 7) 8) 9) 10) Number Patterns (4/1) 1.2 1.5 1.8 0.5 0.7 0.9 1.1 1.6 2.6 0.5 0.8 1.4 1 x 1 = Square

More information

This report is based on sampled data. Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec 28 Feb 1 Mar 8 Apr 12 May 17 Ju

This report is based on sampled data. Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec 28 Feb 1 Mar 8 Apr 12 May 17 Ju 0 - Total Traffic Content View Query This report is based on sampled data. Jun 1, 2009 - Jun 25, 2010 Comparing to: Site 300 Unique Pageviews 300 150 150 0 0 Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec

More information

3. EXCEL FORMULAS & TABLES

3. EXCEL FORMULAS & TABLES Winter 2019 CS130 - Excel Formulas & Tables 1 3. EXCEL FORMULAS & TABLES Winter 2019 Winter 2019 CS130 - Excel Formulas & Tables 2 Cell References Absolute reference - refer to cells by their fixed position.

More information

DUTCH BENCHMARK The 2017 Edition

DUTCH  BENCHMARK The 2017 Edition DUTCH EMAIL BENCHMARK 07 Management summary Dutch National Email Benchmark 07 With the increased digitalization of societies and due to the high return on investment, the use of email marketing is strategically

More information

BANGLADESH UNIVERSITY OF PROFESSIONALS ACADEMIC CALENDAR FOR MPhil AND PHD PROGRAM 2014 (4 TH BATCH) PART I (COURSE WORK)

BANGLADESH UNIVERSITY OF PROFESSIONALS ACADEMIC CALENDAR FOR MPhil AND PHD PROGRAM 2014 (4 TH BATCH) PART I (COURSE WORK) BANGLADESH UNIVERSITY OF PROFESSIONALS ACADEMIC CALENDAR FOR MPhil AND PHD PROGRAM 2014 (4 TH BATCH) DAY Soci-Economic and Political History of Bangladesh PART I (COURSE WORK) 1 ST SEMESTER 2 ND SEMESTER

More information

UPCOMING PROGRAMMES/COURSES APRIL 2016 MARCH 2017 (MIND KINGSTON & MANDEVILLE CAMPUSES)

UPCOMING PROGRAMMES/COURSES APRIL 2016 MARCH 2017 (MIND KINGSTON & MANDEVILLE CAMPUSES) UPCOMING PROGRAMMES/ IL CH 2 UPCOMING PROGRAMMES/ IL CH Award Categories Certificate Budget Preparation & Effective Corporate Governance Effective Report Writing Finance for NonFinancial Managers Fundamentals

More information

Maintaining the Central Management System Database

Maintaining the Central Management System Database CHAPTER 12 Maintaining the Central Management System Database This chapter describes how to maintain the Central Management System (CMS) database using CLI commands as well as using the Content Distribution

More information

Today we spend some time in programming with the internet and their protocols too. Hope you did already work with the Starter 1 and 2 or 3 and 4 at:

Today we spend some time in programming with the internet and their protocols too. Hope you did already work with the Starter 1 and 2 or 3 and 4 at: maxbox Starter 5 Start with Internet Programming 1.1 First Step of Indy Today we spend some time in programming with the internet and their protocols too. Hope you did already work with the Starter 1 and

More information

Objectives Reading SAS Data Sets and Creating Variables Reading a SAS Data Set Reading a SAS Data Set onboard ia.dfwlax FirstClass Economy

Objectives Reading SAS Data Sets and Creating Variables Reading a SAS Data Set Reading a SAS Data Set onboard ia.dfwlax FirstClass Economy Reading SAS Data Sets and Creating Variables Objectives Create a SAS data set using another SAS data set as input. Create SAS variables. Use operators and SAS functions to manipulate data values. Control

More information

IT Services Executive Summary June 2016 KPI (1678) (5149) Incidents 85% Requests 87% (26) (270) P1 Inc. 35% Volumes 1678 5149 Incidents Requests P2 Inc. 90% 2191 Phone The P1 KPI was heavily impacted by

More information

SCHEDULED PROGRAMMES/COURSES APRIL 2018 MARCH 2019 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY)

SCHEDULED PROGRAMMES/COURSES APRIL 2018 MARCH 2019 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY) SCHEDULED PROGRAMMES/ IL CH 2 SCHEDULED PROGRAMMES/ IL CH Award Categories Certificate Advanced Records : Modules 1 5** Audit Fundamentals: Modules 1 4 Budget Preparation & Effective Corporate Governance

More information

IBM Tivoli Workload Scheduler for z/os. Messages and Codes. Version 8.1 (Maintenance Release October 2003) SH

IBM Tivoli Workload Scheduler for z/os. Messages and Codes. Version 8.1 (Maintenance Release October 2003) SH IBM Tivoli Workload Scheduler for z/os Messages and Codes Version 8.1 (Maintenance Release October 2003) SH19-4548-01 IBM Tivoli Workload Scheduler for z/os Messages and Codes Version 8.1 (Maintenance

More information

IT Services.

IT Services. IT Services Chat 24 (

More information

Appendix B WORKSHOP. SYS-ED/ Computer Education Techniques, Inc.

Appendix B WORKSHOP. SYS-ED/ Computer Education Techniques, Inc. Appendix B WORKSHOP SYS-ED/ Computer Education Techniques, Inc. 1 ISPF/PDF Environment 1. Log on to ISPF/PDF; different installations have different logon procedures. 1.1. The ISPF/PDF Primary Option Menu

More information

Tivoli Workload Scheduler for z/os Nested Dependent Variables

Tivoli Workload Scheduler for z/os Nested Dependent Variables Tivoli Workload Scheduler for z/os Nested Dependent Variables Mike Sine IBM Corporation Advanced Technical Support, Gaithersburg, MD sine@us.ibm.com This document is my second in a series on Tivoli Workload

More information

Microsoft Office Project and Project Server Reporting. June 24 th, 2009 Rich Weller, MBA, PMP, MCTS, MCITP Principal Consultant, Pcubed

Microsoft Office Project and Project Server Reporting. June 24 th, 2009 Rich Weller, MBA, PMP, MCTS, MCITP Principal Consultant, Pcubed Microsoft Office Project and Project Server Reporting June 24 th, 2009 Rich Weller, MBA, PMP, MCTS, MCITP Principal Consultant, Pcubed Agenda Reporting with Microsoft Project Views Static Reports Visual

More information

To: Prof. Chang, Prof. Lasser From: Mark Robinton, Brandon Balkind Subject: Senior Project Proposal Date: 12/2/2004

To: Prof. Chang, Prof. Lasser From: Mark Robinton, Brandon Balkind Subject: Senior Project Proposal Date: 12/2/2004 Page 1 of 8 To: Prof. Chang, Prof. Lasser From:, Subject: Senior Project Proposal Date: 12/2/2004 1. Introduction Managing artificial aquatic environments currently requires significant human interaction

More information

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

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

More information

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

Programming Advanced Job Scheduler for i5/os commands

Programming Advanced Job Scheduler for i5/os commands System i Programming Advanced Job Scheduler for i5/os commands Version 6 Release 1 System i Programming Advanced Job Scheduler for i5/os commands Version 6 Release 1 Note Before using this information

More information

SCI - software.sci.utah.edu (Select Visitors)

SCI - software.sci.utah.edu (Select Visitors) SCI - software.sci.utah.edu (Select Visitors) Web Log Analysis Yearly Report 2004 Report Range: 01/01/2004 00:00:00-12/31/2004 23:59:59 www.webtrends.com Table of Contents Top Visitors...3 Top Visitors

More information

HR Created on 8/12/2014 5:21:00 PM

HR Created on 8/12/2014 5:21:00 PM Created on 8/12/2014 5:21:00 PM Table of Contents... 1 Manager Self Service... 1 Employee Leave Sickness and Other Absence Types... 1 Enter Employee Sickness... 1 Enter Employee Sickness (Complex example)...

More information

IT Services.

IT Services. IT Services Executive Summary August 2018 KPI & Summary (1024) (4481) Incidents 86% Volumes Requests 87% (3) (52) P1 Inc. 80% 1223 (23%) 861 (16%) 516 (9%) 2784 (52%) P2 Inc. 78% Telephone Email In Person

More information

Measuring Large-Scale Distributed Systems: Case of BitTorrent Mainline DHT

Measuring Large-Scale Distributed Systems: Case of BitTorrent Mainline DHT Measuring Large-Scale Distributed Systems: Case of BitTorrent Mainline DHT Liang Wang Jussi Kangasharju Department of Computer Science, University of Helsinki, Finland 1 Why do people measure? System measurement

More information

Total Market Demand Wed Jul 26 Thu Jul 27 Fri Jul 28 Sat Jul 29 Sun Jul 30 Mon Jul 31 Tue Aug 01

Total Market Demand Wed Jul 26 Thu Jul 27 Fri Jul 28 Sat Jul 29 Sun Jul 30 Mon Jul 31 Tue Aug 01 MW July 26, 2017 - August 1, 2017 This report provides a summary of key market data from the IESO-administered markets. It is intended to provide a quick reference for all market stakeholders. It is composed

More information

IOF Job Archival Made Simple (IOF/JAMS)

IOF Job Archival Made Simple (IOF/JAMS) IOF Job Archival Made Simple (IOF/JAMS) Introduction Archiving Jobs The IOF Job Archival Made Simple (IOF/JAMS) package provides the ability to save JES2 jobs into z/os data sets in a way that they can

More information

Cisco Unified CME Commands: A

Cisco Unified CME Commands: A accept, page 3 access-digit, page 6 addons, page 8 address (voice emergency response location), page 10 addons, page 12 after-hour exempt, page 14 after-hour login http, page 16 after-hours block pattern,

More information

Automatic Renewal Using DIY Technology to Create an Improved Patron Experience

Automatic Renewal Using DIY Technology to Create an Improved Patron Experience Using DIY Technology to Create an Improved Patron Experience Samantha Jekot-Graham, Patron Experience Lead Phil Feilmeyer, System Integration What is automatic renewal? A service that automatically renews

More information

Book at wordlwide lowest price at:

Book at wordlwide lowest price at: ARGENTINA PRICES 0 USD GENERAL SPANISH COURSES Course type ARGENTINA, Bariloche, Ushuaia Mendoza, Puerto Madryn Price/Week + Intensive Group lessons per week 0 0 0 0 0 0 00 Super Intensive Group lessons

More information

Annex A to the DVD-R Disc and DVD-RW Disc Patent License Agreement Essential Sony Patents relevant to DVD-RW Disc

Annex A to the DVD-R Disc and DVD-RW Disc Patent License Agreement Essential Sony Patents relevant to DVD-RW Disc Annex A to the DVD-R Disc and DVD-RW Disc Patent License Agreement Essential Sony Patents relevant to DVD-RW Disc AT-EP S95P0391 1103087.1 09-Feb-01 1126619 8/16 Modulation AT-EP S95P0391 1120568.9 29-Aug-01

More information

The Speaker. Alain Fuhrer, born in Bachelor in computer science. Working with Oracle databases for about 12 years now

The Speaker. Alain Fuhrer, born in Bachelor in computer science. Working with Oracle databases for about 12 years now The Speaker Alain Fuhrer, born in 1986 Bachelor in computer science Working with Oracle databases for about 12 years now Head IT Databases at Swiss Mobiliar Insurance REPORTS ANALYTICS AUF ON OLTP DATEN

More information

Lecture 10: Boolean Expressions

Lecture 10: Boolean Expressions Lecture 10: Boolean Expressions CS1068+ Introductory Programming in Python Dr Kieran T. Herley Department of Computer Science University College Cork 2017-2018 KH (12/10/17) Lecture 10: Boolean Expressions

More information

UK EPR GDA PROJECT. Name/Initials Date 30/06/2011 Name/Initials Date 30/06/2011. Resolution Plan Revision History

UK EPR GDA PROJECT. Name/Initials Date 30/06/2011 Name/Initials Date 30/06/2011. Resolution Plan Revision History RP unique number: Page GI-UKEPR-RP-01-RP 0 30/06/2011 1 of 5 Approved for EDF by: A. PETIT Approved for AREVA by: C. WOOLDRIDGE Name/Initials Date 30/06/2011 Name/Initials Date 30/06/2011 Resolution Plan

More information

Statistics for web9 (2008)

Statistics for web9 (2008) Statistis for web9 () Side 1 web9 Statistis for: Last Update: 05 Jan 2009-02:13 Reported period: - Year - OK Awstats Web Site When: Monthly history Days of month Days of week Hours Who: Countries Full

More information

Decision Making Information from Your Mobile Device with Today's Rockwell Software

Decision Making Information from Your Mobile Device with Today's Rockwell Software Decision Making Information from Your Mobile Device with Today's Rockwell Software PUBLIC Rockwell Automation TechED 2016 @ROKTechED #ROKTechED Copyright 2016 Rockwell Automation, Inc. All Rights Reserved.

More information

[MS-SSPSJ]: SSP Scheduled Jobs Stored Procedures Protocol Specification

[MS-SSPSJ]: SSP Scheduled Jobs Stored Procedures Protocol Specification [MS-SSPSJ]: SSP Scheduled Jobs Stored Procedures Protocol Specification Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications

More information

Data Transfers in the Grid: Workload Analysis of Globus GridFTP

Data Transfers in the Grid: Workload Analysis of Globus GridFTP Data Transfers in the Grid: Workload Analysis of Globus GridFTP Nicolas Kourtellis, Lydia Prieto, Gustavo Zarrate, Adriana Iamnitchi University of South Florida Dan Fraser Argonne National Laboratory Objective

More information

Advancing the Art of Internet Edge Outage Detection

Advancing the Art of Internet Edge Outage Detection Advancing the Art of Internet Edge Outage Detection ACM Internet Measurement Conference 2018 Philipp Richter MIT / Akamai Ramakrishna Padmanabhan University of Maryland Neil Spring University of Maryland

More information

Manual Summary Split. Inactive Task. Inactive Task. Finish-only Progress Deadline External Tasks. Inactive Milestone Inactive Summary Manual Task

Manual Summary Split. Inactive Task. Inactive Task. Finish-only Progress Deadline External Tasks. Inactive Milestone Inactive Summary Manual Task ID Name Duration Start Finish Predecessors 1 Research On project 16 days Mon 9/19/11 Fri 10/7/11 2 Tempreture sensor 16 days Mon 9/19/11 Fri 10/7/11 3 humidity sensor 16 days Mon 9/19/11 Fri 10/7/11 4

More information

Troop calendar

Troop calendar Troop 546 2013-2014 calendar For questions and information please visit www.troop546peoriaaz.com or email troop546info@googlegroups.com August Court of honor Tue Aug 27, 2013 6pm - 7:30pm Award scouts

More information