Configuration Principles with Object Dependencies

Size: px
Start display at page:

Download "Configuration Principles with Object Dependencies"

Transcription

1 Configuration Principles with Object Dependencies 2014 North American CWG Conference Rick Servello

2 Relentless Commitment to B2B Excellence. DIFFERENTIATORS COMPANY Domain Mastery Industry Recognized Thought Leaders Trusted C-level Advisors No Excuses Delivery Model Independent, successful, and profitable since 1999 startup 4 Partners ALL Hands-On Practitioners 50+ EE s core skills/deep domain expertise Proven ecosystem of expert specialists CORE COMPETENCIES INDUSTRY EXPERTISE Industrial Manufacturing High Tech Heavy Equipment Medical Devices Food & Beverage Power & Energy SAP SOLUTION COVERAGE Variant Configuration Project Systems CPQ Applications Integration hybris/ssc early adopter Variant Configuration Experts Configuration Architecture Commerce Strategy and Road Mapping Integration and Optimization Systems and Knowledge Integration 100X Best Practices from 100+ SAP Implementations elogic.com Victor, NY

3 Understanding Object Dependencies

4 Object Dependencies The rules for how VC objects interact. Preconditions (Boolean) CU01 Select Conditions (Boolean) CU01 Procedures (Imperative) CU01 Constraints (Declarative) CU21

5 Object Dependencies Imperative (Non-Declarative) Logic A step-by-step list of commands to follow. Computations in terms of imperative statements. Must specify sequence. Sequence matters for execution. SAP: Procedures Example Languages: Basic, C, Fortran

6 Object Dependencies Declarative Logic Expresses what the program should do, not how. Declare relationships code engine enforces it. Cannot specify sequence. System determines the execution. SAP: Constraints Example Languages: RegEx, XAML, Prolog, SQL

7 Solving Simple Problems

8 Solving a Geometry Problem Here we have a spec for a Geometry problem: Area (A) Perimeter (P) How would you solve the all dimensions of a rectangle with Procedural Logic?

9 Solving a Geometry Problem What you would expect User enters length User enters width Area = Length * Width Perimeter = (2*L) + (2*W)

10 Solving a Geometry Problem (Procedure) AREA = LENGTH * WIDTH IF LENGTH SPECIFIED AND WIDTH SPECIFIED, LENGTH = AREA / WIDTH IF WIDTH SPECIFIED AND AREA SPECIFIED AND WIDTH > 0, WIDTH = AREA / LENGTH IF LENGTH SPECIFIED AND AREA SPECIFIED AND LENGTH > 0, PERIMETER = ( 2 * LENGTH ) + ( 2 * WIDTH ) IF LENGTH SPECIFIED AND WIDTH SPECIFIED. What about finding the Area when only Perimeter and Length is specified? W = ( P 2L ) / 2 A = L * (( P 2L ) / 2 ) and more

11 The Specs have changed! Length (L) Width (W) Area (A) Perimeter (P) Height (H) Volume (V) Aspect Ratio (R) Aspect Ratio = Length / Width

12 AREA = LENGTH * WIDTH IF LENGTH SPECIFIED AND WIDTH SPECIFIED, LENGTH = AREA / WIDTH IF WIDTH SPECIFIED AND AREA SPECIFIED AND WIDTH > 0, WIDTH = AREA / LENGTH IF LENGTH SPECIFIED AND AREA SPECIFIED AND LENGTH > 0, PERIMETER = ( 2 * LENGTH ) + ( 2 * WIDTH ) IF LENGTH SPECIFIED AND WIDTH SPECIFIED, VOLUME = ( LENGTH * WIDTH * HEIGHT ) IF LENGTH SPECIFIED AND WIDTH SPECIFIED AND HEIGHT SPECIFIED, HEIGHT = VOLUME / AREA IF VOLUME SPECIFIED AND AREA SPECIFIED AND AREA > 0, RATIO = LENGTH / WIDTH IF etc. Solving a Geometry Problem L = A / W W = A / L L = R * W W = V / ( L * H ) H = V / A V = L * W * H V = A * H A = L * W R = L / W P = ( 2 * L ) + ( 2 * W ) P = ( 2 * R * W ) + ( 2 * W ) W = ( P ( 2 * L ) ) / 2 A = L * ( ( P ( 2 * L ) ) / 2 ) (The Hard Way)

13 OBJECTS: X IS_A (300)GEO_MODEL WHERE A = AREA; L = LENGTH; W = WIDTH; H = HEIGHT; V = VOLUME; P = PERIMETER; R = RATIO RESTRICTIONS: A = L * W, V = L * W * H, P = ( 2 * L ) + ( 2 * W ), R = L / W INFERENCES: L, W, A, V, P, H, R Solving a Geometry Problem (The Simple Way)

14 Solving a Geometry Problem Example 1

15 Solving a Geometry Problem Example 2

16 Constraints As powerful as they are, Constraints have limitations: Cannot set default values on characteristics. Cannot evaluate null or not specified. Cannot perform iterative or sequential calculations. Cannot call PFUNCTIONS. Can only handle 64 arguments per constraint. Cannot use not equal to infer Restrictable Characteristics. and more

17 Solving Advanced Problems

18 US States West of the Mississippi: Washington (WA) California (CA) Oregon (OR) Nevada (NV) Idaho (ID) Utah (UT) Montana (MT) Wyoming (WY) Colorado (CO) North Dakota (ND) South Dakota (SD) Nebraska (NE) Kansas (KS) Minnesota (MN) Iowa (IA) Missouri (MO) Arizona (AZ) New Mexico (NM) Oklahoma (OK) Arkansas (AK) Texas (TX) Louisiana (LA)

19 The Problem: We need to plan a trip! The Requirements: We want to fly to the first State and then drive to visit two additional States. The states should all be different. Since we re traveling by car, connecting states must be adjacent to each other.

