Databases 2012 Authorization

Size: px
Start display at page:

Download "Databases 2012 Authorization"

Transcription

1 Databases 2012 Christian S. Jensen Computer Science, Aarhus University

2 Controlling access to the database Identities owner, users, roles, public Objects tables or views (+ triggers, PSM code, types) Priviliges a range of different actions 2

3 Identities The owner of a database object unlimited priviliges to read and modify Users identified by their login identities explicitly assigned priviliges Roles hierarchical groups of users Public corresponds to the group of all users and roles 3

4 Objects Tables as objects the entire table a subset of the columns no row-based authorization Views as objects are treated like tables may provide a fine granularity 4

5 Priviliges SELECT the right to query a table INSERT the right to insert rows (or individual attributes) DELETE the right to delete rows UPDATE the right to update rows (or individual attributes) REFERENCES the right to include an attribute in a foreign key 5

6 Granting Priviliges GRANT priviliges ON object TO identity GRANT SELECT, UPDATE(office) ON People TO amoeller; GRANT INSERT, DELETE ON Exams TO engberg; 6

7 Transitive Granting GRANT priviliges ON object TO identity WITH GRANT OPTION; Now the grantee may pass on these (or weaker) priviliges to other identities GRANT SELECT, UPDATE ON Exams TO amoeller WITH GRANT OPTION; GRANT UPDATE(date, time) ON Exams TO schwarz; csj amoeller 7

8 Revoking Priviliges REVOKE priviliges ON object FROM identities CASCADE revoke priviliges, also remove transitive priviliges REVOKE priviliges ON object FROM identities RESTRICT revoke priviliges, fail if transitive priviliges are affected REVOKE GRANT OPTION FOR priviliges... revoke the right to grant future transitive priviliges 8

9 Derived Consequences A sequence of authorization changes: csj: amoeller: schwarz: csj: engberg: csj: GRANT SELECT ON Exams TO amoeller WITH GRANT OPTION; GRANT SELECT ON Exams TO schwarz WITH GRANT OPTION; GRANT SELECT ON Exams TO amoeller WITH GRANT OPTION; GRANT SELECT ON Exams TO engberg WITH GRANT OPTION; GRANT SELECT ON Exams TO schwarz WITH GRANT OPTION; REVOKE SELECT ON Exams FROM amoeller CASCADE; Which priviliges hold afterwards? 9

10 Grant Diagrams Nodes indicate identities and priviliges owner transitive with grant option transitive Edges indicate grant statements: csj UPDATE Exams amoeller UPDATE Exams schwarz UPDATE(date,time) Exams 10

11 Grant Diagram Well-Formedness Owners have all priviliges (implicit) All nodes are reachable from owner nodes No edges from nodes or to nodes: All edges lead to the same or weaker priviliges: amoeller UPDATE Exams jdn DELETE Exams 11

12 Revocation in Grant Diagrams (1/3) REVOKE priviliges ON object FROM identities CASCADE Remove the corresponding edge in the diagram Remove all nodes not reachable from nodes 12

13 Revocation in Grant Diagrams (2/3) REVOKE GRANT OPTION FOR priviliges ON object FROM identities CASCADE Change the target node from to : Remove edges from target to other nodes: Remove nodes not reachable from nodes 13

14 Revocation in Grant Diagrams (3/3) REVOKE priviliges ON object FROM identities RESTRICT Fail if any nodes become unreachable REVOKE GRANT OPTION FOR priviliges ON object FROM identities RESTRICT Fail if any nodes become unreachable 14

15 Derived Consequences A sequence of authorization changes: csj: amoeller: schwarz: csj: engberg: csj: GRANT SELECT ON Exams TO amoeller WITH GRANT OPTION; GRANT SELECT ON Exams TO schwarz WITH GRANT OPTION; GRANT SELECT ON Exams TO amoeller WITH GRANT OPTION; GRANT SELECT ON Exams TO engberg WITH GRANT OPTION; GRANT SELECT ON Exams TO schwarz WITH GRANT OPTION; REVOKE SELECT ON Exams FROM amoeller CASCADE; csj amoeller No priviliges are lost! engberg schwarz 15

16 The References Privilige CREATE TABLE Rooms ( room VARCHAR(15) PRIMARY KEY NOT NULL, capacity INT ); CREATE TABLE People ( name VARCHAR(40) NOT NULL, office VARCHAR(15) REFERENCES Rooms(room), userid VARCHAR(15) PRIMARY KEY NOT NULL, `group` CHAR(3) ); GRANT INSERT ON People TO amoeller; GRANT REFERENCES(room) ON Rooms TO amoeller; INSERT INTO People VALUE(...); Necessary to support foreign key references The validity of a foreign key yields information 16

17 Authorizing Queries INSERT INTO Participants ( SELECT AS meetid, pid, 'u' AS status FROM Meetings, Participants WHERE Meetings.meetid=Participants.meetid AND owner = 'amoeller' AND pid <> 'amoeller' AND pid NOT IN (SELECT room FROM Rooms)); Minimal requirements can be inferred: GRANT SELECT, INSERT ON Participants... GRANT SELECT ON Meetings... GRANT SELECT ON Rooms... 17

18 Restricted Inserts CREATE TABLE Payroll ( name VARCHAR(40), title VARCHAR(20), salary INT DEFAULT 1500 ); GRANT INSERT(name,title) ON Payroll TO amoeller; INSERT INTO Payroll VALUES('Anders Møller','beer taster'); amoeller INSERT INTO Payroll VALUES('Anders Møller','beer taster',8500); amoeller Default or NULL for missing values 18

