DATABASE DESIGN FOR HOTE DU AUSTRIA: PROBLEM & SOLN.

Size: px
Start display at page:

Download "DATABASE DESIGN FOR HOTE DU AUSTRIA: PROBLEM & SOLN."

Transcription

1 DATABASE DESIGN FOR HOTE DU AUSTRIA: PROBLEM & SOLN. PROBLEM Assume that you are an employee of a consultancy firm. Your firm has been hired to design and implement a database to support operations at the Hote description of the hotel follows: du Austria. A The hotel has three branches with all branches located in the same city. Each branch of the hotel has 100 rooms - (10 suites, 50 single rooms, 40 double rooms). Each branch of the hotel houses and manages a 4-star restaurant named Michelin, an entertainment lounge, a bar, a physical fitness room, a travel agency, a drugstore and a swimming pool for the guests. For branches, the information to be stored is the branch id (bid), branch location (b_locn) and branch manager (b_mgr). The travel agency which is named Travel City provides travel services for making local and international travel arrangements for guests and walk-ins. Customers visiting the travel services go to different branches of the hotel on different days depending on their convenience. Customers are assigned an ID and given a key card. Other customer information such as name address and phone are also stored. The drugstore, Trustworthy is open 24 hours a day, 7 days a week. It provides service to both guests and walkins. Lately, Trustworthy s managers have noticed that many customers go to more than one branch to fill their prescriptions. Since some customers have allergies or relevant medical conditions, it would be best for the managers of different branches to share information on the customer s medical history. Currently, the customers use cash or credit card (CC#) as a payment method, every time they encounter an expense at the hotel. One of the policies of management is to provide fast, convenient and unobtrusive service to customers such that a guest need not carry money to enjoy the hotel s amenities. In order to facilitate this policy, the management desires to include billing of meal, travel, drugstore, and entertainment expenses to the guest s room-bill as and when the expenses are incurred. Guests are shown a form that shows the invoice number (inv#), date (dt) and time (t) of the expense, the items & descriptions (item# & descr.) on the bill and the total amount. The management also desires to support instantaneous querying facility (on-line input with real time processing) of room bill status by management and authorized members of the staff. The new system should include a menu screen that can be used by the hotel receptionists to answer the following queries: 1) expenses by category such as pharmacy, restaurant etc. 2) a listing of current expenses and current total, 3) final bill showing all expenses and a grand total. Required: 1) FD diagram, 2) design 3) an explanation of how design meets requirements. PROBLEM ANALYSIS (ECLASSES ARE OUTLINED) Assume that you are an employee of a consultancy firm. Your firm has been hired to design and implement a database to support operations at the Hote du Austria. A 1

2 description of the hotel follows: The hotel has three branches with all branches located in the same city. Each branch of the hotel has 100 rooms - (10 suites, 50 single rooms, 40 double rooms). Each branch of the hotel houses and manages a 4-star restaurant named Michelin, an entertainment lounge, a bar, a physical fitness room, a travel agency, a drugstore and a swimming pool for the guests. For branches, the information to be stored is the branch id (bid), branch location (b_locn) and branch manager (b_mgr). The travel agency which is named Travel City provides travel services for making local and international travel arrangements for guests and walk-ins. Guests visiting the travel services go to different branches of the hotel on different days depending on their convenience. They are assigned an ID and given a key card. Other guest information such as name address and phone are also stored. The drugstore, Trustworthy is open 24 hours a day, 7 days a week. It provides service to both guests and walk-ins. Lately, Trustworthy s managers have noticed that many customers go to more than one branch to fill their prescriptions. Since some customers have allergies or relevant medical conditions, it would be best for the managers of different branches to share information on the customer s medical history. Currently, the customers use cash or credit card (CC#, expiry) as a payment method, every time they encounter an expense at the hotel. One of the policies of management is to provide fast, convenient and unobtrusive service to customers such that a guest need not carry money to enjoy the hotel s amenities. In order to facilitate this policy, the management desires to include billing of meal, travel, drugstore, and entertainment expenses to the guest s room-bill as and when the expenses are incurred. Guests are shown a form that displays the invoice number (inv#), date (dt) and time (t) of the expense, the items & descriptions (item# & descr.) on the bill and the total amount. The management also desires to support instantaneous querying facility (on-line input with real time processing) of room bill status by management and authorized members of the staff. The new system should include a menu screen that can be used by the hotel receptionists to answer the following queries: 1) expenses by category such as pharmacy, restaurant etc. 2) a listing of current expenses and current total, 3) final bill showing all expenses and a grand total. Required: 1) FD diagram, 2) design 3) an explanation of how design meets requirements. Comment [WIU1]: Attributes of branch. Comment [WIU2]: What is this? Comment [WIU3]: Invoice eclass Comment [WIU4]: Derived attribute Comment [WIU5]: Requirements that need to be fulfilled by the design 2

3 LIST ECLASSES AND ATTRIBUTES Branch: bid, b_locn, b_mgr. Room: room#, type Facility: facility code, type, manager Guest: guest_id, name, address, ph Comment [WIU6]: Room# is assumed; type is single, double or suite Comment [WIU7]: These are assumed. Facility type is used to denote whether it is a pool, restaurant, bar etc. Credit card: cc#, name, exp_dt. Medical history: MH#, code, description, prescriptions. Payment method: cc#, exp_dt Expense: item#, dt, time, descr., amount, pmt_type Room bill: inv#, dt, t Comment [WIU8]: Item# has been added. Its an artificial key denoting list of expenses; dt and time have also been added to describe expenses. Comment [WIU9]: Total is a derived attribute not included here. FD DIAGRAM bid, room# -- type ; since there are three branches, we cannot assume room# s will be unique. Type is determined by the room# facility code ---- bid, type, manager; same comments as above apply; note also that a branch can have multiple facilities but each facility belongs to one branch. guest_id --- name, addr, ph; self evident MH#, code, description, prescriptions; lets keep things simple and assume one prescription per medical problem. cc# -- name, exp_dt; each cc has an owner and expiration date. item# -- dt, t, descr., amount pmt_type, facility code; facility code refers to whether it is a gymn, restaurant etc. inv# -- dt, t; invoice# determines date and time it is created. room#, dt -- guest_id; encodes relationship between rooms and guests 3

4 DESIGN Room (room#, type) Facility (facility code, type, manager) Guest (guest_id, name, addr, ph) Medical History(MH#, code, description, prescriptions, guest_id); guest_id is the cross reference key. Card(cc#, exp_dt, guest_id); -- guest id is a cross reference key; in fact if a 1:1 between Guest and Card can be assumed, they can be combined. Expense(item#, date, time, descr., facility code, amount, pmt method, room#, cc#, inv#); ---- room# & cc# are inserted as a cross reference key; this makes pmt_type redundant. But is kept in case it is cash. Note that guest_id then need not be incorporated as another cross reference key (it is already a foreign key in card). Expenses usually belong on a room bill. When data is entered, if the inv# is blank then it is an expense by a walk-in customer. An additional note field should make such things clearer. Room bill(inv#, dt, t, guest_id) guest_id is inserted as a cross reference key in recognition of relationship between guests and expenses. MEETING THE REQUIREMENTS The requirements are as follows: 1. Guest s medical history shared across branches -- There is a medical history table that can be accessed from any branch. 2. Billing of customer Customer can use any facility at any branch and can get charged for it. The charges are accumulated in the Expense table. The payment method can be cash, room# or cc#. Subtypes are poorly handled in design theory and we are seeing it here. 3. Final bill -- Invoice is dynamically created as a view by combining room bill with expenses using inv# as the cross reference key. 4. Grand Total -- The total amount is a derived field and is calculated in a form/report or through a separate query. 5. Room bill status -- the same info as above can also be queried at any time through a multi-table SELECT statement involving Expense and Room bill. tables. 6. Expenses by category Expenses can be sorted based on facility code attribute for requirements #3, #4 and #5 above. 4

5 Medical history is not shown to avoid overcrowding it would be shown where the dotted rectangle is located. 5

A New Way to Work in the ERCOT Market

A New Way to Work in the ERCOT Market Siemens Energy, Inc. Power Technology Issue 111 A New Way to Work in the ERCOT Market Joseph M. Smith Senior Staff Business Development Specialist joseph_smith@siemens.com In recent months The Electric

More information

Atennea Air. The most comprehensive ERP software for operating & financial management of your airline

Atennea Air. The most comprehensive ERP software for operating & financial management of your airline Atennea Air The most comprehensive ERP software for operating & financial management of your airline Atennea Air is an advanced and comprehensive software solution for airlines management, based on Microsoft

More information

WHAT S NEW in 7.9 RELEASE NOTES

WHAT S NEW in 7.9 RELEASE NOTES 7.9 RELEASE NOTES January 2015 Table of Contents Session Usability...3 Smarter Bookmarks... 3 Multi-Tabbed Browsing... 3 Session Time Out Pop Up... 4 Batch No Show Processing...5 Selecting a Guarantee

More information

FareStar Ticket Window Product Functionality Guide

FareStar Ticket Window Product Functionality Guide FareStar Ticket Window Product Functionality Guide To: GlobalStar, Peter Klebanow, Martin Metzler From: Paul Flight, TelMe Farebase Date: 11 August 2006 Version: Five Contact: paulf@telme.com Tel: +44

More information

System for calculation of flights profitability. Paris 2002

System for calculation of flights profitability. Paris 2002 System for calculation of flights profitability Paris 2002 LOT Mission! LOT is the Polish flag carrier meeting quality expectations of its customers, combining tradition with modern technology, desiring

More information

myldtravel USER GUIDE

myldtravel USER GUIDE myldtravel USER GUIDE Rev #2 Page 2 of 37 Table of Contents 1. First-Time Login... 4 2. Introduction to the myldtravel Application... 7 3. Creating a Listing... 8 3.1 Traveller Selection... 9 3.2 Flight

More information

Application for Revalidation

Application for Revalidation Application for Revalidation REV FORM Please use a blue or black pen to complete this form. Please print in BLOCK LETTERS. NAATI Number: (if known) Part 1 Personal Details Title Mr Mrs Ms Miss Other (please

More information

DART. Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry

DART. Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry DART Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry DART Duty & Recreation Travel 2 STAFF TRAVEL COULDN T GET EASIER

More information

QuickStart Guide. Concur Premier: Travel

QuickStart Guide. Concur Premier: Travel QuickStart Guide Concur Premier: Travel Proprietary Statement This document contains proprietary information and data that is the exclusive property of Concur Technologies, Inc., Redmond, Washington. If

More information

General Terms and Conditions for airberlin exquisite

General Terms and Conditions for airberlin exquisite General Terms and Conditions for airberlin exquisite The following general terms and conditions apply for all persons who participate in the airberlin exquisite programme of Airberlin PLC & Co. Luftverkehrs

More information

INVITATION FOR EXPRESSION OF INTEREST

INVITATION FOR EXPRESSION OF INTEREST 1. Introduction INVITATION FOR EXPRESSION OF INTEREST Indah Water Konsortium Sdn Bhd (Company No. 211763-P) ( IWK ) is seeking for Expression of Interest (EOI) from consultants registered with the Ministry

More information

Derivation of xuml Models

Derivation of xuml Models Derivation of xuml Models Multiple Relationships Associative Relationships Competitive Relationships Specification Relationships Reflexive Relationships Examples Multiple Associations between Pairs of

More information

Key Performance Indicators

Key Performance Indicators Key Performance Indicators The first section of this document looks at key performance indicators (KPIs) that are relevant in SkyChess. KPIs are useful as a measure of productivity, which can be sub-divided

More information

e-crew Horizon Air Trip Trades Notes for the Flight Attendants

e-crew Horizon Air Trip Trades Notes for the Flight Attendants e-crew Horizon Air Trip Trades Notes for the Flight Attendants Trip Trades allow Crewmembers to trade trips & working duties without involving Crew Scheduling, provided the trade does not violate any Government,

More information

TD Generation. Merchant Guide: Air Miles. For the TD Generation

TD Generation. Merchant Guide: Air Miles. For the TD Generation TD Generation Merchant Guide: Air Miles For the TD Generation Portal 2 with PINpad COPYRIGHT 2016 by The Toronto-Dominion Bank This publication is confidential and proprietary to The Toronto-Dominion Bank

More information

Myth Busting MyTravel. Kim Coleman and Nancy Herbst 26, March 2014

Myth Busting MyTravel. Kim Coleman and Nancy Herbst 26, March 2014 Myth Busting MyTravel Kim Coleman and Nancy Herbst 26, March 2014 Introduction How-Tos, Things to Keep in Mind, and the Future Looks Bright PRESENTATION TITLE HERE Introduction MyTravel is a payment tool

More information

icrew Helpful Hints A publication of the Delta MEC Scheduling Committee February 1, 2017 Version 1

icrew Helpful Hints A publication of the Delta MEC Scheduling Committee February 1, 2017 Version 1 icrew Helpful Hints A publication of the Delta MEC Scheduling Committee February 1, 2017 Version 1 Monthly Schedule & Other Information To look at your schedule select either the My Schedule Button which

More information

JOB DESCRIPTION FBO Manager

JOB DESCRIPTION FBO Manager JOB DESCRIPTION FBO Manager RESPONSIBLE TO: LOCATION: Managing Director London Biggin Hill Airport Ltd WHAT IS THE JOB LIKE? The role holder will have an oversight of operational issues and teams to ensure

More information

Opal One Day Travel Pass Questions and Answers

Opal One Day Travel Pass Questions and Answers Charities and other not-for-profit organisations May 2018 Opal One Day Travel Pass Questions and Answers Overview 1. What is the Opal One Day Travel Pass? The Opal One Day Travel Pass is a new type of

More information

Tour Leader Official Guidelines

Tour Leader Official Guidelines Bicycle Touring Club of North Jersey Tour Leader Official Guidelines GENERAL All tour participants must be members of BTCNJ. This is not an attempt to increase membership, but rather it is an insurance

More information

Part 1. Part 2. airports100.csv contains a list of 100 US airports.

Part 1. Part 2. airports100.csv contains a list of 100 US airports. .. Fall 2007 CSC/CPE 365: Database Systems Alexander Dekhtyar.. Lab 8: PL/SQL Due date: Thursday, November 29, midnight Assignment Preparation The main part of this assignment is to be done in teams. The

More information

QuickTrav Invoicing Carbon Footprint (v1.6q+)

QuickTrav Invoicing Carbon Footprint (v1.6q+) Index 1. Overview 2. Setup 3. Calculations 3.1. Air Tickets 3.2. Car Hire 3.3. Accommodation 4. Queries 4.1. By Line 4.2. By Segment Last Updated: LCK 27/09/2010 Pg 1 1. Overview QuickTrav invoicing currently

More information

AmadeusCytric Online User guide. October 2017

AmadeusCytric Online User guide. October 2017 AmadeusCytric Online User guide October 207 Home page Welcome to the AmadeusCytric home page. This modern user interface users intuitive icons making a simple booking experience and quick to navigate..

More information

Mark Scheme (Results) January 2008

Mark Scheme (Results) January 2008 Scheme (Results) January 2008 GCE GCE Travel and Tourism(6987) Paper 1 Edexcel Limited. Registered in England and Wales No. 4496750 Registered Office: One90 High Holborn, London WC1V 7BH Unit 1: The Travel

More information

2/11/2010 7:08 AM. Concur Travel Service Guide Southwest Direct Connect

2/11/2010 7:08 AM. Concur Travel Service Guide Southwest Direct Connect 2/11/2010 7:08 AM Concur Travel Service Guide Southwest Direct Connect Overview... 3 Benefits... 3 How it Works... 4 Application of Credit... 11 Trip Cancel... 12 Allow Cancel and Rebook... 15 Error Messaging...

More information

e-crew Horizon Air Pilot Trip Trades Phase I Notes for the Crewmembers

e-crew Horizon Air Pilot Trip Trades Phase I Notes for the Crewmembers e-crew Horizon Air Pilot Trip Trades Phase I Notes for the Crewmembers Trip Trades allow Crewmembers to trade trips without involving Crew Scheduling, provided the trade does not violate any Government,

More information

Higher National Unit Specification. General information for centres. Unit code: DR04 34

Higher National Unit Specification. General information for centres. Unit code: DR04 34 Higher National Unit Specification General information for centres Unit title: Aviation Legislation Unit code: DR04 34 Unit purpose: This Unit is designed to allow candidates to acquire a knowledge and

More information

Travel Training Manual: Section 5. Travel Card Management Site. The Travel Card (TCARD) Management System

Travel Training Manual: Section 5. Travel Card Management Site. The Travel Card (TCARD) Management System Manual: Section 5 Travel Card Management Site The Travel Card (TCARD) Management System This is the main menu for the Travel Card Management System. By logging in to the web site with your Login, travel

More information

S-Series Hotel App User Guide

S-Series Hotel App User Guide S-Series Hotel App User Guide Version 1.2 Date: April 10, 2017 Yeastar Information Technology Co. Ltd. 1 Contents Introduction... 3 About This Guide... 3 Installing and Activating Hotel App... 4 Installing

More information

Passenger Rebooking - Decision Modeling Challenge

Passenger Rebooking - Decision Modeling Challenge Passenger Rebooking - Decision Modeling Challenge Solution by Edson Tirelli Table of Contents Table of Contents... 1 Introduction... 1 Problem statement... 2 Solution... 2 Input Nodes... 2 Prioritized

More information

Preliminary Staff User s Manual. CASSi The Computerized Aircraft Scheduling System Rev. 1.28a. February 10, 2001

Preliminary Staff User s Manual. CASSi The Computerized Aircraft Scheduling System Rev. 1.28a. February 10, 2001 CASSi The Computerized Aircraft Scheduling System Rev. 1.28a February 10, 2001 Page 1 of 37 June 25, 2000 Introduction CASSi is the Computerized Aircraft Scheduling System, an Internet based system that

More information

Air Travel: An Introduction (Higher) Selling Scheduled Air Travel (Higher)

Air Travel: An Introduction (Higher) Selling Scheduled Air Travel (Higher) National Unit Specification: general information NUMBER DF6M 12 COURSE Selling Scheduled Air Travel (Higher) SUMMARY This unit is designed to prepare candidates for employment in the retail travel industry.

More information

Additional Boarding Setup and Daily Operations Guide

Additional Boarding Setup and Daily Operations Guide Additional Boarding Setup and Daily Operations Guide PetExec allows you to set holiday boarding prices, adjust kennel locations and boarding prices on a day-to-day basis, and accept boarding deposits that

More information

Reserve Pilot Scheduling

Reserve Pilot Scheduling Reserve Pilot Scheduling User Guide January 30, 2014 Table of Contents Reserve Pilot Scheduling... 3 Reviewing the Reserve Master Schedule... 4 Review Reserve Availability - FIFO List... 7 Review Open

More information

O-1 EMPLOYEE CHECKLIST & QUESTIONNAIRE

O-1 EMPLOYEE CHECKLIST & QUESTIONNAIRE TEXAS TECH UNIVERSITY HEALTH SCIENCES CENTER O-1 EMPLOYEE CHECKLIST & QUESTIONNAIRE (FY 2017) Please return the completed forms and all supporting documents by mail or email to: TTUHSC Human Resources

More information

Air Carrier E-surance (ACE) Design of Insurance for Airline EC-261 Claims

Air Carrier E-surance (ACE) Design of Insurance for Airline EC-261 Claims Air Carrier E-surance (ACE) Design of Insurance for Airline EC-261 Claims May 06, 2016 Tommy Hertz Chris Saleh Taylor Scholz Arushi Verma Outline Background Problem Statement Related Work and Methodology

More information

Economic Impacts of Campgrounds in New York State

Economic Impacts of Campgrounds in New York State Economic Impacts of Campgrounds in New York State June 2017 Report Submitted to: Executive Summary Executive Summary New York State is home to approximately 350 privately owned campgrounds with 30,000

More information

After entering the information for your request, click on the Enter button at the top of the screen and the Master Schedule will display.

After entering the information for your request, click on the Enter button at the top of the screen and the Master Schedule will display. SCHEDULE Hover your cursor over Schedule in the CCS Main Menu tabs to display the available transactions. Click on the desired transaction to access that transaction. Master Schedule Hover your cursor

More information

The AeroKurier Online Contest Not Just for Computer Nerds

The AeroKurier Online Contest Not Just for Computer Nerds The AeroKurier Online Contest Not Just for Computer Nerds You ve probably heard pilots talk about uploading flight claims to the OLC, but you ve probably also heard some horror stories about how hard it

More information

SOMMAIRE WORK IN SAS MODE BORDEAUX OR ST NAZAIRE CAN TAKE 3 TABLES OF 4 AGENTS ONE LEADER PER TABLE 10. BOOK A CAR 1.

SOMMAIRE WORK IN SAS MODE BORDEAUX OR ST NAZAIRE CAN TAKE 3 TABLES OF 4 AGENTS ONE LEADER PER TABLE 10. BOOK A CAR 1. CONCUR USER GUIDE 1 SOMMAIRE 1. PROFILE UPDATE 2. AIR TICKET BOOKING 3. AIR TICKET BOOKING SUSCRIBER FARES SEARCH 3 TABLES OF 4 AGENTS 4. AIR TICKET BOOKING WITH APPROVAL 5. TRAIN TICKET BOOKING BY PRICE

More information

About JetPrivilege + Benefits and Privileges

About JetPrivilege + Benefits and Privileges About JetPrivilege + Benefits and Privileges 5 Membership Tiers Blue: Blue Plus: Elite Tiers: Base tier After accumulation of 5 Tier Points or 7,500 Tier JPMiles in any six month time-frame. Blue Plus

More information

Specialty Cruises. 100% Tally and Strip Cruises

Specialty Cruises. 100% Tally and Strip Cruises Specialty Cruises 100% Tally and Strip Cruises Cumulative Tally Tree Category Cruises Stratified Cruises Tree or Log Average Cruises Multiple Cruisers on the same Stand Site Index Cruises Reproduction

More information

Concur Travel: VIA Rail Direct Connect

Concur Travel: VIA Rail Direct Connect Concur Travel: VIA Rail Direct Connect Travel Service Guide Applies to Concur Travel: Professional/Premium edition TMC Partners Direct Customers Standard edition TMC Partners Direct Customers Contents

More information

FBO Procedures in Expesite Original Document Last updated: Aug. 14, 2009

FBO Procedures in Expesite Original Document Last updated: Aug. 14, 2009 FBO Procedures in Expesite Original Document Last updated: Aug. 14, 2009 ALL procedures depicted below must be utilized at all times when working within Expesite in order to ensure consistency and maintain

More information

Appendix 8: Coding of Interchanges for PTSS

Appendix 8: Coding of Interchanges for PTSS FILE NOTE DATE 23 October 2012 AUTHOR SUBJECT Geoffrey Cornelis Appendix 8: Coding of Interchanges for PTSS 1. Introduction This notes details a proposed approach to improve the representation in WTSM

More information

CASS & Airline User Manual

CASS & Airline User Manual CASSLink AWB Stock Management System CASS & Airline User Manual Version 2.11 (for CASSLink Version 2.11) Version 2.11 1/29 March 2009 CASSLink Stock Management Table of Contents Introduction... 3 1. Initialising

More information

International Airport Concession Briefing Package

International Airport Concession Briefing Package International Airport Concession Briefing Package RMD Financial Corporation 2300 W. 29th Ave., Denver, Colorado 80205 720-436-4832 Fax 720-262-8994 www.rmdfc.net generalmail@rmdfc.net International Airport

More information

New Distribution Capability (NDC)

New Distribution Capability (NDC) Together Let s Build Airline Retailing Accountable Document Validated official document (such as any type of an airline ticket, or a Standard Traffic Document (STD) or payment voucher) that has a value

More information

PARKING CAPACITY REQUIREMENTS

PARKING CAPACITY REQUIREMENTS PARKING CAPACITY REQUIREMENTS Presented to: Antaramian Development Corporation 365 5 th Avenue South Naples, Florida 34102 CONTENTS Page INTRODUCTION... 1 BACKGROUND... 2 EXISTING PARKING CONDITIONS...

More information

QCAA travel policy. Contents. Scope. Finance

QCAA travel policy. Contents. Scope. Finance QCAA travel policy Contents Scope... 1 General accountabilities... 2 Accommodation... 2 Air travel... 3 Fleet vehicles... 4 Private vehicles... 5 Hire cars... 7 Other travel expenses... 7 More information...

More information

Sabre Online Quick Reference Guide

Sabre Online Quick Reference Guide Sabre Online Quick Reference Guide Logging in Logging In www.tandemtravel.co.nz Log into Sabre Online with your allocated username (your work email address) and password (case sensitive) Forgotten your

More information

Functional Skills Maths Assessment. Level 1

Functional Skills Maths Assessment. Level 1 Functional Skills Maths Assessment Level 1 Learner name Learner registration number Learner signature Centre Assessment date NOCN USE ONLY Task Mark 1a 1b 1c 1d 1e 1f 2a 2b 2c 2d 2e 3 Total Instructions

More information

Heathrow Airport Bus and Coach Movement Charge

Heathrow Airport Bus and Coach Movement Charge Heathrow Airport Bus and Coach Movement Charge Consultation Document Date: 19 May 2011 Prepared by: Heathrow Airport Limited Status: Final 2 Contents Executive Summary Page 3 1. Introduction and Consultation

More information

WELCOME TO THE RADISSON BLU ROYAL HOTEL, BRUSSELS THE BEST PLACE TO SAY: YES! TO A BRILLIANT NEW CAREER! INTERNSHIP AS FOOD & DRINKS MANAGER ASSISTANT

WELCOME TO THE RADISSON BLU ROYAL HOTEL, BRUSSELS THE BEST PLACE TO SAY: YES! TO A BRILLIANT NEW CAREER! INTERNSHIP AS FOOD & DRINKS MANAGER ASSISTANT INTERNSHIP AS FOOD & DRINKS MANAGER ASSISTANT You will assist the F&D Manager in the department s daily tasks. Assisting in the taking, accounting and processing of inventory information and ensuring accounting

More information

Measure 67: Intermodality for people First page:

Measure 67: Intermodality for people First page: Measure 67: Intermodality for people First page: Policy package: 5: Intermodal package Measure 69: Intermodality for people: the principle of subsidiarity notwithstanding, priority should be given in the

More information

Exclusive Benefits, Local Experiences

Exclusive Benefits, Local Experiences Exclusive Benefits, Local Experiences Join Club Marriott and enjoy benefits at more than 300 participating Marriott hotels with over 1,000 restaurants across Asia Pacific. As a Club Marriott member, you

More information

Solutions to Examination in Databases (TDA357/DIT620)

Solutions to Examination in Databases (TDA357/DIT620) Solutions to Examination in Databases (TDA357/DIT620) 20 March 2015 at 8:30-12:30, Hörsalsvägen 5 CHALMERS UNIVERSITY OF TECHNOLOGY AND UNIVERSITY OF GOTHENBURG, Department of Computer Science and Engineering

More information

Signature Travel Expert Certification Course

Signature Travel Expert Certification Course Signature Travel Expert Certification Course Module 5: Hotels and Resorts Program Introduction Revised 7/13/2018 Signature s hotels and resorts program provides members with preferred partnerships with

More information

Signature Travel Expert Certification Course

Signature Travel Expert Certification Course Signature Travel Expert Certification Course Module 5: Hotels and Resorts Program Introduction Revised May 23, 2017 Signature s hotels and resorts program provides members with preferred partnerships with

More information

assist in understanding the hierarchal flow of the personnel at the front office

assist in understanding the hierarchal flow of the personnel at the front office H04FO02 Organisation of Front office Items Subject Name Paper Name Module Name Module ID Pre-requisites Objectives Keywords Description of Module Home Science Front Office and House Keeping Organisation

More information

US AIRWAYS. November 11, 2013 VIA ELECTRONIC

US AIRWAYS. November 11, 2013 VIA ELECTRONIC US AIRWAYS November 11, 2013 VIA ELECTRONIC SUBMISSION VIA ELECTRONIC MAIL Docket OST -1996-1960 U.S. Department of Transportation Docket Management Facility 1200 New Jersey Avenue, SE Washington, DC 20590

More information

Hotel Booking System For Magento

Hotel Booking System For Magento Hotel Booking System For Magento webkul.com/blog/magento-hotel-booking-system/ On - November 23, 2015 Hotel Booking System For Magento is a module which helps in developing your Magento Website into a

More information

Abstract. Introduction

Abstract. Introduction COMPARISON OF EFFICIENCY OF SLOT ALLOCATION BY CONGESTION PRICING AND RATION BY SCHEDULE Saba Neyshaboury,Vivek Kumar, Lance Sherry, Karla Hoffman Center for Air Transportation Systems Research (CATSR)

More information

(Also known as the Den-Ice Agreements Program) Evaluation & Advisory Services. Transport Canada

(Also known as the Den-Ice Agreements Program) Evaluation & Advisory Services. Transport Canada Evaluation of Transport Canada s Program of Payments to Other Government or International Agencies for the Operation and Maintenance of Airports, Air Navigation, and Airways Facilities (Also known as the

More information

Change of Status to F-1. International Student and Scholar Services

Change of Status to F-1. International Student and Scholar Services Change of Status to F-1 International Student and Scholar Services Tutorial Outline Topics covered in this tutorial include: Questions to Ask Yourself Before Starting the Process Comparison of F-1 and

More information

Estimating the Risk of a New Launch Vehicle Using Historical Design Element Data

Estimating the Risk of a New Launch Vehicle Using Historical Design Element Data International Journal of Performability Engineering, Vol. 9, No. 6, November 2013, pp. 599-608. RAMS Consultants Printed in India Estimating the Risk of a New Launch Vehicle Using Historical Design Element

More information

Economic Impact for Airlines from Air Traffic Control Tower Modernization at LaGuardia Airport

Economic Impact for Airlines from Air Traffic Control Tower Modernization at LaGuardia Airport Economic Impact for Airlines from Air Traffic Control Tower Modernization at LaGuardia Airport Presented at SCEA Marc Rose, MCR LLC 202-548-5584 mrose@mcricom 24 June 2007 MCR, LLC MCR Proprietary - Distribution

More information

- Online Travel Agent Focus -

- Online Travel Agent Focus - North American Online Travel Report 2009 - Online Travel Agent Focus - EyeforTravel Research 7-9 Fashion Street London E1 6PX UK For queries contact: amy@eyefortravel.com www.eyefortravelresearch.com EyeforTravel

More information

AIRSERVICES AUSTALIA DRAFT PRICING NOTIFICATION REGIONAL EXPRESS SUBMISSION TO THE ACCC MAY 2011

AIRSERVICES AUSTALIA DRAFT PRICING NOTIFICATION REGIONAL EXPRESS SUBMISSION TO THE ACCC MAY 2011 AIRSERVICES AUSTALIA DRAFT PRICING NOTIFICATION REGIONAL EXPRESS SUBMISSION TO THE ACCC MAY 2011 1. Introduction This submission is provided to the ACCC by Regional Express Holdings Ltd in response to

More information

North American Online Travel Report

North American Online Travel Report North American Online Travel Report 2009 - Hotel Focus - EyeforTravel Research 7-9 Fashion Street London E1 6PX UK For queries contact: amy@eyefortravel.com www.eyefortravelresearch.com EyeforTravel Ltd,

More information

Math at the Amusement Park

Math at the Amusement Park Your Assignment: Math at the Amusement Park Your math teacher has decided to sponsor a class field trip to an amusement park. Your task is to research information about the prices and other amenities that

More information

Sensitive Security Information

Sensitive Security Information For Pilot Air Freight LLC Authorized Representatives Please note that our legal name of Pilot Air Freight LLC is the only one recognized by the TSA. We operate under the trade name of Pilot Freight Services.

More information

NHS Professionals System User Guide

NHS Professionals System User Guide System: Holiday Booking Version Number: 1702.01.00.01 Audience: Flexible Workers Document Version Number: V3 Version Number Author Date Signed Off V3 John Russell 29 th September 2017 V0.2 John Russell

More information

14 YORK REGION TRANSIT (YRT/VIVA) SOUTHWEST DIVISION OPERATIONS AND MAINTENANCE CONTRACT EXTENSION

14 YORK REGION TRANSIT (YRT/VIVA) SOUTHWEST DIVISION OPERATIONS AND MAINTENANCE CONTRACT EXTENSION Clause No. 14 in Report No. 13 of the was adopted, without amendment, by the Council of The Regional Municipality of York at its meeting held on September 11, 2014. 14 YORK REGION TRANSIT (YRT/VIVA) SOUTHWEST

More information

SUPERSEDED. [Docket No. 99-NM-121-AD; Amendment ; AD ]

SUPERSEDED. [Docket No. 99-NM-121-AD; Amendment ; AD ] [4910-13-U] DEPARTMENT OF TRANSPORTATION Federal Aviation Administration 14 CFR Part 39 [64 FR 33394 No. 120 06/23/99] [Docket No. 99-NM-121-AD; Amendment 39-11199; AD 99-12-52] RIN 2120-AA64 Airworthiness

More information

TERMS AND CONDITIONS a. Members PRO b. Cancellation of accounts and cards

TERMS AND CONDITIONS a. Members PRO b. Cancellation of accounts and cards MELIÁ PRO Rewards (henceforth the Programme, and formally known as the mas amigos) programme, is a Loyalty Programme, operated by Meliá Hotels International, S.A. (formally Sol Meliá, S.A. and, henceforth,

More information

8 CROSS-BOUNDARY AGREEMENT WITH BRAMPTON TRANSIT

8 CROSS-BOUNDARY AGREEMENT WITH BRAMPTON TRANSIT 8 CROSS-BOUNDARY AGREEMENT WITH BRAMPTON TRANSIT The Transportation Services Committee recommends the adoption of the recommendations contained in the following report dated May 27, 2010, from the Commissioner

More information

Kristina Ricks ISYS 520 VBA Project Write-up Around the World

Kristina Ricks ISYS 520 VBA Project Write-up Around the World VBA Project Write-up Around the World Initial Problem Online resources are very valuable when searching for the cheapest flights to any particular location. Sites such as Travelocity.com, Expedia.com,

More information

MEMBER REGULATION. notice

MEMBER REGULATION. notice MEMBER REGULATION INVESTMENT DEALERS ASSOCIATION OF CANADA notice ASSOCIATION CANADIENNE DES COURTIERS EN VALEURS MOBILIÈRES Contact: K. Rose: (416) 943-6907 - krose@ida.ca MR 009 February 15, 2000 ATTENTION:

More information

E-3 EMPLOYEE CHECKLIST & QUESTIONNAIRE

E-3 EMPLOYEE CHECKLIST & QUESTIONNAIRE TEXAS TECH UNIVERSITY HEALTH SCIENCES CENTER E-3 EMPLOYEE CHECKLIST & QUESTIONNAIRE (FY 2017) Please return the completed forms and all supporting documents by mail or email to: TTUHSC Human Resources

More information

Weymouth Promenade Lighting

Weymouth Promenade Lighting Weymouth Promenade Lighting Dorset Coastal Connections Community Consultation Summary 1. Background The Weymouth Promenade Lighting project will create a new artist-designed lighting scheme along Weymouth

More information

Online Guest Accommodation Booking System

Online Guest Accommodation Booking System DIRECTORATE OF ESTATES, MINISTRY OF URBAN DEVELOPMENT, GOVERNMENT OF INDIA Online Guest Accommodation Booking System [User Manual For Booking Agency] Document Prepared By Sunil Babbar, Scientist C, NIC

More information

Date: 8 th June Document Reference. No. Tender Specifications

Date: 8 th June Document Reference. No. Tender Specifications Open Clarifications 2 and Corrigenda 1 and 2 European Banking Authority : Procurement Procedure for the Provision of Travel Arrangement Services to the European Banking Authority (EBA/2012/019/OPS/SER/OP)

More information

SUPERSEDED [ U] DEPARTMENT OF TRANSPORTATION. Federal Aviation Administration. 14 CFR Part 39 [66 FR /5/2001]

SUPERSEDED [ U] DEPARTMENT OF TRANSPORTATION. Federal Aviation Administration. 14 CFR Part 39 [66 FR /5/2001] [4910-13-U] DEPARTMENT OF TRANSPORTATION Federal Aviation Administration 14 CFR Part 39 [66 FR 13227 3/5/2001] [Docket No. 2000-NM-416-AD; Amendment 39-12128; AD 2001-04-09] RIN 2120-AA64 Airworthiness

More information

Application to add or remove, temporary or permanent Line Stations (Line Maintenance Facilities) to/from an approval.

Application to add or remove, temporary or permanent Line Stations (Line Maintenance Facilities) to/from an approval. Application to add or remove, temporary or permanent Line Stations (Line Maintenance Facilities) to/from an approval. Not required for Occasional Line Maintenance (less than ten consecutive days). Please

More information

Recommendations for Funding Water, Sewer and Drainage Systems. Presentation to the Citizens and Businesses of New Orleans January 2012

Recommendations for Funding Water, Sewer and Drainage Systems. Presentation to the Citizens and Businesses of New Orleans January 2012 Recommendations for Funding Water, Sewer and Drainage Systems Presentation to the Citizens and Businesses of New Orleans January 2012 Sewerage & Water Board of New Orleans www.swbno.org 2 Agenda Opening

More information

Please complete this form online (preferred method) then print, sign and submit as instructed.

Please complete this form online (preferred method) then print, sign and submit as instructed. Application for Approval of a Maintenance Programme (Initial Issue, Amendment or Temporary Amendment) or tification of the Indirect Approval of a Maintenance Programme Please complete this form online

More information

Establishment of Policy Regarding Aircraft Dispatcher Certification Courses

Establishment of Policy Regarding Aircraft Dispatcher Certification Courses This document is scheduled to be published in the Federal Register on 10/22/2014 and available online at http://federalregister.gov/a/2014-25060, and on FDsys.gov [4910-13] DEPARTMENT OF TRANSPORTATION

More information

important changes to your Altitude Qantas Rewards terms and conditions

important changes to your Altitude Qantas Rewards terms and conditions important changes to your Westpac Altitude Qantas Rewards terms and conditions Effective 17 June 2013 Effective from 17 June 2013, we will be introducing some changes to Altitude Qantas Rewards Program.

More information

Concur Travel: Post Ticket Change Using Sabre Automated Exchanges

Concur Travel: Post Ticket Change Using Sabre Automated Exchanges Concur Travel: Post Ticket Change Using Sabre Automated Exchanges Travel Service Guide Applies to Concur Travel: Professional/Premium edition TMC Partners Direct Customers Standard edition TMC Partners

More information

ANDHRA PRAGATHI GRAMEENA BANK HEAD OFFICE : KADAPA. Cir No BC-ITD Date:

ANDHRA PRAGATHI GRAMEENA BANK HEAD OFFICE : KADAPA. Cir No BC-ITD Date: ANDHRA PRAGATHI GRAMEENA BANK HEAD OFFICE : KADAPA Cir No. 182-2010-BC-ITD Date: 27-08-2010 Creation of Product Code and parameters in TBM for Pragathi Ujvala Deposit Attention of the Branches/ECs/Regional

More information

EU ECOLABEL USER MANUAL TOURIST ACCOMMODATION Commission Decision for the award of the EU Ecolabel for tourist accommodation (2017/175/EC)

EU ECOLABEL USER MANUAL TOURIST ACCOMMODATION Commission Decision for the award of the EU Ecolabel for tourist accommodation (2017/175/EC) Check-List This checklist (in blue table) summarises the documentation to be provided for each mandatory criterion. The documentation described below has to be submitted to the Competent Body. Applicant

More information

Blank TA forms are obtained from Statewide Financial Systems. As TA s are in numerical sequence, there should be TA Log maintained.

Blank TA forms are obtained from Statewide Financial Systems. As TA s are in numerical sequence, there should be TA Log maintained. Travel Authorizations (TA s) The Travel Authorization (TA) form must be completed and signed by the traveler and supervisor prior to commitment of university funds. Fax signatures on the TA are acceptable.

More information

Summary Report. Economic Impact Assessment for Beef Australia 2015

Summary Report. Economic Impact Assessment for Beef Australia 2015 Summary Report Economic Impact Assessment for Beef Australia 2015 September 2015 The Department of State Development The Department of State Development exists to drive the economic development of Queensland.

More information

Garmin Pilot. Plan. File. Fly.

Garmin Pilot. Plan. File. Fly. Garmin Pilot Plan. File. Fly. Garmin Pilot Comprehensive Suite of Aviation Tools VFR Sectionals IFR High and Low En-route charts Dynamic Layer Maps Aviation Weather AOPA Airport Directory Flight Plan Filing

More information

Solutions for CAT 2017 DILR Morning (Slot-1)

Solutions for CAT 2017 DILR Morning (Slot-1) Solutions for CAT 2017 DILR Morning (Slot-1) 35. As the item which take the maximum time is burger, client 1 will be completely served by 10.00 + 10 minutes = 10.10 Choice (2) 36. The time taken for the

More information

Booking instructions 1

Booking instructions 1 Booking instructions 1 Overview Login My profile Hotel search Booking overview Cancellation Rebooking Booking representative Contact P. 3-4 P. 5-7 P. 8-17 P. 18 P. 19 P. 20 P. 21-24 P. 25 2 Log in Internet/URL

More information

June 29 th, Dear Camper and parents/guardians,

June 29 th, Dear Camper and parents/guardians, June 29 th, 2017 Dear Camper and parents/guardians, Congratulations, on being selected to attend the African Nova Scotian Health Sciences Summer Camp at Cape Breton University! The camp is in its second

More information

Airport Monopoly and Regulation: Practice and Reform in China Jianwei Huang1, a

Airport Monopoly and Regulation: Practice and Reform in China Jianwei Huang1, a 2nd International Conference on Economics, Management Engineering and Education Technology (ICEMEET 2016) Airport Monopoly and Regulation: Practice and Reform in China Jianwei Huang1, a 1 Shanghai University

More information

Hotel Accessibility Pack

Hotel Accessibility Pack Hotel Accessibility Pack Hilton Imperial Dubrovnik is committed to providing equality of service for all our guests. Hotel accessibility pack is designed to answer your questions regarding accessibility

More information