20 For instance Washington (WA) California (CA) Oregon (OR) Nevada (NV) Idaho (ID) Utah (UT) Montana (MT) Wyoming (WY) Colorado (CO) North Dakota (ND) South Dakota (SD) Nebraska (NE) Kansas (KS) Minnesota (MN) Iowa (IA) Missouri (MO) Arizona (AZ) New Mexico (NM) Oklahoma (OK) Arkansas (AK) Texas (TX) Louisiana (LA)

21 Our First Approach Let s use a Variant Table to help define relationships. Column 1: State Column 2: Adjacent? (Y = 1, N = 0) Column 3: List of States

22

23

24

25 Our First Approach OBJECTS: X IS_A (300)ST1 RESTRICTION: TABLE ST_STATE_PROXIMITY ( ST_STATE1 = X.ST_FIRST_STATE, ST_ADJ = '1', ST_STATE2 = X.ST_SECOND_STATE), TABLE ST_STATE_PROXIMITY ( ST_STATE1 = X.ST_SECOND_STATE, ST_ADJ = '1', ST_STATE2 = X.ST_THIRD_STATE) INFERENCES: X.ST_FIRST_STATE, X.ST_SECOND_STATE, X.ST_THIRD_STATE. OBJECTS: X IS_A (300)ST1 RESTRICTION: TABLE ST_STATE_PROXIMITY ( ST_STATE1 = X.ST_FIRST_STATE, ST_STATE2 = X.ST_THIRD_STATE) INFERENCES: X.ST_FIRST_STATE, X.ST_THIRD_STATE. CONDITION: X.ST_FIRST_STATE = X.ST_THIRD_STATE RESTRICTION: FALSE OR

26 It works!. But is there a better way? (Hint: the answer is Yes)

27 A Multi-Level Approach Our solution solves for exactly 3 States What if the user wants to specify the number of States? Travel KMAT How many Stops? State State State State State State What Stop Number Am I? What State Am I?

28 A Multi-Level Approach OBJECTS: X IS_A (300)STS, Y IS_A (300)STS CONDITION: X.ST_STOP = Y.ST_STOP - 1 RESTRICTION: TABLE ST_STATE_PROXIMITY ( ST_STATE1 = X.ST_STATE, ST_ADJ = '1', ST_STATE2 = Y.ST_STATE ) OBJECTS: X IS_A (300)STS, Y IS_A (300)STS RESTRICTION: Y.ST_STATE <> X.ST_STATE INFERENCES: X.ST_STATE, Y.ST_STATE

29 Configuration Principles to consider for Solution modeling Scalability / Modularity - How much rework is needed to expand? - What parts of this solution can be re-used? - Think about the future! Maintenance - Oops, did I just require all future models to be maintained by someone with a developer key? - Choose native SAP solutions over Z functions! Performance - How many lines of code did it take to solve it? - Did I ask the question is there a better way?

30 Your Turn to Talk to Us! Ask questions today & keep up the conversation tomorrow! Talk with us on Learn more on our blog blog.elogic.com Reach out to us

31 Configuration Principles with Object Dependencies If you would like more information on any of the topics in this presentation, please let me know! Example models from today are available in the CWG SAP Sandbox. Feel free to check out our table this week and ask questions. Thank you for your attention and enjoy the rest of your time at the 2014 North American CWG Conference!

Manufactured Home Production by Product Mix ( )

Manufactured Home Production by Product Mix ( ) Manufactured Home Production by Product Mix (1990-2016) Data Source: Institute for Building Technology and Safety (IBTS) States with less than three active manufacturers are indicated with asterisks (*).

More information

Oklahoma Economic Outlook 2015

Oklahoma Economic Outlook 2015 Oklahoma Economic Outlook 2015 by Dan Rickman Regents Professor of Economics and Oklahoma Gas and Electric Services Chair in Regional Economic Analysis http://economy.okstate.edu/ October 2013-2014 Nonfarm

More information

Reporting Child Abuse Numbers by State

Reporting Child Abuse Numbers by State Youth-Inspired Solutions to End Abuse Reporting Child Abuse Numbers by State Information Courtesy of Child Welfare Information Gateway Each State designates specific agencies to receive and investigate

More information

Alaska no no all drivers primary. Arizona no no no not applicable. primary: texting by all drivers but younger than

Alaska no no all drivers primary. Arizona no no no not applicable. primary: texting by all drivers but younger than Distracted driving Concern is mounting about the effects of phone use and texting while driving. Cellphones and texting January 2016 Talking on a hand held cellphone while driving is banned in 14 states

More information

Medium voltage Marketing contacts

Medium voltage Marketing contacts ELEC TR I FI C ATI O N PRO D U C T S Medium voltage 2 E P M E D I U M V O LTA G E Don't look the other way. Make quality happen. 8 EP MEDIUM VOLTAGE OEM instrument transformers, sensors, indoor circuit

More information

Bulk Resident Agent Change Filings. Question by: Stephanie Mickelsen. Jurisdiction. Date: 20 July Question(s)

Bulk Resident Agent Change Filings. Question by: Stephanie Mickelsen. Jurisdiction. Date: 20 July Question(s) Topic: Bulk Resident Agent Change Filings Question by: Stephanie Mickelsen Jurisdiction: Kansas Date: 20 July 2010 Question(s) Jurisdiction Do you file bulk changes? How does your state file and image

More information

What's Next for Clean Water Act Jurisdiction

What's Next for Clean Water Act Jurisdiction Association of State Wetland Managers Hot Topics Webinar Series What's Next for Clean Water Act Jurisdiction July 11, 2017 12:00 pm 1:30 pm Eastern Webinar Presenters: Roy Gardner, Stetson University,

More information

Terry McAuliffe-VA. Scott Walker-WI

Terry McAuliffe-VA. Scott Walker-WI Terry McAuliffe-VA Scott Walker-WI Cost Before Performance Contracting Model Energy Services Companies Savings Positive Cash Flow $ ESCO Project Payment Cost After 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