19 Roles Combines groups of users with set of privileges CREATE ROLE Paymaster; GRANT UPDATE(salary) ON Payroll TO Paymaster; GRANT Paymaster TO amoeller WITH GRANT OPTION; kjensen SET ROLE Paymaster; GRANT Paymaster TO schwarz; amoeller SET ROLE Paymaster; UPDATE Payroll SET salary='8500' WHERE name='anders Møller'; schwarz All users and roles have the role public 19

20 Role Hierarchies CREATE ROLE Employee; CREATE ROLE Paymaster; CREATE ROLE Janitor; CREATE ROLE Boss; GRANT Employee TO Paymaster; GRANT Employee TO Janitor; GRANT Paymaster TO Boss; GRANT Janitor TO Boss; Boss Paymaster Janitor All priviliges are inherited Employee 20

21 Views CREATE VIEW Vips AS SELECT * FROM People WHERE group = 'vip'; GRANT SELECT ON Vips TO amoeller; Priviliges on the base tables are not considered they are neither implicitly granted nor required INSERT, DELETE, and UPDATE priviliges are meaningful for modifiable views 21

22 Granularity With Views SELECT priviliges are for the entire table Views allows finer granularity CREATE VIEW Employees AS SELECT name, title FROM Payroll; GRANT SELECT ON Employees TO amoeller; As if we could say: GRANT SELECT(name,title) ON Employees... 22

23 Row-Based Views allow priviliges on specific rows: CREATE VIEW SmallRooms AS SELECT * FROM Rooms WHERE Capacity <= 4; GRANT UPDATE(room) ON SmallRooms TO... Permission to change the names of small rooms 23

24 Field-Based Priviliges to change only individual data: CREATE VIEW AndersView AS SELECT title FROM Payroll WHERE name='anders Møller'; GRANT UPDATE ON AndersView TO amoeller; Too many views to maintain Really inefficient in pratice Some systems use special registers like CURRENT USER 24

SQL Authorization. Privileges Grant and Revoke Grant Diagrams

SQL Authorization. Privileges Grant and Revoke Grant Diagrams SQL Authorization Privileges Grant and Revoke Grant Diagrams 1 Authorization A file system identifies certain privileges on the objects (files) it manages. Typically read, write, execute. A file system

More information

Managing FLOGI, Name Server, FDMI, and RSCN Databases, page 1

Managing FLOGI, Name Server, FDMI, and RSCN Databases, page 1 Managing FLOGI, Name Server, FDMI, and RSCN Databases This chapter describes how to configure and manage FLOGI, name server FDMI, and RSCN databases. This chapter includes the following sections:, page

More information

Certification of Employee Time and Effort

