Fruit & Vegetables Redemption Activity

Size: px
Start display at page:

Download "Fruit & Vegetables Redemption Activity"

Transcription

1 MN WIC PROGRAM Fruit & Vegetables Redemption Activity BENEFITS >> CVBS (REVISED ) Report Overview Up through August 2014 this report was saved to the FileZilla (FTP) site. A statewide and agency count of issued, redeemed and unused benefits for fruits and vegetables, along with the percentage redeemed, for women, children and infants for the specified participation month(s). Some uses include: Assess use and redemption of benefits for fruits/vegetables for women, infants and children. Compare agency redemption to state and other agencies. Assess need for further participant education regarding use of cash-value benefits. Notes For best results, this report should be run for months in which the End-of-Month process has been completed. To run it for one participation month, enter the same YYYYMM into both PROMPTS. This reports includes issuance and redemption of the following fruits/vegetable food items: FRESH or frozen Fruits and Vegetables; Fruits and Vegetables (FRESH ONLY); Pounds (or less) Fresh Bananas; and WIC-allowed baby fruits and vegetables. The report output is formatted to download to an 8 x 11.5 inch Landscape PDF. It can also be exported to Excel (the margins will need to be adjusted and the headers/footers will not display.)

2 FRUIT & VEGETABLES REDEMPTION ACTIVITY Tab 1 Summary Prompts TABLE FIELD OPERATOR VALUE PROMPT/DEFINITIONS FOODINSTRUMENTSET Participationdate Between yyyymm FOODINSTRUMENTSET Participationdate And yyyymm Static Criteria CVB Query Enter First PPTN Mo YYYYMM. The first month and year of the time period during which the CVBs were counted for. Enter Last PPTN Mo YYYYMM. The last month and year of the time period during which the CVBs were counted for. dbo.foodinstrumentitem.fooditemid IN ( 99, 100, 106, 107 ) Explanation: Include benefits with the fruit and vegetable food items (99 = bananas; 100 = jars of baby F/V; 106 = FRESH only; 107 = Fresh or frozen) FOODINSTRUMENTEST.Compliancebuy Equal to N Explanation: Exclude CVBs issued for compliance buys FOODINSTRUMENT.Voideddate Is Null Explanation: Exclude voided benefits Page 2

3 Tab 1 Summary Table 1 State Summary Columns FRUIT & VEGETABLES REDEMPTION ACTIVITY Count CVBs Issued (FOODINSTRUMENT.Serialno) See FORMULAS Count of CVBs Redeemed See VARIABLES and FORMULAS Count of Unused CVBs See VARIABLES and FORMULAS Percentage Redeemed See VARIABLES and FORMULAS Sorted by Category - Custom Sort See VARIABLES Counts Serialno (Distinct Count) Table 2 Local Agency Breakdown Columns Total Issued (FOODINSTRUMENT.Serialno) See FORMULAS Total Redeemed See VARIABLES and FORMULAS Total Unused See VARIABLES and FORMULAS Women Issued (FOODINSTRUMENT.Serialno) See VARIABLES and FORMULAS Women Redeemed See VARIABLES and FORMULAS Women Unused See VARIABLES and FORMULAS Children Issued (FOODINSTRUMENT.Serialno) See VARIABLES and FORMULAS Children Redeemed See VARIABLES and FORMULAS Children Unused See VARIABLES and FORMULAS Infants Issued (FOODINSTRUMENT.Serialno) See VARIABLES and FORMULAS Infants Redeemed See VARIABLES and FORMULAS Infants Unused See VARIABLES and FORMULAS Sorted by Category - Custom Sort See VARIABLES Counts Serialno (Distinct Count) Page 3

4 Technical Notes Notes FRUIT & VEGETABLES REDEMPTION ACTIVITY The FOODINSTRUMENT.Presentmentamount was used in order to match the SQL written by CSC. The FOODINSTRUMENT.Presentmentamount counts those benefits rejected by the bank for being over the maximum. Since this report should reflect the participant s redemption behavior, not actual money-based redemption, Presentmentamount was used. Variables [Category] =If [Wicstatus] InList("B";"N";"P") Then "Women" ElseIf [Wicstatus]="I" Then "Infants" ElseIf [Wicstatus]="C" Then "Children" [Child Issued] =If [Wicstatus] ="C" Then [Serialno] [Child Redeemed] =If [Wicstatus] ="C" Then [Redeemed] [Infant Issued] =If [Wicstatus] ="I Then [Serialno] [Infant Redeemed] =If [Wicstatus] ="I" Then [Redeemed] [Redeemed] =If [Presentmentamt] >0 Then [Serialno] [Women Issued] =If [Wicstatus] InList("B";"P";"N") Then [Serialno] [Women Redeemed] =If [Wicstatus] InList("B";"P";"N") Then [Redeemed] Formulas Tab 1 Summary Title (page header) ="=If FormatDate(ToDate(UserResponse("Enter First PPTN Mo - YYYYMM:");"yyyyMM");"MMM yyyy") = FormatDate(ToDate(UserResponse("Enter Last PPTN Mo - YYYYMM:");"yyyyMM");"MMM yyyy") Then "Report Month(s): " +FormatDate(ToDate(UserResponse("Enter First PPTN Mo - YYYYMM:");"yyyyMM");"MMM yyyy") Else "Report Month(s): " +FormatDate(ToDate(UserResponse("Enter First PPTN Mo - YYYYMM:");"yyyyMM");"MMM yyyy") + " - " + FormatDate(ToDate(UserResponse("Enter Last PPTN Mo - YYYYMM:");"yyyyMM");"MMM yyyy") Report Date (report header) = Report Date: + CurrentDate() Page # (page footer) ="Page " + Page()+" of "+NumberOfPages() Table 1 State Summary Count of CVBs Redeemed =Count([Redeemed]) Count of Unused CVBs =Count([Serialno])-Count([Redeemed]) Page 4