More information

CONSOLIDATED MEDIA REPORT B2B Media 6 months ended June 30, 2018

CONSOLIDATED MEDIA REPORT B2B Media 6 months ended June 30, 2018 CONSOLIDATED MEDIA REPORT B2B Media 6 months ended June 30, 2018 TOTAL GROSS CONTACTS 313,819 180,000 167,321 160,000 140,000 120,000 100,000 80,000 73,593 72,905 60,000 40,000 20,000 0 clinician s brief

More information

ACCESS PROCESS FOR CENTRAL OFFICE ACCESS

ACCESS PROCESS FOR CENTRAL OFFICE ACCESS ACCESS PROCESS FOR CENTRAL OFFICE ACCESS NOTE: Every person doing work of any nature in the central offices MUST have an access badge. Anyone who does not have a current access badge will be escorted from

More information

Is your standard BASED on the IACA standard, or is it a complete departure from the. If you did consider. using the IACA

Is your standard BASED on the IACA standard, or is it a complete departure from the. If you did consider. using the IACA Topic: XML Standards Question By: Sherri De Marco Jurisdiction: Michigan Date: 2 February 2012 Jurisdiction Question 1 Question 2 Has y If so, did jurisdiction you adopt adopted any the XML standard standard

More information

How Social is Your State Destination Marketing Organization (DMO)?

How Social is Your State Destination Marketing Organization (DMO)? How Social is Your State Destination Marketing Organization (DMO)? Status: This is the 15th effort with the original being published in June of 2009 - to bench- mark the web and social media presence of

More information

WINDSTREAM CARRIER ETHERNET: E-NNI Guide & ICB Processes

WINDSTREAM CARRIER ETHERNET: E-NNI Guide & ICB Processes WINDSTREAM CARRIER ETHERNET: E-NNI Guide & ICB Processes Version.0, April 2017 Overview The Carrier Ethernet (E-Access) product leverages Windstream s MPLS and Ethernet infrastructure to provide switched

More information

SECTION 2 NAVIGATION SYSTEM: DESTINATION SEARCH

SECTION 2 NAVIGATION SYSTEM: DESTINATION SEARCH NAVIGATION SYSTEM: DESTINATION SEARCH SECTION 2 Destination search 62 Selecting the search area............................. 62 Destination search by Home........................... 64 Destination search

More information

Wireless Network Data Speeds Improve but Not Incidence of Data Problems, J.D. Power Finds

Wireless Network Data Speeds Improve but Not Incidence of Data Problems, J.D. Power Finds Wireless Network Data Speeds Improve but Not Incidence of Data Problems, J.D. Power Finds Ranks Highest in Wireless Network Quality Performance in All Six Regions; U.S. Cellular Ties for Highest Rank in

More information

Chart 2: e-waste Processed by SRD Program in Unregulated States

Chart 2: e-waste Processed by SRD Program in Unregulated States e Samsung is a strong supporter of producer responsibility. Samsung is committed to stepping ahead and performing strongly in accordance with our principles. Samsung principles include protection of people,

More information

Arizona does not currently have this ability, nor is it part of the new system in development.

Arizona does not currently have this ability, nor is it part of the new system in development. Topic: Question by: : E-Notification Cheri L. Myers North Carolina Date: June 13, 2012 Manitoba Corporations Canada Alabama Alaska Arizona Arkansas California Colorado Connecticut Delaware District of

More information

Alaska ATU 1 $13.85 $4.27 $ $ Tandem Switching $ Termination

Alaska ATU 1 $13.85 $4.27 $ $ Tandem Switching $ Termination Page 1 Table 1 UNBUNDLED NETWORK ELEMENT RATE COMPARISON MATRIX All Rates for RBOC in each State Unless Otherwise Noted Updated April, 2001 Loop Port Tandem Switching Density Rate Rate Switching and Transport

More information

Question by: Scott Primeau. Date: 20 December User Accounts 2010 Dec 20. Is an account unique to a business record or to a filer?

Question by: Scott Primeau. Date: 20 December User Accounts 2010 Dec 20. Is an account unique to a business record or to a filer? Topic: User Accounts Question by: Scott Primeau : Colorado Date: 20 December 2010 Manitoba create user to create user, etc.) Corporations Canada Alabama Alaska Arizona Arkansas California Colorado Connecticut

More information

2013 Product Catalog. Quality, affordable tax preparation solutions for professionals Preparer s 1040 Bundle... $579

2013 Product Catalog. Quality, affordable tax preparation solutions for professionals Preparer s 1040 Bundle... $579 2013 Product Catalog Quality, affordable tax preparation solutions for professionals 2013 Preparer s 1040 Bundle... $579 Includes all of the following: Preparer s 1040 Edition Preparer s 1040 All-States

More information

Alaska ATU 1 $13.85 $4.27 $ $ Tandem Switching $ Termination

Alaska ATU 1 $13.85 $4.27 $ $ Tandem Switching $ Termination Page 1 Table 1 UNBUNDLED NETWORK ELEMENT RATE COMPARISON MATRIX All Rates for RBOC in each State Unless Otherwise Noted Updated July 1, 2001 Loop Port Tandem Switching Density Rate Rate Switching and Transport

More information

Ted C. Jones, PhD Chief Economist

Ted C. Jones, PhD Chief Economist Ted C. Jones, PhD Chief Economist Hurricanes U.S. Jobs Jobs (Millions) Seasonally Adjusted 150 145 140 135 130 1.41% Prior 12 Months 2.05 Million Net New Jobs in Past 12-Months 125 '07 '08 '09 '10 '11

More information

Established Lafayette St., P.O. Box 998 Issues Per Year: 12 Yarmouth, ME 04096