Certification of Employee Time and Effort Procedure: Policy: Number: Completing a Personnel Activity Report (PAR) Certification of Employee Time and Effort GP1200.3 ( ) Complete Revision Supersedes: Page: ( ) Partial Revision Page 1 of 21 ( X

More information

Proposal Gifts Guide

Proposal Gifts Guide Proposal Gifts Guide 021312 2008 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

CSE255 Introduction to Databases - Fall 2007 Semester Project Overview and Phase I

CSE255 Introduction to Databases - Fall 2007 Semester Project Overview and Phase I SEMESTER PROJECT OVERVIEW In this term project, you are asked to design a small database system, create and populate this database by using MYSQL, and write a web-based application (with associated GUIs)

More information

User Guide Part 13 CMMS

User Guide Part 13 CMMS User Guide Part 13 Contents 1 OVERVIEW... 4 1.1 What is?... 4 1.2 Hierarchy Model... 4 1.3 Compatibility... 4 2 GETTING STARTED... 5 2.1 Running... 5 2.2 and Data Model Designer... 5 2.3 Menu... 6 2.3.1

More information

Electronic Handbooks (EHBs) Overview. Department of Health and Human Services Health Resources and Services Administration EHBs Grantee Info

Electronic Handbooks (EHBs) Overview. Department of Health and Human Services Health Resources and Services Administration EHBs Grantee Info Electronic Handbooks (EHBs) Overview Department of Health and Human Services Health Resources and Services Administration EHBs Grantee Info Agenda EHBs Notes EHBs Login Navigation Adding to a Portfolio

More information

Module Professional Profiles

Module Professional Profiles Professional Profiles 1 Module 3 1 2 Objectives In this module you will learn: Professional Profile basics How to create a Professional Profile How to add biosketches How to assign permissions to a Professional

More information

Account name. Select when the grant should be issued. If an option is not selected, the grant will be issued as soon as possible.

Account name. Select when the grant should be issued. If an option is not selected, the grant will be issued as soon as possible. Recommend a grant Use this form to recommend a grant to charity from your philanthropic account. For quicker processing times, enter this grant online. For more information, refer to our Policies and guidelines

More information

NCLEX Administration Website Boards of Nursing/ Regulatory Body Guide Version

NCLEX Administration Website Boards of Nursing/ Regulatory Body Guide Version NCLEX Administration Website Boards of Nursing/ Regulatory Body Guide Version 14.8.1 Pearson is a trademark of Pearson Education, Inc. 2003-2014 Pearson Education, Inc. All rights reserved. Candidate contact

More information

Reporting in the ems Manual

Reporting in the ems Manual INTERREG V-A ROMANIA-HUNGARY PROGRAMME Reporting in the ems Manual For lead partners and project partners Partnership for a better future www.interreg-rohu.eu Version 1 February 2017 Disclaimer: This is

More information

CS Mandatory Access Control, part 2. Prof. Clarkson Spring 2016

CS Mandatory Access Control, part 2. Prof. Clarkson Spring 2016 CS 5430 Mandatory Access Control, part 2 Prof. Clarkson Spring 2016 Review: MAC Mandatory access control (MAC) not Message Authentication Code (applied crypto), nor Media Access Control (networking) philosophy:

More information

Alumni Foundation Database

Alumni Foundation Database Alumni Foundation Database Procedures The Alumni Foundation Database is the sole source of data to be used by all University units for directing newsletters, invitations, solicitations or other structured

More information

How to Access and Navigate Cognos Query Studio

How to Access and Navigate Cognos Query Studio Course ID: This is a training guide to step you through accessing Cognos Query Studio and navigating through the interface. Before you begin... When is this used? The Cognos tool is used to report against

More information

Care360 EHR Frequently Asked Questions

Care360 EHR Frequently Asked Questions Care360 EHR Frequently Asked Questions Table of Contents Care360 EHR... 4 What is Care360 EHR?... 4 What are the current capabilities of Care 360 EHR?... 4 Is Care 360 EHR an EMR?... 5 Can I have Care360

More information

ecrt System 4.5 Training

ecrt System 4.5 Training ecrt System 4.5 Training The Work List The Work List is displayed immediately after you log into the system. This screen lists the tasks that require attention. The Statements Awaiting Certification list

More information

Quanum Electronic Health Record Frequently Asked Questions

Quanum Electronic Health Record Frequently Asked Questions Quanum Electronic Health Record Frequently Asked Questions Table of Contents... 4 What is Quanum EHR?... 4 What are the current capabilities of Quanum EHR?... 4 Is Quanum EHR an EMR?... 5 Can I have Quanum

More information

APPLICANT DISPOSITION REQUIREMENTS

APPLICANT DISPOSITION REQUIREMENTS OHR Recruiting Job Aid Applicant Disposition Requirements 11/24/2014 APPLICANT DISPOSITION REQUIREMENTS Use this table to guide you in updating applicant dispositions during the recruiting process. Governmental

More information

CrossroadsFinder.com/jobs Jobs User Guide

CrossroadsFinder.com/jobs Jobs User Guide CrossroadsFinder.com/jobs Jobs User Guide User Guide Quick Search Using the Quick Search form at www.crossroadsfinder.com/jobs, you can quickly view all jobs in a particular category. You can also refine

More information

Office of Clinical Research. CTMS Reference Guide Patient Entry & Visit Tracking

Office of Clinical Research. CTMS Reference Guide Patient Entry & Visit Tracking Se Office of Clinical Research CTMS Reference Guide Patient Entry & Visit Tracking Table of Contents Logging into CTMS... 3 Search and Recruitment / Quick Search... 4 How to Configure Quick Search Fields...

More information

Banner Finance Research Accounting Training Workbook

Banner Finance Research Accounting Training Workbook Banner Finance Research Accounting Training Workbook January 2007 Release 7.3 HIGHER EDUCATION What can we help you achieve? Confidential Business Information -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

More information

EMIRATES FOUNDATION USER MANUAL. Interns Manual

EMIRATES FOUNDATION USER MANUAL. Interns Manual EMIRATES FOUNDATION USER MANUAL Interns Manual Table of Contents 1. Registration.2 2. Create Your CV 4 3. Dashboard.9 4. Search Internships.11 5. Email Alerts 14 Interns Manual 1. Registration In order

More information

Getting Started Guide. Created by

Getting Started Guide. Created by Getting Started Guide Created by March 17, 2017 Table of Contents 1 Getting Started... 2 2 Patient Overview... 2 2.1 Patient Search... 2 2.2 Creating Patients... 2 2.3 Patient Information... 2 2.4 Visual

More information

Peoplesoft Effort Certification. Participant s Manual

Peoplesoft Effort Certification. Participant s Manual Peoplesoft Effort Certification Participant s Manual Version 1.3.7 Revised April, 2007 TABLE OF CONTENTS COURSE OVERVIEW... 3 INTRODUCTION... 4 LEARNING OBJECTIVES... 4 MODULE 1: WHY COMPLETE EFFORT REPORTS...

More information

FY 2014 Amendments Instructional Guide for Recipients

FY 2014 Amendments Instructional Guide for Recipients e-snaps Training Series FY 2014 Amendments Instructional Guide for Recipients Completing e-snaps step C1.9b 2015, Version 1 Table of Contents Introduction... 2 Objectives... 2 Overview of the Amendment

More information

A Guide to GSG Travel Grant Reimbursement

A Guide to GSG Travel Grant Reimbursement Graduate Student Government A Guide to GSG Travel Grant Reimbursement What materials do you need? 1. Receipts of your purchases. Please try to have as many of the receipts as possible. 2. Travel Grant

More information

Kuali Coeus Implementation Preaward/Award Blueprinting Workshop 6

Kuali Coeus Implementation Preaward/Award Blueprinting Workshop 6 Kuali Coeus Implementation Preaward/Award Blueprinting Workshop 6 KC-PRE28: Prepare Summary Proposal KC-AWD22: Research Gifts November 13, 2013 Goals and Outcomes Goals Obtain feedback on the proposed

More information

Use PowerPoint templates for internal presentations and that promote the chapter/institution s meetings and events.

Use PowerPoint templates for internal presentations and that promote the chapter/institution s meetings and events. THIS CHARTER AGREEMENT (the Agreement ), is made this day of, 2017, between the American Association of Critical-Care Nurses ( AACN ), and the ( chapter ), an affiliate of AACN. Chapters are governed by

More information

Pressure Perfect Monitoring System. Marilyne Mendolla Vidhya Pillai

Pressure Perfect Monitoring System. Marilyne Mendolla Vidhya Pillai Pressure Perfect Monitoring System Marilyne Mendolla Vidhya Pillai Abstract In an attempt to bring commercial blood pressure monitors up to speed with current technology, we wish to design a monitoring

More information

Terms and Conditions of Maine Grant Programs 2018

Terms and Conditions of Maine Grant Programs 2018 Terms and Conditions of Maine Grant Programs 2018 Terms and Conditions page Harold Alfond College Challenge Grant...1 Initial Matching Grant...3 Automated Funding Grant...4 NextStep Matching Grant...5

More information

CITY HARVEST NETWORK SCHOLARSHIP

CITY HARVEST NETWORK SCHOLARSHIP INTRODUCTION CITY HARVEST NETWORK SCHOLARSHIP Provided by City Harvest Network, P.O. Box 316, Columbus, OH 43216-0316 Terms & Conditions Last updated Friday, June 15, 2018 This document outlines the Terms

More information

Use And Disclosure Of Protected Health Information (PHI) For Research

Use And Disclosure Of Protected Health Information (PHI) For Research Current Status: Pending PolicyStat ID: 2558954 Origination: Last Approved: Last Revised: Next Review: Owner: Policy Area: References: Applicability: N/A N/A N/A 1 year after approval PAIGE ENGLISH: ASSOCIATE

More information

Site Manager Guide CMTS. Care Management Tracking System. University of Washington aims.uw.edu

Site Manager Guide CMTS. Care Management Tracking System. University of Washington aims.uw.edu Site Manager Guide CMTS Care Management Tracking System University of Washington aims.uw.edu rev. 8/13/2018 Table of Contents INTRODUCTION... 1 SITE MANAGER ACCOUNT ROLE... 1 ACCESSING CMTS... 2 SITE NAVIGATION

More information

Health Cloud Implementation Guide

Health Cloud Implementation Guide Health Cloud Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: November 8, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

ECOS APPROVER TRAINING

ECOS APPROVER TRAINING ECOS APPROVER TRAINING This document will familiarize you with the roles and responsibilities of being an Educator Certification Online System (ECOS) approver along with the procedural steps in granting

More information

Policy on Cost Allocation, Cost Recovery, and Cost Sharing

Policy on Cost Allocation, Cost Recovery, and Cost Sharing President Page 1 of 11 PURPOSE: Provide guidance and structure when allocating and documenting costs (direct and indirect) for extramurally funded awards. Serves to provide direction for budgeting, allocating

More information

Purpose: To create a record capturing key data about a submitted proposal for reference and reporting purposes.

Purpose: To create a record capturing key data about a submitted proposal for reference and reporting purposes. Kuali Research User Guide: Create Institutional Proposal Version 4.0: vember 206 Purpose: To create a record capturing key data about a submitted proposal for reference and reporting purposes. Trigger

More information

LABAVN LOS ANGELES BUSINESS ASSISTANCE VIRTUAL NETWORK ADMINISTRATIVE FUNCTIONS

LABAVN LOS ANGELES BUSINESS ASSISTANCE VIRTUAL NETWORK ADMINISTRATIVE FUNCTIONS LABAVN LOS ANGELES BUSINESS ASSISTANCE VIRTUAL NETWORK ADMINISTRATIVE FUNCTIONS 8-16-2016 Table of Contents Introduction...2 Post an Opportunity...3 Step 1: Add Information to the Opportunity..3 Step 2:

More information

EFIS. (Education Finance Information System) Training Guide and User s Guide

EFIS. (Education Finance Information System) Training Guide and User s Guide EFIS (Education Finance Information System) Training Guide and User s Guide January 2011 About this Guide This guide explains the basics of using the Education Finance Information System (EFIS). The intended

More information

Emergency room. Construction Document. Copyright 2016 Bizagi

Emergency room. Construction Document. Copyright 2016 Bizagi Emergency room Construction Document Access Management 1 Table of Contents Identify the general process and milestones... 2 Stakeholders... 3 Experience design... 3 Manage Stakeholders... 4 Identify Activities,

More information

COMMUNITY HOWARD REGIONAL HEALTH KOKOMO, INDIANA. Medical Staff Policy POLICY #4. APPOINTMENT, REAPPOINTMENT AND CREDENTIALING POLICY

COMMUNITY HOWARD REGIONAL HEALTH KOKOMO, INDIANA. Medical Staff Policy POLICY #4. APPOINTMENT, REAPPOINTMENT AND CREDENTIALING POLICY COMMUNITY HOWARD REGIONAL HEALTH KOKOMO, INDIANA Medical Staff Policy POLICY #4. APPOINTMENT, REAPPOINTMENT AND CREDENTIALING POLICY 1.1 PURPOSE The purpose of this Policy is to set forth the criteria

More information

CIP Cyber Security Incident Reporting and Response Planning

CIP Cyber Security Incident Reporting and Response Planning A. Introduction 1. Title: Incident Reporting and Response Planning 2. Number: CIP-008-5 3. Purpose: To mitigate the risk to the reliable operation of the BES as the result of a Incident by specifying incident

More information

CTjobs.com User Guide

CTjobs.com User Guide CTjobs.com User Guide What Is It? Introduction Connecticut s leading metro, suburban and neighborhood newspapers have joined together to create a local internet career board. The site offers the most up-to-date

More information

Capture and Record Vital Signs Configuration Guide

Capture and Record Vital Signs Configuration Guide Enterprise EHR Meaningful Use - Core Measure 4 Capture and Record Vital Signs Configuration Guide Last Updated: February 27, 2014 Copyright 2013 Allscripts Healthcare, LLC. www.allscripts.com MU Core 4

More information

ADVANCE DIRECTIVE YOU DO NOT HAVE TO FILL OUT AND SIGN THIS FORM

ADVANCE DIRECTIVE YOU DO NOT HAVE TO FILL OUT AND SIGN THIS FORM ADVANCE DIRECTIVE YOU DO NOT HAVE TO FILL OUT AND SIGN THIS FORM PART A: IMPORTANT INFORMATION ABOUT THIS ADVANCE DIRECTIVE This is an important legal document. It can control critical decisions about

More information

SYSTEM REQUIREMENTS AND USEFUL INFORMATION LOGGING INTO THE PERIS PORTAL

SYSTEM REQUIREMENTS AND USEFUL INFORMATION LOGGING INTO THE PERIS PORTAL SYSTEM REQUIREMENTS AND USEFUL INFORMATION ------------------------------------------------- LOGGING INTO THE PERIS PORTAL -------------------------------------------------------------------------- CREATING

More information

USDA. Self-Help Automated Reporting and Evaluation System SHARES 1.0. User Guide

USDA. Self-Help Automated Reporting and Evaluation System SHARES 1.0. User Guide USDA Self-Help Automated Reporting and Evaluation System SHARES 1.0 User Guide Table of Contents CHAPTER 1 - INTRODUCTION TO SHARES... 5 1.1 What is SHARES?... 5 1.2 Who can access SHARES?... 5 1.3 Who

More information

EXPLORATORY PRE-SEED GRANTS. Information and guidelines for applicants

EXPLORATORY PRE-SEED GRANTS. Information and guidelines for applicants EXPLORATORY PRE-SEED GRANTS Information and guidelines for applicants PAGE 2/17 Table of contents 1 EXPLORATORY PRE-SEED GRANTS... 4 1.1 PURPOSE... 4 1.2 ELIGIBILITY... 4 1.3 RESEARCH FIELDS... 4 1.4 FUNDING...

More information

Quality ID #137 (NQF 0650): Melanoma: Continuity of Care Recall System National Quality Strategy Domain: Communication and Care Coordination

Quality ID #137 (NQF 0650): Melanoma: Continuity of Care Recall System National Quality Strategy Domain: Communication and Care Coordination Quality ID #137 (NQF 0650): Melanoma: Continuity of Care Recall System National Quality Strategy Domain: Communication and Care Coordination 2018 OPTIONS FOR INDIVIDUAL MEASURES: REGISTRY ONLY MEASURE

More information

Providing and Billing Medicare for Chronic Care Management Services

Providing and Billing Medicare for Chronic Care Management Services Providing and Billing Medicare for Chronic Care Management Services (and Other Fee-For-Service Population Health Management Services) No portion of this white paper may be used or duplicated by any person

More information

INFORMATION AND GUIDELINES FOR APPLICANTS POSTDOC FELLOWSHIPS IN NURSING RESEARCH

INFORMATION AND GUIDELINES FOR APPLICANTS POSTDOC FELLOWSHIPS IN NURSING RESEARCH INFORMATION AND GUIDELINES FOR APPLICANTS POSTDOC FELLOWSHIPS IN NURSING RESEARCH Content GRANT INFORMATION AND GUIDELINES FOR APPLICANTS 1. POSTDOC FELLOWSHIPS IN NURSING RESEARCH... 4 1.1. PURPOSE...

More information

COMPLIANCE RESOURCES PROFESSIONAL PRACTICE TOOLS. Policies and Procedures Tools. AskRegs Knowledgebase & Assistance

COMPLIANCE RESOURCES PROFESSIONAL PRACTICE TOOLS. Policies and Procedures Tools. AskRegs Knowledgebase & Assistance Published May 2015 NASFAA COMPLIANCE RESOURCES PROFESSIONAL PRACTICE TOOLS Student Aid Index Self-Evaluation Guide Policies and Procedures Tools AskRegs Knowledgebase & Assistance How-to Guides Standards

More information

Teacher Guide to the Florida Department of Education Roster Verification Tool

Teacher Guide to the Florida Department of Education Roster Verification Tool Teacher Guide to the 2016-17 Florida Department of Education Roster Verification Tool Table of Contents Overview... 1 Timeline... 1 Contact and Help Desk... 1 Teacher Login Instructions... 2 Teacher Review,

More information

19: Manage Labor Exchange

19: Manage Labor Exchange 19: Manage Labor Exchange Chapter Contents Mass Job Referrals... 19-2 Assigning Referrals to Job Orders... 19-3 Finding a Candidate for the Job Order Referrals... 19-3 Referral/Notifications Details Screen...

More information

Understanding Your Meaningful Use Report

Understanding Your Meaningful Use Report Understanding Your Meaningful Use Report Distributed by Kowa Optimed EMRlogic activehr Understanding Your Meaningful Use Report, version 2.1 Publication Date: May 8, 2012 OD Professional and activehr OD

More information

DTAS Mobile Application User Manual

DTAS Mobile Application User Manual Deployed Theater Accountability Software (DTAS) DTAS Mobile Application User Manual Version 3.3 Draft January 14, 2008 Submitted to LTC John Kilgallon Product Manager, AHRS PEO Enterprise Information Systems

More information

Mobile App Process Guide

Mobile App Process Guide Mobile App Process Guide Agency Setup and Management Copyright 2018 Homecare Software Solutions, LLC One Court Square 44th Floor Long Island City, NY 11101 Phone: (718) 407-4633 Fax: (718) 679-9273 Document

More information

REEport User Manual. Understanding NIFA Reporting Policies and Data Entry Requirements for Agricultural Research Projects

REEport User Manual. Understanding NIFA Reporting Policies and Data Entry Requirements for Agricultural Research Projects REEport User Manual Understanding NIFA Reporting Policies and Data Entry Requirements for Agricultural Research Projects National Institute of Food and Agriculture (NIFA) USDA January 2013 Table of Contents

More information

Oracle. Project Portfolio Management Cloud Using Grants Management. Release 13 (update 17D) This guide also applies to on-premises implementations

Oracle. Project Portfolio Management Cloud Using Grants Management. Release 13 (update 17D) This guide also applies to on-premises implementations Oracle Project Portfolio Management Cloud Release 13 (update 17D) This guide also applies to on-premises implementations Release 13 (update 17D) Part Number E89309-01 Copyright 2011-2017, Oracle and/or

More information

Setting Up an Award and Creating a Grant

Setting Up an Award and Creating a Grant The award is the mechanism that specifies the terms and conditions based on the sponsor agreement. There are four steps to setting up an award: 1. Create Award 2. Create Grant 3. Create Billing Schedule

More information

LOC DEADLINES FOR THE ONLINE REGISTRATION WAGC

LOC DEADLINES FOR THE ONLINE REGISTRATION WAGC MANUAL FOR THE ONLINE REGISTRATION WAGC DEADLINES FOR THE ONLINE REGISTRATION WAGC Subject What to do? Deadline Delegation Address and contact data 03.01.2018 Delegation Payment accreditations at the charge

More information

Research Accounting Banner System Procedures. Table of Contents... 2

Research Accounting Banner System Procedures. Table of Contents... 2 Human Resources/Finance Information Systems Research Accounting Manual Table of Contents Table of Contents... 2 Section A: Introduction... 3 Overview... 3 Process Introduction... 4 Terminology... 5 Section

More information

Grant Administration Workshop. Research and Sponsored Programs

Grant Administration Workshop. Research and Sponsored Programs Grant Administration Workshop Research and Sponsored Programs Grant Administration Workshop 1. Grant attributes and what this means 2. How to read your budget 3. How to see expense details 4. How to correctly

More information

Integrated Disbursement and Information System (IDIS) Online

Integrated Disbursement and Information System (IDIS) Online Integrated Disbursement and Information System (IDIS) Online U.S. Department of Housing and Urban Development (HUD) Office of Community Planning and Development (CPD) IDIS Online Reports User Guide October

More information

Instructions for Navigating Your Awarded Grant

Instructions for Navigating Your Awarded Grant Instructions for Navigating Your Awarded Grant proposalcentral s Post-Award allows grantees to submit progress reports, project documents, financial/budget information, communicate with the funding organization,

More information

These procedures are issued in accordance with Research Policy 306, Cost Sharing.

These procedures are issued in accordance with Research Policy 306, Cost Sharing. Procedures for Post-Award Administration of Cost Sharing These procedures are issued in accordance with Research Policy 306, Cost Sharing. They are intended for guidance on post-award administration of

More information

Managing Patient Consent on the echn Portal

Managing Patient Consent on the echn Portal Managing Patient Consent on the echn Portal User Guide/Manual Date: September 30, 2016 Version: 1.2 echn Document Number: PSO - 312 Table of Contents 1. What is echn?... 2 2. Patient Consent... 3 2.1.

More information

Practice Director Modified Stage MU Guide 03/17/2016

Practice Director Modified Stage MU Guide 03/17/2016 Table of Contents General Info & Meaningful Use Report....4-7 Measures..........8-62 Objective 1: Protect Electronic Health Information 8 Conduct or Review a security risk analysis Objective 2: Clinical

More information

TAA Ad Hoc Reports. Revised 9/09/2013 Page 1

TAA Ad Hoc Reports. Revised 9/09/2013 Page 1 Approved Training Application: List of TAA approved training applicants with no actual begin date for training. This report now excludes any TAA participant who has exited and those closed/never enrolled.

More information

HOSPICE QUALITY REPORTING PROGRAM

HOSPICE QUALITY REPORTING PROGRAM 4 HOSPICE QUALITY REPORTING PROGRAM GENERAL INFORMATION... 3 HOSPICE PATIENT STAY-LEVEL QUALITY MEASURE REPORT... 5 HOSPICE-LEVEL QUALITY MEASURE REPORT... 9 12/2016 v1.00 Certification And Survey Provider

More information

PRE-GRADUATE SCHOLARSHIPS Information and guidelines for applicants

PRE-GRADUATE SCHOLARSHIPS Information and guidelines for applicants PRE-GRADUATE SCHOLARSHIPS 2018 Information and guidelines for applicants PAGE 2/17 Table of contents 1 PRE-GRADUATE SCHOLARSHIPS 2018... 4 1.1 PURPOSE... 4 1.2 ELIGIBILITY... 4 1.3 FUNDING... 4 1.4 LANGUAGE...

More information

Electronic Effort Certification User Manual

Electronic Effort Certification User Manual Electronic Effort Certification User Manual Confidential Business Information This documentation is proprietary information of Ellucian and New Mexico State University (NMSU) and is not to be copied, reproduced,

More information

5.1 Demonstration Segment: Using the Workflow

5.1 Demonstration Segment: Using the Workflow Workflow: The Governance Approval Process CM includes a workflow tool which can be used to manage the proposal, submission and governance review process. Users can perform a number of functions in CM to

More information

PepsiCo Foundation PepsiCo Gives Back Employee Giving Campaign FAQ

PepsiCo Foundation PepsiCo Gives Back Employee Giving Campaign FAQ PepsiCo Foundation PepsiCo Gives Back Employee Giving Campaign FAQ October, 2015 Page 1 What is the PepsiCo Gives Back Employee Giving Campaign? This is an annual North America only fundraising campaign

More information

Information Retrieval System of Hospital using UML and Data Cube

Information Retrieval System of Hospital using UML and Data Cube ! "!" #$$" %&'''( ISSN No. 0976-5697 Information Retrieval System of Hospital using UML and Data Cube Rajesh Kumar School of Mathematics and Computer Applications Thapar University Patiala, India rakumar@thapar.edu

More information

PET TRUST VET PORTAL TABLE OF CONTENTS

PET TRUST VET PORTAL TABLE OF CONTENTS PET TRUST VET PORTAL TABLE OF CONTENTS Pet Trust Vet Portal... 2 Vet Portal Overview... 2 Vet Clinic Submission Side Online Portal Entry... 3 Cannon Processing of Online Vet Clinic Submissions (Batch Letters)...

More information

APPENDIX N. GENERIC DOCUMENT TEMPLATE, DISTRIBUTION STATEMENTS AND DOCUMENT DATA SHEET and THE IMPORTANCE OF MARKING DOCUMENTS

APPENDIX N. GENERIC DOCUMENT TEMPLATE, DISTRIBUTION STATEMENTS AND DOCUMENT DATA SHEET and THE IMPORTANCE OF MARKING DOCUMENTS APPENDIX N GENERIC DOCUMENT TEMPLATE, DISTRIBUTION STATEMENTS AND DOCUMENT DATA SHEET and THE IMPORTANCE OF MARKING DOCUMENTS This Appendix describes requirements for using a standardized document template,

More information

National Minimum Dataset (Hospital Inpatient Events) DATA MART - DATA DICTIONARY. Version 7.8 February 2016

National Minimum Dataset (Hospital Inpatient Events) DATA MART - DATA DICTIONARY. Version 7.8 February 2016 National Minimum Dataset (Hospital Inpatient Events) DATA MART - DATA DICTIONARY Version 7.8 Reproduction of material The Ministry of Health ( the Ministry ) permits the reproduction of material from this

More information

User Manual. MDAnalyze A Reference Guide

User Manual. MDAnalyze A Reference Guide User Manual MDAnalyze A Reference Guide Document Status The controlled master of this document is available on-line. Hard copies of this document are for information only and are not subject to document

More information

Grants Financial Procedures (Post-Award) v. 2.0

Grants Financial Procedures (Post-Award) v. 2.0 Grants Financial Procedures (Post-Award) v. 2.0 1 Grants Financial Procedures (Post Award) Version Number: 2.0 Procedures Identifier: Superseded Procedure(s): BU-PR0001 N/A Date Approved: 9/1/2013 Effective

More information

Cvent to CrowdCompass Connector User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA

Cvent to CrowdCompass Connector User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA Cvent to CrowdCompass Connector User Guide 2018 Cvent, Inc 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com Contents Cvent to CrowdCompass Connector User Guide... 3 Enabling the Cvent to CrowdCompass

More information

Midwives views and their relevance to recruitment, retention and return

Midwives views and their relevance to recruitment, retention and return Midwives views and their relevance to recruitment, retention and return Mavis Kirkham Professor of Midwifery University of Sheffield Who is there to be recruited? 1 Comparison of practising midwives with

More information

Loyalty Awards Policy Guide Policy Guide

Loyalty Awards Policy Guide Policy Guide Loyalty Awards Policy Guide Policy Guide US, AI CY2018-Q2 Effective January 1, 2018 until March 31, 2018 Avaya Edge Loyalty Awards Program a program designed to reward top performing partners who maintain

More information

Release Service Request Armed Forces Service Medal Veteran Code Requirements. Detail Design. January 22, 2008 Prepared by Robert Glaser

Release Service Request Armed Forces Service Medal Veteran Code Requirements. Detail Design. January 22, 2008 Prepared by Robert Glaser Service Request 82032 Armed Forces Service Medal Veteran Code Requirements Prepared by Robert Glaser Information Resources & Communications Office of the President University of California Table of Contents

More information

Printed from the Texas Medical Association Web site.

Printed from the Texas Medical Association Web site. Printed from the Texas Medical Association Web site. Medical Power of Attorney Patient and Health Care Provider Information September 1999 General Information To be read by the Patient and Health Care

More information

Comparative Regional Analysis of Bacterial Pneumonia Readmission Patients in Medicare category

Comparative Regional Analysis of Bacterial Pneumonia Readmission Patients in Medicare category Paper 7882-2016 Comparative Regional Analysis of Bacterial Pneumonia Readmission Patients in Medicare category Heramb Joshi, Oklahoma State University; Aditya Sharma, NXP Semiconductors; Dr. William Paiva,

More information

Privacy Rio Grande Valley HIE Policy: P1. Last date Revised/Updated 02/18/2016

Privacy Rio Grande Valley HIE Policy: P1. Last date Revised/Updated 02/18/2016 Privacy Rio Grande Valley HIE Policy: P1 Effective Date 01/15/2014 Last date Revised/Updated 02/18/2016 Date Board Approved: 02/18/2016 Subject: Authorization to Use and/or Disclose Protected Health Information

More information

Onboard. Design Specifications v1.0. Team Members. Liam Yafuso Robert Waite Diane Cordero Jacqueline Avis Daniel Tea

Onboard. Design Specifications v1.0. Team Members. Liam Yafuso Robert Waite Diane Cordero Jacqueline Avis Daniel Tea Onboard Design Specifications v1.0 Team Members Liam Yafuso Robert Waite Diane Cordero Jacqueline Avis Daniel Tea 1 1 Introduction 1.1 Product Overview 1.2 Definitions, Acronyms, and Abbreviations 2 Components

More information

The College of Nurses of Ontario presents the Documentation Learning Module Chapter 3: Accountability.

The College of Nurses of Ontario presents the Documentation Learning Module Chapter 3: Accountability. The College of Nurses of Ontario presents the Documentation Learning Module Chapter 3: Accountability. Accountability means being responsible for your actions and the consequences of your actions. Documentation

More information

6: The Programs Tab: WIOA

6: The Programs Tab: WIOA 6: The Programs Tab: WIOA Chapter Contents WIOA Program Overview... 6-1 The WIOA Application Form... 6-4 Summary of WIOA Eligibility Types and Requirements... 6-4 Summary of WIOA Tabs per Eligibility Type...

More information

Navigating CaneLink (canelink.miami.edu)

Navigating CaneLink (canelink.miami.edu) Navigating CaneLink (canelink.miami.edu) 1) Go To Student Center This will allow you to select the area where you access financial aid, student accounts, and academic record information. 2) Share My Information:

More information

Software Requirements Specification

Software Requirements Specification Software Requirements Specification Co-op Evaluation System Senior Project 2014-2015 Team Members: Tyler Geery Maddison Hickson Casey Klimkowsky Emma Nelson Faculty Coach: Samuel Malachowsky Project Sponsors:

More information

Welcome to the MS State Level Registry Companion Guide for

Welcome to the MS State Level Registry Companion Guide for Welcome to the MS State Level Registry Companion Guide for Step 3 Attestation of your EHR This companion guide will assist providers as they move through the MS State Level Registry (MS SLR) online attestation

More information

Longitudinal Patient Imaging Record in a DIR

Longitudinal Patient Imaging Record in a DIR Longitudinal Patient Imaging Record in a DIR PANEL DISCUSSION Don K Dennison Faculty/Presenter Disclosure Relationships with commercial interests: Consulting Fees: Provider and Vendor clients 2 Our Panel

More information

UnitedHealth Premium Program Attribution Methods

UnitedHealth Premium Program Attribution Methods UnitedHealth Premium Program Attribution Methods Resources u Phone: 866-270-5588 u Website: UHCprovider.com/Premium u Mail: UnitedHealthcare - UnitedHealth Premium Program MN017-W700 9700 Health Lane Minnetonka,

More information