5 FRUIT & VEGETABLES REDEMPTION ACTIVITY Percentage Redeemed =Round((Count([Redeemed])/Count([Serialno]));2)*100+"%" Percentage Redeemed Total =Round(Sum(Count([Redeemed]))/Sum(Count([Serialno]));2)*100+"%" Table 2 Local Agency Breakdown Total Issued =Count([Serialno]) Total Redeemed =Count([Redeemed]) Total Unused =Count([Serialno])-Count([Redeemed]) % Red. (Total) =Round((Count([Redeemed])/Count([Serialno]));2)*100+"%" Women Issued =Count([Women Issued]) Women Redeemed =Count([Women Redeemed]) Women Unused =Count([Women Issued]) - Count([Women Redeemed]) % Red. (Women) =Round((Count([Women Redeemed])/Count([Women Issued]));2)*100+"%" Children Issued =Count([Children Issued]) Children Redeemed =Count([Children Redeemed]) Children Unused =Count([Child Issued]) - Count([Child Redeemed]) % Unused (Children) =Round((Count([Children Redeemed])/Count([Children Issued]));2)*100+"%" Infants Issued =Count([Infant Issued]) Infants Redeemed =Count([Infant Redeemed]) Infants Unused =Count([Infant Issued]) - Count([Infant Redeemed]) % Red. (Infant) =Round((Count([Infant Redeemed])/Count([Infant Issued]));2)*100+"%" SQL (changes are highlighted) CVB Query SELECT dbo.foodinstrumentset.wicstatus, dbo.foodinstrumentset.agencyid, dbo.foodinstrument.serialno, dbo.foodinstrument.presentmentamt FROM Page 5

6 FRUIT & VEGETABLES REDEMPTION ACTIVITY dbo.foodinstrumentset INNER JOIN dbo.foodinstrument ON (dbo.foodinstrument.foodinstrumentsetid=dbo.foodinstrumentset.foodinstrumentsetid) INNER JOIN dbo.foodinstrumentitem ON (dbo.foodinstrument.foodinstrumentid=dbo.foodinstrumentitem.foodinstrumentid) WHERE ( dbo.foodinstrumentset.participationdate First PPTN Mo - YYYYMM:','A','Dbo Foodinstrumentset\Participationdate',Mono,Free,Persistent,,User:0) Last PPTN Mo - YYYYMM:','A','Dbo Foodinstrumentset\Participationdate',Mono,Free,Persistent,,User:1) AND dbo.foodinstrumentset.compliancebuy = 'N' AND dbo.foodinstrument.voideddate Is Null AND dbo.foodinstrumentitem.fooditemid IN ( 99, 100, 106, 107 ) ) Revisions changed PROMPT to allow user to run it for multiple months (per request from Brown to be able to run a quarterly report) Changed title from CASH-VALUE BENEFITS REDEMPTION ACTIVITY Removed criteria based on V_FOOD_INSTRUMENT_ITEMS.Description and replaced it with FOODINSTRUMENTITEM.Fooditemid In List 99 (pounds (or less) fresh bananas); 100 (WICallowed baby Fruits and Vegetables); 106 (FRESH or Frozen Fruits and Vegetables); and 107 ( Fruits and Vegetables (FRESH ONLY)). Added info in Guidance Document about including jars of WIC-allowed baby fruits and vegetables Added counts of unused CVBS (Total Unused, Women Unused, Children Unused and Infants Unused) to the Local Agency Breakdown Developed to replace FileZilla report Page 6

Hemoglobin Measurements

Hemoglobin Measurements Hemoglobin Measurements HEIGHT/WEIGHT/BLOOD REVISED 6.28.17 Report Overview A list of participants who belong to the specified agencies and had a hemoglobin measurement during the specified time period.

More information

Peer Active Client List

Peer Active Client List Report Overview Tab 1 BF Counselor ID Peer Active Client List Infoview Report Template Guidance BREASTFEEDING This report has five tabs. The first tab PEER PROGRAM is a reference report that can be used

More information

Peer Active and Closed Client List

Peer Active and Closed Client List Report Overview This report has two tabs. The first tab is a reference report that can be used to obtain the BF Counselor ID(s) necessary to identify the peer counselors for whom the report should be run.

More information

Update Document. All WIC Coordinators and WIC Staff Using the HuBERT Application

Update Document. All WIC Coordinators and WIC Staff Using the HuBERT Application Update Document All WIC Coordinators and WIC Staff Using the HuBERT Application Users must Reset the Local Reference Data after installation! (This is essential! Errors may occur otherwise.) 1.27.18 Update

More information

Table of Contents Foreword 9 Stay Informed 9 Introduction to Visual Steps 10 What You Will Need 10 Basic Knowledge 11 How to Use This Book

Table of Contents Foreword 9 Stay Informed 9 Introduction to Visual Steps 10 What You Will Need 10 Basic Knowledge 11 How to Use This Book Table of Contents Foreword... 9 Stay Informed... 9 Introduction to Visual Steps... 10 What You Will Need... 10 Basic Knowledge... 11 How to Use This Book... 11 The Screenshots... 12 The Website and Supplementary

More information

Answer Key for Introduction to Food Packages

Answer Key for Introduction to Food Packages Practice Activity-A Answer Key for Introduction to Food Packages Observe how food package assignment is conducted in your clinic. Answer the following questions for each certification that you observe.