Established Lafayette St., P.O. Box 998 Issues Per Year: 12 Yarmouth, ME 04096 JANUARY 1, 2016 JUNE 30, 2016 SECURITY SYSTEMS NEWS UNITED PUBLICATIONS, INC. Established 1998 106 Lafayette St., P.O. Box 998 Issues Per Year: 12 Yarmouth, ME 04096 Issues This Report: 6 (207) 846-0600

More information

MapMarker Plus v Release Notes

MapMarker Plus v Release Notes Release Notes Table of Contents Introduction............................................................... 2 MapMarker Developer Installations........................................... 2 Running the

More information

Legal-Compliance Department October 11, 2017 Page 1 of 8

Legal-Compliance Department October 11, 2017 Page 1 of 8 Licensing Information NMLS I.D. 2600 Corporate Office: 1600 South Douglass Road, Suites 110 & 200-A, Anaheim, CA 92806 Loan Servicing Branch Offices: 2100 E. 196 th Street, Suites 100 & 200, Westfield,

More information

Installation Procedures

Installation Procedures Installation Procedures Installation Procedures Table of Contents Implementation Checklist Secure FTP Site Procedure for Sponsors Submission of Eligibility Files Self-Bill Payment Information Implementation

More information

Concurrent and Parallel Systems CS-160 Assignment 1 Prof B. D. Fleisch

Concurrent and Parallel Systems CS-160 Assignment 1 Prof B. D. Fleisch Concurrent and Parallel Systems CS-160 Assignment 1 Prof B. D. Fleisch Due: October 20, 2003 23:59:59 (turnin method will be announceed) You have asked write a database for a national auto dealer. The

More information

Legal-Compliance Department March 22, 2019 Page 1 of 7

Legal-Compliance Department March 22, 2019 Page 1 of 7 Licensing Information NMLS I.D. 2600 Corporate Office: 1600 South Douglass Road, Suites 110 & 200-A, Anaheim, CA 92806 Loan Servicing Branch Offices: 2100 E. 196 th Street, Suites 100 & 200, Westfield,

More information

AGILE BUSINESS MEDIA, LLC 500 E. Washington St. Established 2002 North Attleboro, MA Issues Per Year: 12 (412)

AGILE BUSINESS MEDIA, LLC 500 E. Washington St. Established 2002 North Attleboro, MA Issues Per Year: 12 (412) Please review your report carefully. If corrections are needed, please fax us the pages requiring correction. Otherwise, sign and return to your Verified Account Coordinator by fax or email. Fax to: 415-461-6007

More information

π H LBS. x.05 LB. PARCEL SCALE OVERVIEW OF CONTROLS uline.com CONTROL PANEL CONTROL FUNCTIONS lb kg 0

π H LBS. x.05 LB. PARCEL SCALE OVERVIEW OF CONTROLS uline.com CONTROL PANEL CONTROL FUNCTIONS lb kg 0 Capacity: x.5 lb / 6 x.2 kg π H-2714 LBS. x.5 LB. PARCEL SCALE 1-8-295-551 uline.com lb kg OVERVIEW OF CONTROLS CONTROL PANEL Capacity: x.5 lb / 6 x.2 kg 1 2 3 4 METTLER TOLEDO CONTROL PANEL PARTS # DESCRIPTION

More information

MapMarker Plus 12.0 Release Notes

MapMarker Plus 12.0 Release Notes MapMarker Plus 12.0 Release Notes Table of Contents Introduction, p. 2 Running the Tomcat Server as a Windows Service, p. 2 Desktop and Adapter Startup Errors, p. 2 Address Dictionary Update, p. 3 Address

More information

MapMarker Standard 10.0 Release Notes

MapMarker Standard 10.0 Release Notes MapMarker Standard 10.0 Release Notes Table of Contents Introduction............................................................... 1 System Requirements......................................................

More information

U.S. Residential High Speed Internet

U.S. Residential High Speed Internet U.S. Residential High Speed Internet High-Speed Internet High-Speed Fiber and DSL broadband options from two top providers: FIBER DSL *Availability and speeds vary by customer location. Why Sell High-Speed

More information

Managing Transportation Research with Databases and Spreadsheets: Survey of State Approaches and Capabilities

Managing Transportation Research with Databases and Spreadsheets: Survey of State Approaches and Capabilities Managing Transportation Research with Databases and Spreadsheets: Survey of State Approaches and Capabilities Pat Casey AASHTO Research Advisory Committee meeting Baton Rouge, Louisiana July 18, 2013 Survey

More information

Oklahoma Economic Outlook 2016

Oklahoma Economic Outlook 2016 Oklahoma Economic Outlook 216 by Dan Rickman Regents Professor of Economics and Oklahoma Gas and Electric Services Chair in Regional Economic Analysis http://economy.okstate.edu/ U.S. Real Gross Domestic

More information