XAVIER UNIVERSITY. Financial Conflict of Interest Policy-Federal Grant Proposals

XAVIER UNIVERSITY. Financial Conflict of Interest Policy-Federal Grant Proposals Effective Date: XAVIER UNIVERSITY Financial Conflict of Interest Policy-Federal Grant Proposals Last Updated: May 2013 Responsible University Office: Office of Grant Services Responsible Executive: Associate

More information

Guidelines for completing the Project Account Report

Guidelines for completing the Project Account Report Guidelines for completing the Project Account Report Unless otherwise specified in the contract documents, a project account report is to be completed by the end of each year as of 31 December and submitted

More information

Regular Grant Guidelines & Reporting Requirements

Regular Grant Guidelines & Reporting Requirements Regular Grant Guidelines & Reporting Requirements The beginning of this document contains guidelines and suggestions for applying for a grant. The end of the document outlines the requirements for managing

More information

MODULE ELEVEN. Getting Credit for the Work You Do: Entering Units of Service

MODULE ELEVEN. Getting Credit for the Work You Do: Entering Units of Service MODULE ELEVE Getting Credit for the Work ou Do: Entering Units of Service 1 2 Policy In order to effectively evaluate and remain competitive for funding, all service providers and medical case managers

More information

PepsiCo Foundation Matching Gifts FAQ

PepsiCo Foundation Matching Gifts FAQ PepsiCo Foundation Matching Gifts FAQ October, 2015 Page 1 What is the PepsiCo Foundation Matching Gift Program? The Matching Gift Program is designed to amplify PepsiCo employees individual charitable

More information