More information

New Michigan WIC Food Guide Regina Poole Kevin Sarb

New Michigan WIC Food Guide Regina Poole Kevin Sarb New Michigan WIC Food Guide 2016 Regina Poole Kevin Sarb New Michigan WIC Food Guide 2016 The new Michigan WIC Food Guide will debut on Monday, July 11, 2016! Highlights C2 C4 and women can get up to 32

More information

Texas WIC Health and Human Services Commission

Texas WIC Health and Human Services Commission Food Packages Purpose To establish procedures for the issuance of the allowable foods within the food packages. To assure food benefits are appropriate for each participant s health and nutritional needs.

More information

Review of WIC Food Packages: Improving Balance and Choice. Final Report

Review of WIC Food Packages: Improving Balance and Choice. Final Report Review of WIC Food Packages: Improving Balance and Choice Final Report Outline Background and the task Framework and criteria The revised packages Informationgathering and decisionmaking Implementation

More information

Maine CDC WIC Nutrition Program Food Packages

Maine CDC WIC Nutrition Program Food Packages Maine CDC WIC Nutrition Program Food Packages 1. Food Package I: Infants 0-5 months Infant formula issuance in Food Package I is based on age (Food Package IA: Infants 0-3 months and Food Package IB: Infants

More information

Modifying Food Packages

Modifying Food Packages This resource provides step-by-step instructions on how to complete the following types of food prescription modifications in Crossroads: Modifying the Default Food Package Adding Food Prescription Items

More information

NWA/NASEM Recommendation Comparisons

NWA/NASEM Recommendation Comparisons NWA/NASEM Recommendation Comparisons On January 5, 2017 the National Academies of Sciences, Engineering, and Medicine (NASEM) released a 900 plus page report detailing their recommendations for changes

More information

O i r ent t a iti on t t o th th e e Certification Tool ification T State We State W binar e June 14th

O i r ent t a iti on t t o th th e e Certification Tool ification T State We State W binar e June 14th Orientation Oi tti to the Certification Tool State Webinar June 14 th BACKGROUND Certification Options Option 1: SFA submits one week menus, menu worksheet and nutrient analysis Option 2: SFA submits one

More information

Questions & Answers Overview of the New Food Packages

Questions & Answers Overview of the New Food Packages Questions & Answers Overview of the New Food Packages Authorized Foods 1) Will baby foods in glass jars be readily available? A staff member has observed that it seems that mainly plastic jars are available

More information

Food Packages. Infants: 0-5 and Participants with Qualifying Conditions - Women, Infants, and Children

Food Packages. Infants: 0-5 and Participants with Qualifying Conditions - Women, Infants, and Children Policy Food packages will be prescribed by a competent professional authity (CPA). Each food package will be individually tailed and prescribed to the participant. Participants will only receive those

More information

Nutrition Labeling of Single- Ingredient Products and Ground or Chopped Meat and Poultry Products

Nutrition Labeling of Single- Ingredient Products and Ground or Chopped Meat and Poultry Products Nutrition Labeling of Single- Ingredient Products and Ground or Chopped Meat and Poultry Products 1 Summary of Provisions in the Final Rule Major Cuts: The final rule requires nutrition labeling of the

More information

ISR Process for Internal Service Providers

ISR Process for Internal Service Providers ISR Process for Internal Service Providers Course Outline 1) Internal Service Request Process Overview Internal Service Requests (ISR) are created by the end user via the BUworks Central Portal Procurement

More information

If adaptations were made or activity was not done, please describe what was changed and why. Please be as specific as possible.

If adaptations were made or activity was not done, please describe what was changed and why. Please be as specific as possible. Washington State Snap-Ed Curriculum Fidelity for Continuous Improvement Lesson Assessment Tool for Eat Smart, Live Strong: Lesson Four Eat Smart, Spend Less Educator Self-Assessment Supervisor Assessment

More information

To begin using the Nutrients feature, visibility of the Modules must be turned on by a MICROS Account Manager.

To begin using the Nutrients feature, visibility of the Modules must be turned on by a MICROS Account Manager. Nutrients A feature has been introduced that will manage Nutrient information for Items and Recipes in myinventory. This feature will benefit Organizations that are required to disclose Nutritional information

More information

The Hospital Anxiety and Depression Scale Guidance and Information

The Hospital Anxiety and Depression Scale Guidance and Information The Hospital Anxiety and Depression Scale Guidance and Information About Testwise Testwise is the powerful online testing platform developed by GL Assessment to host its digital tests. Many of GL Assessment

More information

CaseBuilder - Quick Reference Guide

CaseBuilder - Quick Reference Guide ADP UNEMPLOYMENT COMPENSATION MANAGEMENT CaseBuilder - Quick Reference Guide After signing into CaseBuilder, the first screen the user will see is called the Dashboard. The user can then navigate to any

More information

Final Rule to Update School Lunches and Breakfasts. U.S. Department of Agriculture Food and Nutrition Service February 2012

Final Rule to Update School Lunches and Breakfasts. U.S. Department of Agriculture Food and Nutrition Service February 2012 Final Rule to Update School Lunches and Breakfasts U.S. Department of Agriculture Food and Nutrition Service February 2012 1 Overview Background Proposed Rule Major Changes New Meal Pattern Implementation

More information

ATLANTIS WebOrder. ATLANTIS ISUS User guide

ATLANTIS WebOrder. ATLANTIS ISUS User guide ATLANTIS WebOrder ATLANTIS ISUS User guide Contents ATLANTIS WebOrder Entering an ATLANTIS ISUS order 3 ATLANTIS ISUS implant suprastructures 4 ATLANTIS ISUS Bar 5 ATLANTIS ISUS Bridge 7 ATLANTIS ISUS