Levels of Measurement. Data classing principles and methods. Nominal. Ordinal. Interval. Ratio. Nominal: Categorical measure [e.g.

Levels of Measurement. Data classing principles and methods. Nominal. Ordinal. Interval. Ratio. Nominal: Categorical measure [e.g. Introduction to the Mapping Sciences Map Composition & Design IV: Measurement & Class Intervaling Principles & Methods Overview: Levels of measurement Data classing principles and methods 1 2 Levels of

More information

2015 DISTRACTED DRIVING ENFORCEMENT APRIL 10-15, 2015

2015 DISTRACTED DRIVING ENFORCEMENT APRIL 10-15, 2015 2015 DISTRACTED DRIVING ENFORCEMENT APRIL 10-15, 2015 DISTRACTED DRIVING ENFORCEMENT CAMPAIGN COMMUNICATIONS DISTRACTED DRIVING ENFORCEMENT CAMPAIGN Campaign Information Enforcement Dates: April 10-15,

More information

MapMarker Plus 10.2 Release Notes

MapMarker Plus 10.2 Release Notes MapMarker Plus 10.2 Table of Contents Introduction............................................................... 1 System Requirements...................................................... 1 System Recommendations..................................................

More information

Important Announcements

Important Announcements Important Announcements Regarding your funds The funds you currently have in your account are secure and safeguarded under, and according to, the regulatory guidelines of your state. We are unable to complete

More information

CONSOLIDATED MEDIA REPORT Business Publication 6 months ended December 31, 2017

CONSOLIDATED MEDIA REPORT Business Publication 6 months ended December 31, 2017 CONSOLIDATED MEDIA REPORT Business Publication 6 months ended December 31, 2017 TOTAL GROSS CONTACTS 1,952,295 2,000,000 1,800,000 1,868,402 1,600,000 1,400,000 1,200,000 1,000,000 800,000 600,000 400,000

More information

Introduction to R for Epidemiologists

Introduction to R for Epidemiologists Introduction to R for Epidemiologists Jenna Krall, PhD Thursday, January 29, 2015 Final project Epidemiological analysis of real data Must include: Summary statistics T-tests or chi-squared tests Regression

More information

Expanding Transmission Capacity: Options and Implications. What role does renewable energy play in driving transmission expansion?

Expanding Transmission Capacity: Options and Implications. What role does renewable energy play in driving transmission expansion? Expanding Transmission Capacity: Options and Implications What role does renewable energy play in driving transmission expansion? Beth Soholt Director, Wind on the Wires bsoholt@windonthewires.org Office:

More information

Crop Progress. Corn Emerged - Selected States [These 18 States planted 92% of the 2016 corn acreage]

Crop Progress. Corn Emerged - Selected States [These 18 States planted 92% of the 2016 corn acreage] Crop Progress ISSN: 00 Released June, 0, by the National Agricultural Statistics Service (NASS), Agricultural Statistics Board, United s Department of Agriculture (USDA). Corn Emerged Selected s [These

More information

J.D. Power and Associates Reports: Overall Wireless Network Problem Rates Differ Considerably Based on Type of Usage Activity

J.D. Power and Associates Reports: Overall Wireless Network Problem Rates Differ Considerably Based on Type of Usage Activity Reports: Overall Wireless Network Problem Rates Differ Considerably Based on Type of Usage Activity Ranks Highest in Wireless Network Quality Performance in Five Regions WESTLAKE VILLAGE, Calif.: 25 August

More information

Distracted Driving Accident Claims Involving Mobile Devices Special Considerations and New Frontiers in Legal Liability

Distracted Driving Accident Claims Involving Mobile Devices Special Considerations and New Frontiers in Legal Liability Presenting a live 90-minute webinar with interactive Q&A Distracted Driving Accident Claims Involving Mobile Devices Special Considerations and New Frontiers in Legal Liability WEDNESDAY, AUGUST 1, 2012

More information

User Experience Task Force

User Experience Task Force Section 7.3 Cost Estimating Methodology Directive By March 1, 2014, a complete recommendation must be submitted to the Governor, Chief Financial Officer, President of the Senate, and the Speaker of the

More information

The Promise of Brown v. Board Not Yet Realized The Economic Necessity to Deliver on the Promise

The Promise of Brown v. Board Not Yet Realized The Economic Necessity to Deliver on the Promise Building on its previous work examining education and the economy, the Alliance for Excellent Education (the Alliance), with generous support from Farm, analyzed state-level economic data to determine

More information

INSTRUCTIONS FOR.TXT FIXED FILE SSA UPLOAD QUARTERLY WAGE & TAX REPORTING

INSTRUCTIONS FOR.TXT FIXED FILE SSA UPLOAD QUARTERLY WAGE & TAX REPORTING INSTRUCTIONS FOR.TXT FIXED FILE SSA UPLOAD QUARTERLY WAGE & TAX REPORTING TABLE OF CONTENTS LWC_Instructions_Rev: 07/06/207 I. Instruction for Quarterly wage reporting..3 II. General Information. 4 A.

More information

Publisher's Sworn Statement

Publisher's Sworn Statement Publisher's Sworn Statement CLOSETS & Organized Storage is published four times per year and is dedicated to providing the most current trends in design, materials and technology to the professional closets,

More information

4/25/2013. Bevan Erickson VP, Marketing

4/25/2013. Bevan Erickson VP, Marketing 2013 Bevan Erickson VP, Marketing The Challenge of Niche Markets 1 Demographics KNOW YOUR AUDIENCE 120,000 100,000 80,000 60,000 40,000 20,000 AAPC Membership 120,000+ Members - 2 Region Members Northeast

More information

Crop Progress. Corn Dough Selected States [These 18 States planted 92% of the 2017 corn acreage] Corn Dented Selected States ISSN:

Crop Progress. Corn Dough Selected States [These 18 States planted 92% of the 2017 corn acreage] Corn Dented Selected States ISSN: Crop Progress ISSN: 00 Released August, 0, by the National Agricultural Statistics Service (NASS), Agricultural Statistics Board, United s Department of Agriculture (USDA). Corn Dough Selected s [These

More information

DATES OF EVENT: Conference: March 31 April 2, 2009 Exhibits: April 1 3, Sands Expo & Convention Center, Las Vegas, NV

DATES OF EVENT: Conference: March 31 April 2, 2009 Exhibits: April 1 3, Sands Expo & Convention Center, Las Vegas, NV EVENT AUDIT DATES OF EVENT: Conference: March 31 April 2, 2009 Exhibits: April 1 3, 2009 LOCATION: Sands Expo & Convention Center, Las Vegas, NV EVENT PRODUCER/MANAGER: Company Name: Reed Exhibitions Address:

More information

DATES OF EVENT: Conference: March 23 March 25, 2010 Exhibits: March 24 March 26, Sands Expo & Convention Center, Las Vegas, NV

DATES OF EVENT: Conference: March 23 March 25, 2010 Exhibits: March 24 March 26, Sands Expo & Convention Center, Las Vegas, NV EVENT AUDIT DATES OF EVENT: Conference: March 23 March 25, 2010 Exhibits: March 24 March 26, 2010 LOCATION: Sands Expo & Convention Center, Las Vegas, NV EVENT PRODUCER/MANAGER: Company Name: Reed Exhibitions

More information

JIM TAYLOR PILOT CAR SVC J & J PILOT CAR SVC PILOTCAR.NET ROYAL ESCORT

JIM TAYLOR PILOT CAR SVC J & J PILOT CAR SVC PILOTCAR.NET ROYAL ESCORT Alabama CONSUMER CARRIERS, LLC 334-476-1977 DRIVERS FIRST CHOICE FAITH PILOT CAR 405-642-4276 PIT ROW SERVICES 205-763-9340 TY-TY EXPRESS PILOT CAR 334-559-1568 Arizona AG PILOT CAR 480-686-7383 ALL STATE

More information

US STATE CONNECTIVITY

US STATE CONNECTIVITY US STATE CONNECTIVITY P3 REPORT FOR CELLULAR NETWORK COVERAGE IN INDIVIDUAL US STATES DIFFERENT GRADES OF COVERAGE When your mobile phone indicates it has an active signal, it is connected with the most

More information

Advanced LabVIEW for FTC

Advanced LabVIEW for FTC Advanced LabVIEW for FTC By Mike Turner Software Mentor, Green Machine If you only write down one slide. This is that slide. 1. Use enumerated types more often. 2. Make functional global variables for

More information

Disaster Economic Impact

Disaster Economic Impact Hurricanes Disaster Economic Impact Immediate Impact 6-12 Months Later Loss of Jobs Declining Home Sales Strong Job Growth Rising Home Sales Punta Gorda MSA Employment Thousands Seasonally Adjusted 50

More information

LAB #6: DATA HANDING AND MANIPULATION

LAB #6: DATA HANDING AND MANIPULATION NAVAL POSTGRADUATE SCHOOL LAB #6: DATA HANDING AND MANIPULATION Statistics (OA3102) Lab #6: Data Handling and Manipulation Goal: Introduce students to various R commands for handling and manipulating data,

More information

PUBLIC LAND SURVEY SYSTEM IN GOOGLE EARTH. By Thomas G. Davis 1, PhD, PE, PLS. Legacy

PUBLIC LAND SURVEY SYSTEM IN GOOGLE EARTH. By Thomas G. Davis 1, PhD, PE, PLS. Legacy PUBLIC LAND SURVEY SYSTEM IN GOOGLE EARTH By Thomas G. Davis 1, PhD, PE, PLS INTRODUCTION PLSGE (http://www.metzgerwillard.us/plss/) is a web-based service for visualizing the Public Land Survey System

More information

Summary of the State Elder Abuse. Questionnaire for Alaska

Summary of the State Elder Abuse. Questionnaire for Alaska Summary of the State Elder Abuse Questionnaire for Alaska A Final Report to: Department of Administration Adult Protective Services February 2002 Prepared by Researchers at The University of Iowa Department

More information

Embedded Systems Conference Silicon Valley

Embedded Systems Conference Silicon Valley Embedded Systems Conference Silicon Valley EVENT AUDIT DATES OF EVENT: Conference: April 3 7, 2006 Exhibits: April 4 6, 2006 LOCATION: McEnery Convention Center, San Jose EVENT PRODUCER/MANAGER: Company

More information

NEHA-NRPP APPLICATION FOR CERTIFICATION

NEHA-NRPP APPLICATION FOR CERTIFICATION NEHA-NRPP APPLICATION FOR CERTIFICATION This application is a basic form to provide NEHA-NRPP with information necessary to finalize your certification and provide you with an opportunity to apply for

More information

57,611 59,603. Print Pass-Along Recipients Website

57,611 59,603. Print Pass-Along Recipients Website TOTAL GROSS CONTACTS: 1,268,334* 1,300,000 1,200,000 1,151,120 1,100,000 1,000,000 900,000 800,000 700,000 600,000 500,000 400,000 300,000 200,000 100,000 0 57,611 59,603 Pass-Along Recipients Website

More information

MapMarker Plus v Release Notes

MapMarker Plus v Release Notes Release Notes Table of Contents Introduction............................................................... 2 MapMarker Developer Installations........................................... 2 Running the

More information

Presented By: George Mavrantzas, Vice President of Special Projects, Global Cash Card

Presented By: George Mavrantzas, Vice President of Special Projects, Global Cash Card Presented By: George Mavrantzas, Vice President of Special Projects, Global Cash Card 1 Overview of Current Payroll Card Space 2 Employer and Employee Benefits 3 Additional Considerations of Implementing

More information

CostQuest Associates, Inc.

CostQuest Associates, Inc. Case Study U.S. 3G Mobile Wireless Broadband Competition Report Copyright 2016 All rights reserved. Case Study Title: U.S. 3G Mobile Wireless Broadband Competition Report Client: All Service Area: Economic

More information

Silicosis Prevalence Among Medicare Beneficiaries,

Silicosis Prevalence Among Medicare Beneficiaries, Silicosis Prevalence Among Medicare Beneficiaries, 1999 2014 Megan Casey, RN, BSN, MPH Nurse Epidemiologist Expanding Research Partnerships: State of the Science June 21, 2017 National Institute for Occupational

More information

Instructions for Enrollment

Instructions for Enrollment Instructions for Enrollment No Medicaid There are 3 documents contained in this Enrollment Packet which need to be completed to enroll with the. Please submit completed documents in a PDF to Lab Account

More information

Fall 2007, Final Exam, Data Structures and Algorithms

Fall 2007, Final Exam, Data Structures and Algorithms Fall 2007, Final Exam, Data Structures and Algorithms Name: Section: Email id: 12th December, 2007 This is an open book, one crib sheet (2 sides), closed notebook exam. Answer all twelve questions. Each

More information

DATES OF NEXT EVENT: Conference: June 4 8, 2007 Exhibits: June 4 7, 2007 San Diego Convention Center, San Diego, CA

DATES OF NEXT EVENT: Conference: June 4 8, 2007 Exhibits: June 4 7, 2007 San Diego Convention Center, San Diego, CA EVENT AUDIT DATES OF EVENT: Conference: July 24 28, 2006 Exhibits: July 24 27, 2006 LOCATION: Moscone Center, San Francisco, CA EVENT PRODUCER/MANAGER: Company Name: Association for Computing Machinery

More information

Real Estate Forecast 2017

Real Estate Forecast 2017 Real Estate Forecast 2017 Twitter @DrTCJ Non-Renewals - Dead on Arrival Mortgage Insurance Deductibility Residential Mortgage Debt Forgiveness Residential Energy Savings Renewables Wind and Solar ObamaCare

More information

Summary of the State Elder Abuse. Questionnaire for Texas

Summary of the State Elder Abuse. Questionnaire for Texas Summary of the State Elder Abuse Questionnaire for Texas A Final Report to: Department of Protection and Regulatory Services February 2002 Prepared by Researchers at The University of Iowa Department of

More information

Summary of the State Elder Abuse. Questionnaire for Hawaii

Summary of the State Elder Abuse. Questionnaire for Hawaii Summary of the State Elder Abuse Questionnaire for Hawaii A Final Report to: Department of Human Services February 2002 Prepared by Researchers at The University of Iowa Department of Family Medicine 2

More information

Panelists. Patrick Michael. Darryl M. Bloodworth. Michael J. Zylstra. James C. Green

Panelists. Patrick Michael. Darryl M. Bloodworth. Michael J. Zylstra. James C. Green Panelists Darryl M. Bloodworth Dean, Mead, Egerton, Bloodworth, Capouano & Bozarth Orlando, FL dbloodworth@deanmead James C. Green VP, General Counsel & Corporate Secretary MANITOU AMERICAS, INC. West

More information

Figure 1 Map of US Coast Guard Districts... 2 Figure 2 CGD Zip File Size... 3 Figure 3 NOAA Zip File Size By State...

Figure 1 Map of US Coast Guard Districts... 2 Figure 2 CGD Zip File Size... 3 Figure 3 NOAA Zip File Size By State... Table of Contents NOAA RNC Charts (By Coast Guard District, NOAA Regions & States) Overview... 1 NOAA RNC Chart File Locations... 2 NOAA RNC by Coast Guard Districts(CGD)... 2 NOAA RNC By States... 3 NOAA

More information

STATE SEXUAL ASSAULT COALITIONS

STATE SEXUAL ASSAULT COALITIONS STATE SEXUAL ASSAULT COALITIONS 1 State Alabama Alaska American Samoa Arizona Arkansas Sexual Assault Coalitions Alabama Coalition Against Sexual Violence PO Box 4091 Montgomery, AL 36102 Phone: 334-264-0123

More information

Online Certification/Authentication of Documents re: Business Entities. Date: 05 April 2011

Online Certification/Authentication of Documents re: Business Entities. Date: 05 April 2011 Topic: Question by: : Online Certification/Authentication of Documents re: Business Entities Robert Lindsey Virginia Date: 05 April 2011 Manitoba Corporations Canada Alabama Alaska Arizona Arkansas California

More information

For Every Action There is An Equal and Opposite Reaction Newton Was an Economist - The Outlook for Real Estate and the Economy

For Every Action There is An Equal and Opposite Reaction Newton Was an Economist - The Outlook for Real Estate and the Economy For Every Action There is An Equal and Opposite Reaction Newton Was an Economist - The Outlook for Real Estate and the Economy Ted C. Jones, PhD Chief Economist Twitter #DrTCJ Mega Themes More Jobs Than

More information

SQP Product Guide. Paper & Packaging Needs

SQP Product Guide. Paper & Packaging Needs SQP Product Guide Paper & Packaging Needs SQP is Proud to be Green! Specialty Quality Packaging has been providing environmentally friendly packaging since the company's inception in 1981. We take great

More information

Tina Ladabouche. GenCyber Program Manager

Tina Ladabouche. GenCyber Program Manager Tina Ladabouche GenCyber Program Manager GenCyber Help all students understand correct and safe on-line behavior Increase interest in cybersecurity and diversity in cybersecurity workforce of the Nation

More information

Data-Driven Safety Analysis

Data-Driven Safety Analysis Data-Driven Safety Analysis Integrating Safety Performance into All Highway Investment Decisions Jeffrey Shaw FHWA Office of Safety Efficiency through technology and collaboration FHWA Every Day Counts

More information

EyeforTravel s Hotel Distribution Index. EyeforTravel s Hotel Distribution Index

EyeforTravel s Hotel Distribution Index. EyeforTravel s Hotel Distribution Index EyeforTravel s Hotel Distribution Index EyeforTravel s Hotel Distribution Index What is the Distribution Index? Eyefortravel s Hotel Distribution Index is a new service that allows you to benchmark your

More information

IACMI - The Composites Institute

IACMI - The Composites Institute IACMI - The Composites Institute Raymond. G. Boeman, Ph.D. Associate Director Vehicle Technology Area managed & operated by Michigan State University Manufacturing USA - Institutes Membership 149 Members

More information

GURLEY PRECISION INSTRUMENTS Sales Representatives List: North America

GURLEY PRECISION INSTRUMENTS Sales Representatives List: North America ALABAMA CALIFORNIA (ZIPS 900-935) COLORADO CHRIS GUIRY JOE DULANSKY TIMOTHY PAYMASTER c.guiry@gurley.com Joe@spectrawest.com timpay@precisionmeasurement.com Gurley Precision Instruments GUS VASSILIADES

More information

ADJUSTER ONLINE UPDATING INSTRUCTIONS

ADJUSTER ONLINE UPDATING INSTRUCTIONS ADJUSTER ONLINE UPDATING INSTRUCTIONS LOGGING IN How do I log in to my account? Go to www.ambest.com/claimsresource, enter your ID and Password in the login fields. Click on Edit Profile Data to enter

More information

Teacher Information on ZIP Codes

Teacher Information on ZIP Codes Teacher Information on ZIP Codes The change in the types of mail, the great increase in mail volume, the revolution in transportation, along with the steep rise in manpower costs, made adoption of modern

More information

How Employers Use E-Response Date: April 26th, 2016 Version: 6.51

How Employers Use E-Response Date: April 26th, 2016 Version: 6.51 NOTICE: SIDES E-Response is managed by the state from whom the request is received. If you want to sign up for SIDES E-Response, are having issues logging in to E-Response, or have questions about how

More information

24-Month Extension of Post-Completion Optional Practical Training (OPT)

24-Month Extension of Post-Completion Optional Practical Training (OPT) 24-Month Extension of Post-Completion Optional Practical Training (OPT) UNIVERSITY OF MINNESOTA DULUTH Summary: The 12-month limit on OPT can be extended by 24 months, for certain STEM (Science, Technology,

More information

DEPARTMENT OF HOUSING AND URBAN DEVELOPMENT. [Docket No. FR-6090-N-01]

DEPARTMENT OF HOUSING AND URBAN DEVELOPMENT. [Docket No. FR-6090-N-01] Billing Code 4210-67 This document is scheduled to be published in the Federal Register on 04/05/2018 and available online at https://federalregister.gov/d/2018-06984, and on FDsys.gov DEPARTMENT OF HOUSING

More information

45 th Design Automation Conference

45 th Design Automation Conference 45 th Design Automation Conference EVENT AUDIT DATES OF EVENT: Conference: June 8 13, 2008 Exhibits: June 8 10, 2008 LOCATION: Anaheim Convention Center, Anaheim, CA EVENT PRODUCER/MANAGER: Company Name:

More information

IT Modernization in State Government Drivers, Challenges and Successes. Bo Reese State Chief Information Officer, Oklahoma NASCIO President

IT Modernization in State Government Drivers, Challenges and Successes. Bo Reese State Chief Information Officer, Oklahoma NASCIO President IT Modernization in State Government Drivers, Challenges and Successes Bo Reese State Chief Information Officer, Oklahoma NASCIO President Top 10: State CIO Priorities for 2018 1. Security 2. Cloud Services

More information

Year in Review. A Look Back at Commission on Paraoptometric Certification. 243 N. Lindbergh Blvd St. Louis MO

Year in Review. A Look Back at Commission on Paraoptometric Certification. 243 N. Lindbergh Blvd St. Louis MO A Look Back at 217 Commission on Paraoptometric Certification 243 N. Lindbergh Blvd St. Louis MO 63141 8.365.2219 cpc@aoa.org Table of Contents I. Background 3 II. Executive Summary 4-5 Mission Statement

More information

Qualified recipients are Chief Executive Officers, Partners, Chairmen, Presidents, Owners, VPs, and other real estate management personnel.

Qualified recipients are Chief Executive Officers, Partners, Chairmen, Presidents, Owners, VPs, and other real estate management personnel. JANUARY 1, 2018 JUNE 30, 2018 GROUP C MEDIA 44 Apple Street Established 1968 Tinton Falls, NJ 07724 Issues Per Year: 6 (732) 559-1254 (732) 758-6634 FAX Issues This Report: 3 www.businessfacilities.com

More information

NSA s Centers of Academic Excellence in Cyber Security

NSA s Centers of Academic Excellence in Cyber Security NSA s Centers of Academic Excellence in Cyber Security Centers of Academic Excellence in Cybersecurity NSA/DHS CAEs in Cyber Defense (CD) NSA CAEs in Cyber Operations (CO) Lynne Clark, Chief, NSA/DHS CAEs

More information

2011 Aetna Producer Certification Help Guide. Updated July 28, 2011

2011 Aetna Producer Certification Help Guide. Updated July 28, 2011 2011 Aetna Producer Certification Help Guide Updated July 28, 2011 Table of Contents 1 Introduction...3 1.1 Welcome...3 1.2 Purpose...3 1.3 Preparation...3 1.4 Overview...4 2 Site Overview...5 2.1 Site

More information

C.A.S.E. Community Partner Application

C.A.S.E. Community Partner Application C.A.S.E. Community Partner Application This application is to be completed by community organizations and agencies who wish to partner with the Civic and Service Education (C.A.S.E.) Program here at North

More information

Solution. Problem. technology universal design. principles. adaptive. computers. resources. electronic. access to. access to

Solution. Problem. technology universal design. principles. adaptive. computers. resources. electronic. access to. access to Problem access to computers access to electronic resources Solution adaptive technology universal design principles Some visitors: cannot see graphics. cannot hear audio. have difficulty with unorganized

More information

Guide to the Virginia Mericle Menu Collection

Guide to the Virginia Mericle Menu Collection Guide to the Vanessa Broussard Simmons and Craig Orr 2017 Archives Center, National Museum of American History P.O. Box 37012 Suite 1100, MRC 601 Washington, D.C. 20013-7012 archivescenter@si.edu http://americanhistory.si.edu/archives

More information

Presented on July 24, 2018

Presented on July 24, 2018 Presented on July 24, 2018 Copyright 2018 NCCAOM. Any use of these materials, including reproduction, modification, distribution or republication without the prior written consent of NCCAOM is strictly

More information

2018 NSP Student Leader Contact Form

2018 NSP Student Leader Contact Form 2018 NSP Student Leader Contact Form Welcome to the Office of New Student Programs! We are extremely excited to have you on our team. Please complete the below form to confirm your acceptance. Student

More information