More information

Texas WIC Health and Human Services Commission

Texas WIC Health and Human Services Commission Purpose Food Packages To establish procedures for the issuance of the allowable foods within the food packages. To assure food benefits are appropriate for each participant s health and nutritional needs.

More information

Section D. Identification of serotype-specific amino acid positions in DENV NS1. Objective

Section D. Identification of serotype-specific amino acid positions in DENV NS1. Objective Section D. Identification of serotype-specific amino acid positions in DENV NS1 Objective Upon completion of this exercise, you will be able to use the Virus Pathogen Resource (ViPR; http://www.viprbrc.org/)

More information

LEAF Marque Chain of Custody Self Assessment v1.0 Downloadable Copy A

LEAF Marque Chain of Custody Self Assessment v1.0 Downloadable Copy A LEAF Marque Chain of Custody Self Assessment v1.0 Downloadable Copy A This downloadable copy of the LEAF Marque Chain of Custody Self Assessment v1.0 is applicable to businesses that grow crops and/or

More information

Review of WIC Food Packages: Improving Balance and Choice. Final Report. NWA Leadership Conference February 27, 2017 Washington, DC

Review of WIC Food Packages: Improving Balance and Choice. Final Report. NWA Leadership Conference February 27, 2017 Washington, DC Review of WIC Food Packages: Improving Balance and Choice Final Report NWA Leadership Conference February 27, 2017 Washington, DC Outline: Part I The Task Framework and criteria Overall process Costneutrality

More information

My VeriSTAR & Veristar Info: The all-in-one portal for Marine professionals

My VeriSTAR & Veristar Info: The all-in-one portal for Marine professionals My VeriSTAR & Veristar Info: The all-in-one portal for Marine professionals My VeriSTAR mobile application Veristar Info website Monitor your fleet Plan your surveys Stay informed, anytime, anywhere Manage

More information

Prentice Hall. Learning Microsoft Excel , (Weixel et al.) Arkansas Spreadsheet Applications - Curriculum Content Frameworks

Prentice Hall. Learning Microsoft Excel , (Weixel et al.) Arkansas Spreadsheet Applications - Curriculum Content Frameworks Prentice Hall Learning Microsoft Excel 2007 2008, (Weixel et al.) C O R R E L A T E D T O Arkansas Spreadsheet s - Curriculum Content Frameworks Arkansas Spreadsheet s - Curriculum Content Frameworks Unit

More information

Clay Tablet Connector for hybris. User Guide. Version 1.5.0

Clay Tablet Connector for hybris. User Guide. Version 1.5.0 Clay Tablet Connector for hybris User Guide Version 1.5.0 August 4, 2016 Copyright Copyright 2005-2016 Clay Tablet Technologies Inc. All rights reserved. All rights reserved. This document and its content

More information

The Patient List. Methods of Making Patient Lists More Like Facility Boards. Marc Palter, MD, CMIO

The Patient List. Methods of Making Patient Lists More Like Facility Boards. Marc Palter, MD, CMIO The Patient List Methods of Making Patient Lists More Like Facility Boards. Marc Palter, MD, CMIO Gordon Tait, Application Architect January 6, 2012 Hartford Healthcare Acute Care Hartford Hospital Hospital

More information

Medical Provider Guide to the Louisiana WIC Special Supplemental Nutrition Program

Medical Provider Guide to the Louisiana WIC Special Supplemental Nutrition Program Medical Provider Guide to the Louisiana WIC Special Supplemental Nutrition Program Rev 1/16 Provided by the Louisiana WIC Program Department of Health and Hospitals Office of Public Health Nutrition Services

More information

Ask USDA: Meal Pattern Questions & Answers

Ask USDA: Meal Pattern Questions & Answers Ask USDA: Meal Pattern Questions & Answers Angela Kline Director, Policy & Program Development, Child Nutrition Programs, FNS Laura Carroll Nutritionist, Community Meal Programs, Child Nutrition Programs,

More information

The Rationale and Potential Consequences of The Revised WIC Food Packages. Barbara Devaney Mathematica Policy Research

The Rationale and Potential Consequences of The Revised WIC Food Packages. Barbara Devaney Mathematica Policy Research The Rationale and Potential Consequences of The Revised WIC Food Packages Barbara Devaney Mathematica Policy Research Paper presented at the 29th Annual Meeting of the Association for Public Policy Analysis

More information

User Guide for Classification of Diabetes: A search tool for identifying miscoded, misclassified or misdiagnosed patients

User Guide for Classification of Diabetes: A search tool for identifying miscoded, misclassified or misdiagnosed patients User Guide for Classification of Diabetes: A search tool for identifying miscoded, misclassified or misdiagnosed patients For use with isoft Premiere Synergy Produced by André Ring 1 Table of Contents

More information

Nutrition Education Competencies for Preschool Children

Nutrition Education Competencies for Preschool Children Education Competencies for Preschool Children University of California, Davis Project Funded by the California Education, Services Division September 2009 Competency I: Students will know and understand

More information

FFY17 PEARS PSE Reporting

FFY17 PEARS PSE Reporting FFY17 PEARS PSE Reporting Overarching questions Deciding whether to report on a site for FFY17 1. How do I know for sure that I need to do this reporting? All LIAs working on any PSE activities should

More information

Global In-Vitro-Fertilization Market: Trends and Opportunities ( )

Global In-Vitro-Fertilization Market: Trends and Opportunities ( ) Global In-Vitro-Fertilization Market: Trends and Opportunities (2015-2019) Global In-Vitro-Fertilization Market: Trends and Opportunities (2015-2019) BioPortfolio has been marketing business and market

More information

Welcome! Please check your audio connection to be sure your speakers are on and working properly.

Welcome! Please check your audio connection to be sure your speakers are on and working properly. Welcome! Please check your audio connection to be sure your speakers are on and working properly. Looking for presentation slides, resources, or a CEU form? Visit /webinar The New School Meal Patterns:

More information

Directions for Menu Worksheet

Directions for Menu Worksheet Directions for Menu Worksheet ***Updated 7/10/2013 for SY 2013-14 Breakfast *** Welcome to the FNS Menu Worksheet, a tool designed to assist School Food Authorities (SFAs) in demonstrating that each of

More information

11/10/2015. Production Records in School Meals. Kathleen Hiltwine, MPH Jenny Edmondson, MS. Objectives

11/10/2015. Production Records in School Meals. Kathleen Hiltwine, MPH Jenny Edmondson, MS. Objectives Production Records in School Meals Kathleen Hiltwine, MPH Jenny Edmondson, MS Objectives Understand the process and requirements for completing a production record. Understand the information included

More information

USDA Food and Nutrition Service Child Nutrition Division 2013

USDA Food and Nutrition Service Child Nutrition Division 2013 USDA Food and Nutrition Service Child Nutrition Division 2013 1 Proposed Rule Title: Nutrition Standards for All Foods Sold in School Published: Feb. 8, 2013 Comment period: Feb. 8 to April 9, 2013 2 Law

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS July 2011 FREQUENTLY ASKED QUESTIONS As a foodservice director, you are the voice for nutrition and meal planning in your school. In recognition of this role, we have compiled some questions that you may

More information

FNS. State Agencies. Program Operators Participants

FNS. State Agencies. Program Operators Participants Ending Hunger Improving Nutrition Combating Obesity FNS State Agencies Program Operators Participants About 1 in 4 Americans participates in at least 1 of the U.S. Department of Agriculture s (USDA) domestic

More information

Memorandum. FROM: Mike Montgomery, Section Director (Original Signed) Nutrition Services Section

Memorandum. FROM: Mike Montgomery, Section Director (Original Signed) Nutrition Services Section Memorandum TO: WIC Regional Directors #08-025 WIC Local Agency Directors FROM: Mike Montgomery, Section Director (Original Signed) Section DATE: February 29, 2008 SUBJECT: Policy Memo: Revised FD:12.0,

More information

To open a CMA file > Download and Save file Start CMA Open file from within CMA

To open a CMA file > Download and Save file Start CMA Open file from within CMA Example name Effect size Analysis type Level Tamiflu Hospitalized Risk ratio Basic Basic Synopsis The US government has spent 1.4 billion dollars to stockpile Tamiflu, in anticipation of a possible flu

More information

Variant Classification. Author: Mike Thiesen, Golden Helix, Inc.

Variant Classification. Author: Mike Thiesen, Golden Helix, Inc. Variant Classification Author: Mike Thiesen, Golden Helix, Inc. Overview Sequencing pipelines are able to identify rare variants not found in catalogs such as dbsnp. As a result, variants in these datasets

More information

Dementia Direct Enhanced Service

Dementia Direct Enhanced Service Vision 3 Dementia Direct Enhanced Service England Outcomes Manager Copyright INPS Ltd 2015 The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 501700 F:+44 (0) 207 5017100

More information

Integrated Analysis of Copy Number and Gene Expression

Integrated Analysis of Copy Number and Gene Expression Integrated Analysis of Copy Number and Gene Expression Nexus Copy Number provides user-friendly interface and functionalities to integrate copy number analysis with gene expression results for the purpose

More information

Using APR-DRG DataVision Reports for Hospital Ranking and Physician Review

Using APR-DRG DataVision Reports for Hospital Ranking and Physician Review Using APR-DRG DataVision Reports for Hospital Ranking and Physician Review Amy Schoenherr Project Manager Clinical Decision Support Services ACS MIDAS+ What Are 3M APR-DRGs? All Patient Refined Diagnosis

More information

FORMAT FOR CORRELATION TO THE GEORGIA PERFORMANCE STANDARDS. Textbook Title: Benchmark Series: Microsoft Office Publisher: EMC Publishing, LLC

FORMAT FOR CORRELATION TO THE GEORGIA PERFORMANCE STANDARDS. Textbook Title: Benchmark Series: Microsoft Office Publisher: EMC Publishing, LLC FORMAT FOR CORRELATION TO THE GEORGIA PERFORMANCE STANDARDS Subject Area: Business and Computer Science State-Funded Course: Computer Applications II Textbook Title: Benchmark Series: Microsoft Office

More information

Program Objectives Hospice Compare

Program Objectives Hospice Compare Program Objectives Hospice Compare March 27, 2018 Jennifer Kennedy, EdD, MA, BSN, RN, CHC, NHPCO Kristi Dudash, MS, NHPCO National Hospice and Palliative Care Organization Describe the CASPER reports available

More information

The True Value of USDA Foods SNA ANC 2013

The True Value of USDA Foods SNA ANC 2013 The True Value of USDA Foods SNA ANC 2013 City of Boston Fire Code Emergency Evacuation Information: Please note the locations of the emergency exits. In the event of a fire alarm or other emergency, please

More information

USDA. Special Supplemental Nutrition Program for Women, Infants and Children (WIC) Food Package Policy and Guidance

USDA. Special Supplemental Nutrition Program for Women, Infants and Children (WIC) Food Package Policy and Guidance USDA United States Department of Agriculture Food and Nutrition Service March 2018 Special Supplemental Nutrition Program for Women, Infants and Children (WIC) Food Package Policy and Guidance - Supersedes

More information

Latoya Thomas Volunteer Resources Coordinator

Latoya Thomas Volunteer Resources Coordinator Latoya Thomas Volunteer Resources Coordinator 512-684-2551 lthomas@centraltexasfoodbank.org The mission of the Central Texas Food Bank is to nourish hungry people and lead the community in hunger. VOLUNTEER

More information

Fruit and Vegetable Prescription Program Evaluation Results. Grady Memorial Hospital

Fruit and Vegetable Prescription Program Evaluation Results. Grady Memorial Hospital Fruit and Vegetable Prescription Program 2016 Evaluation Results Grady Memorial Hospital Introduction This report summarizes results from the evaluation of the Fruit and Vegetable Prescription Program

More information

Department of Agriculture

Department of Agriculture Thursday, December 6, 2007 Part II Department of Agriculture Food and Nutrition Service 7 CFR Part 246 Special Supplemental Nutrition Program for Women, Infants and Children (WIC): Revisions in the WIC

More information

[(EMBEDDED SYSTEMS DESIGN )] [AUTHOR: STEVE HEATH] [DEC-2002] BY STEVE HEATH

[(EMBEDDED SYSTEMS DESIGN )] [AUTHOR: STEVE HEATH] [DEC-2002] BY STEVE HEATH [(EMBEDDED SYSTEMS DESIGN )] [AUTHOR: STEVE HEATH] [DEC-2002] BY STEVE HEATH DOWNLOAD EBOOK : [(EMBEDDED SYSTEMS DESIGN )] [AUTHOR: STEVE Click link bellow and free register to download ebook: [(EMBEDDED

More information

Content Part 2 Users manual... 4

Content Part 2 Users manual... 4 Content Part 2 Users manual... 4 Introduction. What is Kleos... 4 Case management... 5 Identity management... 9 Document management... 11 Document generation... 15 e-mail management... 15 Installation

More information

To open a CMA file > Download and Save file Start CMA Open file from within CMA

To open a CMA file > Download and Save file Start CMA Open file from within CMA Example name Effect size Analysis type Level Tamiflu Symptom relief Mean difference (Hours to relief) Basic Basic Reference Cochrane Figure 4 Synopsis We have a series of studies that evaluated the effect

More information

Be Food Wise to Reduce Food Waste

Be Food Wise to Reduce Food Waste Be Food Wise to Reduce Food Waste This is a HCE Educational Program presented during the 2017 WI Association for Home and Community Education Conference. There are about 7 ½ billion people in the world.

More information

Quick-Start Guide TeamUnify, LLC

Quick-Start Guide TeamUnify, LLC Quick-Start Guide Setup Basics System Settings 1 When you initially sign up for MainSet, you need to set up Roster Group colors and designate coaches. first, Click settings 1. Navigate to http://mainset.com

More information

Procedures: Medical Determination. Medical determination documenting a qualifying condition is required for the following situations:

Procedures: Medical Determination. Medical determination documenting a qualifying condition is required for the following situations: SECTION 7.6 Subject: Medical Documentation References: 7 CFR 246.10 Policy: Some formulas and supplemental foods may be provided by WIC only with appropriate medical documentation. Purpose: To assure participants

More information

TRANSPARENCY ADVISORY GROUP. January 20, 2015

TRANSPARENCY ADVISORY GROUP. January 20, 2015 TRANSPARENCY ADVISORY GROUP January 20, 2015 WELCOME AND INTRODUCTIONS GOALS DISCUSSION Draft Goals for 2015 TAG 1. Using prior list of preferred clinical reporting measures*, evaluate 2015 APCD data outputs,

More information

Agile Product Lifecycle Management for Process

Agile Product Lifecycle Management for Process Nutrition Surveillance Management User Guide Release 5.2.1 Part No. E13901-01 September 2008 Copyrights and Trademarks Copyright 1995, 2008, Oracle Corporation and/or its affiliates. All rights reserved.

More information

NFT User Guide Release Date 01/09/2018

NFT User Guide Release Date 01/09/2018 NFT User Guide Release Date 01/09/2018 Center for Information Management, Inc. Table of Contents NFT List... 4 NFT Process Overview and Features... 10 NFT Process Steps... 12 Step 1: Agent clicks [Add]

More information

Entering HIV Testing Data into EvaluationWeb

Entering HIV Testing Data into EvaluationWeb Entering HIV Testing Data into EvaluationWeb User Guide Luther Consulting, LLC July, 2014/v2.2 All rights reserved. Table of Contents Introduction... 3 Accessing the CTR Form... 4 Overview of the CTR Form...

More information

Massachusetts Department of Elementary and Secondary Education 1

Massachusetts Department of Elementary and Secondary Education 1 and Secondary Education 1 This is USDA s Non-Discrimination Statement and MUST be available in this format. The statement is available on the ESE s Office for Food and Nutrition Programs website and also

More information

Medicare Allowable Fee Schedule, MPPR, and Cap Alerts User Guide

Medicare Allowable Fee Schedule, MPPR, and Cap Alerts User Guide Medicare Allowable Fee Schedule, MPPR, and Cap Alerts User Guide To help our users track the Medicare Therapy Cap, WebPT offers Medicare Cap Alerts and the Medicare Allowable Fee Schedule. Additionally,

More information

IBRIDGE 1.0 USER MANUAL

IBRIDGE 1.0 USER MANUAL IBRIDGE 1.0 USER MANUAL Jaromir Krizek CONTENTS 1 INTRODUCTION... 3 2 INSTALLATION... 4 2.1 SYSTEM REQUIREMENTS... 5 2.2 STARTING IBRIDGE 1.0... 5 3 MAIN MENU... 6 3.1 MENU FILE... 6 3.2 MENU SETTINGS...

More information

Farm to School. USDA Foods to Support Farm to School 11/29/2018

Farm to School. USDA Foods to Support Farm to School 11/29/2018 USDA Foods to Support Farm to School Jenna Segal, MPH Midwest Farm to School Regional Lead Office of Community Food Systems, USDA-FNS Farm to School 1 Food Education Local Food What Types of Products?

More information

Chapter 1: Managing workbooks

Chapter 1: Managing workbooks Chapter 1: Managing workbooks Module A: Managing worksheets You use the Insert tab on the ribbon to insert new worksheets. True or False? Which of the following are options for moving or copying a worksheet?

More information

Fruit and Vegetable Programs

Fruit and Vegetable Programs Fruit and Vegetable Programs Gail G. Harrison, PhD Professor, UCLA School of Public Health Los Angeles, CA Conference on Food and Farm Policy and Obesity University of California, Davis May 21, 2010 Presentation

More information

Healthy Food for Healthy Adults

Healthy Food for Healthy Adults HANDOUT 1 Healthy Food for Healthy Adults Eating healthy food means eating a variety of food everyday, including whole grains, fruits and vegetables, milk and other dairy products, and meat, seafood, or

More information

Mexico Milling Machine for Dental Clinics Industry 2016 Market Research Report

Mexico Milling Machine for Dental Clinics Industry 2016 Market Research Report Published on Market Research Reports Inc. (https://www.marketresearchreports.com) Home > Mexico Milling Machine for Dental Clinics Industry Market Research Report Mexico Milling Machine for Dental Clinics

More information

NATIONAL CERTIFICATE (VOCATIONAL) LIFE ORIENTATION (Second Paper) NQF LEVEL 2 SUPPLEMENTARY EXAMINATION 2010

NATIONAL CERTIFICATE (VOCATIONAL) LIFE ORIENTATION (Second Paper) NQF LEVEL 2 SUPPLEMENTARY EXAMINATION 2010 NATIONAL CERTIFICATE (VOCATIONAL) LIFE ORIENTATION (Second Paper) NQF LEVEL 2 SUPPLEMENTARY EXAMINATION 2010 (7601012) 16 February (X-Paper) 09:00 11:00 This question paper consists of 10 pages and a 1-page

More information

Chemotherapy Induced Peripheral Neuropathy Global Clinical Trials Review, H1, 2016

Chemotherapy Induced Peripheral Neuropathy Global Clinical Trials Review, H1, 2016 Chemotherapy Induced Peripheral Neuropathy Global Clinical Trials Review, H1, 2016 Chemotherapy Induced Peripheral Neuropathy Global Clinical Trials Review, H1, 2016 BioPortfolio has been marketing business

More information

Michigan Farmers Market Association Prescription for Health Evaluation Tools: Pre and Post-Program Surveys

Michigan Farmers Market Association Prescription for Health Evaluation Tools: Pre and Post-Program Surveys Michigan Farmers Market Association Prescription for Health Evaluation Tools: Pre and Post-Program Surveys The following survey tools are intended to streamline and standardize data collection among Prescription

More information

Directions for Menu Worksheet ***Updated 9/3/2014 for SY Breakfast *** General Information:

Directions for Menu Worksheet ***Updated 9/3/2014 for SY Breakfast *** General Information: Directions for Menu Worksheet ***Updated 9/3/2014 for SY 2014-15 Breakfast *** Welcome to the FNS Menu Worksheet, a tool designed to assist School Food Authorities (SFAs) in demonstrating that each of

More information

TMWSuite. DAT Interactive interface

TMWSuite. DAT Interactive interface TMWSuite DAT Interactive interface DAT Interactive interface Using the DAT Interactive interface Using the DAT Interactive interface... 1 Setting up the system to use the DAT Interactive interface... 1

More information

ProScript User Guide. Pharmacy Access Medicines Manager

ProScript User Guide. Pharmacy Access Medicines Manager User Guide Pharmacy Access Medicines Manager Version 3.0.0 Release Date 01/03/2014 Last Reviewed 11/04/2014 Author Rx Systems Service Desk (T): 01923 474 600 Service Desk (E): servicedesk@rxsystems.co.uk

More information

Rethink Your Drink Core Presentation Teens / Adults ( years)

Rethink Your Drink Core Presentation Teens / Adults ( years) Rethink Your Drink Core Presentation Teens / Adults (13 65+ years) Session Overview Class participants will examine what beverages they are drinking. They will learn how to make healthier beverage choices

More information

SOCIAL PSYCHOLOGY BY DAVID MYERS, JACKIE ABELL, ARNULF KOLSTAD, FABIO SANI

SOCIAL PSYCHOLOGY BY DAVID MYERS, JACKIE ABELL, ARNULF KOLSTAD, FABIO SANI Read Online and Download Ebook SOCIAL PSYCHOLOGY BY DAVID MYERS, JACKIE ABELL, ARNULF KOLSTAD, FABIO SANI DOWNLOAD EBOOK : SOCIAL PSYCHOLOGY BY DAVID MYERS, JACKIE ABELL, Click link bellow and free register

More information

Automated process to create snapshot reports based on the 2016 Murray Community-based Groups Capacity Survey: User Guide Report No.

Automated process to create snapshot reports based on the 2016 Murray Community-based Groups Capacity Survey: User Guide Report No. research for a sustainable future Automated process to create snapshot reports based on the 2016 Murray Community-based Groups Capacity Survey: User Guide Report No. 116 Steven Vella Gail Fuller Michael

More information

The Clinical Information Data Entry Screen is the main screen in the DQCMS application.

The Clinical Information Data Entry Screen is the main screen in the DQCMS application. DATA ENTRY Clinical Information The Clinical Information Data Entry Screen is the main screen in the DQCMS application. To enter data, a patient must first be selected from the Patient pull-down list.

More information

Yes infertility policy pdf

Yes   infertility policy pdf 1. We would like to understand some of the specifics of your current Treatment Policy Once all tabs are complete, please return to: intern@progress.org.uk Question a. Is the CCGs assisted conception policy,

More information

September 21, 18. If adaptations were made or activity was not done, please describe what was changed and why. Please be as specific as possible.

September 21, 18. If adaptations were made or activity was not done, please describe what was changed and why. Please be as specific as possible. Washington State Snap-Ed Curriculum Fidelity for Continuous Improvement Lesson Assessment Tool for Food Smarts Workshop: Parenting Adult 5 week, 60 minutes Week 4 Setting the Stage for Healthy Choices

More information

IAASB Main Agenda (March 2005) Page Agenda Item. DRAFT EXPLANATORY MEMORANDUM ISA 701 and ISA 702 Exposure Drafts February 2005

IAASB Main Agenda (March 2005) Page Agenda Item. DRAFT EXPLANATORY MEMORANDUM ISA 701 and ISA 702 Exposure Drafts February 2005 IAASB Main Agenda (March 2005) Page 2005 579 Agenda Item 13-F DRAFT EXPLANATORY MEMORANDUM ISA 701 and ISA 702 Exposure Drafts February 2005 Introduction This memorandum provides some background to, and

More information

USDA Foods 101. Food Distribution Program

USDA Foods 101. Food Distribution Program USDA Foods 101 Food Distribution Program 1 Acknowledgement Statement You understand and acknowledge that the training you are about to take does not cover the entire scope of the program; and You are responsible

More information

Retrospective Evaluation of the WIC Program Changes: Dairy Nutrient Delivery. Eliza M. Mojduszka

Retrospective Evaluation of the WIC Program Changes: Dairy Nutrient Delivery. Eliza M. Mojduszka Retrospective Evaluation of the WIC Program Changes: Dairy Nutrient Delivery Eliza M. Mojduszka USDA/OCE/ORACBA emojduszka@oce.usda.gov Selected Paper prepared for presentation at The 2013 AAEA & CAES

More information

MyHealthCenter Program Basic Guide

MyHealthCenter Program Basic Guide MyHealthCenter Program Basic Guide As a way to navigate the newest version of MyHealthCenter, I have created this basic guide. What is MyHealthCenter? It is an on-line health and wellness tracking tool.

More information

OBJECTIVES OVERVIEW 5/30/2012. IL WIC Program Risk Factor Changes July 1, 2012

OBJECTIVES OVERVIEW 5/30/2012. IL WIC Program Risk Factor Changes July 1, 2012 IL WIC Program Risk Factor Changes July 1, 2012 AUTOPLOT OBJECTIVES State the Center for Disease Control (CDC) new growth chart recommendations for birth to 24 months incorporating the WHO growth standards.

More information

Data Management, Data Management PLUS User Guide

Data Management, Data Management PLUS User Guide Data Management, Data Management PLUS User Guide Table of Contents Introduction 3 SHOEBOX Data Management and Data Management PLUS (DM+) for Individual Users 4 Portal Login 4 Working With Your Data 5 Manually

More information

Autocount GIRO plugin enable you to upload your E-banking payment instruction in a

Autocount GIRO plugin enable you to upload your E-banking payment instruction in a Introduction Autocount GIRO plugin enable you to upload your E-banking payment instruction in a batch base on your Payment Voucher instruction in Autocount accounting system. It eliminates the need for

More information

2017 National Conference

2017 National Conference 2017 National Conference W W W. C O M M O D I T Y F O O D S. O R G DENVER, COLORADO APRIL 23-26 UNDERSTANDING ENTITLEMENT-IT IS NOT FREE What is entitlement? Join us to learn the basics of entitlement,

More information

United States Tuberculosis Vaccine Industry 2016 Market Research Report

United States Tuberculosis Vaccine Industry 2016 Market Research Report Published on Market Research Reports Inc. (https://www.marketresearchreports.com) Home > United States Tuberculosis Vaccine Industry 2016 Market Research Report United States Tuberculosis Vaccine Industry

More information

FRUITS AND VEGETABLES A RESOURCE GUIDE

FRUITS AND VEGETABLES A RESOURCE GUIDE FRUITS AND VEGETABLES A RESOURCE GUIDE Food and Nutrition Service Office of Research, Nutrition and Analysis November 2007 TABLE OF CONTENTS TRAINING MATERIALS FRUITS AND VEGGIE NUTRITION... 4 STORAGE

More information

USDA Foods in Schools. Overview

USDA Foods in Schools. Overview USDA Foods in Schools Shenique Bridges Program Analyst, Child Nutrition Operations Branch November 28-29, 2018 Overview USDA Foods Program Background USDA Foods Entitlement USDA Foods Available List and

More information

Upper Tolerances for Micronutrients in Fertilizers

Upper Tolerances for Micronutrients in Fertilizers 2017 Her Majesty the Queen in Right of Canada (Canadian Food Inspection Agency), all rights reserved. Use without permission is prohibited. Upper Tolerances for Micronutrients in Fertilizers Program Objectives

More information