Management System for Flight Information

Size: px
Start display at page:

Download "Management System for Flight Information"

Transcription

1 Management System for Flight Information COP 5611 Chantelle Erasmus Page 1 of 17

2 Project Phases Design Phase (100 percent complete)... 3 Initial Implementation and Testing Phase (90 percent complete)... 8 Final Implementation and Completion Phase (0 percent complete)... 9 Page 2 of 17

3 General Design Phase The general design phase is split into the architecture specification and the design specification. These two phases describe the overall details of the application to be developed. These details may then be developed upon as the project progresses. 1 Architecture Specification The architecture specification contains information about what the application will look like. Figure 1 shows the overall design of the 3-tier structure of the application including the presentation layer, the application layer, and the database layer. The presentation and the application layers are encompassed in a container. Figure Presentation Layer The presentation layer of the application is the actual client application. Functionally, the client will present a screen or screens to the user that displays information. The screen also contains input fields in order to collect information from the user. When a user exercises a need for information, the client will also generate an HQL query based on the input from the user and the information needed by the user. This HQL query will then be sent to the application layer. Page 3 of 17

4 1.2 Application Layer The application layer of the application is the application server used to perform all of the logic. The function of the application layer (application server) is to take the input that is provided by the user and/or the HQL query provided by the presentation layer and to propagate the information to the database or other entities. The application server will also take the information obtained from the presentation layer and retrieve or aggregate the information it needs by converting the HQL query obtained into an SQL query that can be understood by the database layer. 1.3 Database Layer The database layer of the application is the database that contains all of the information that needs to be stored for future reference. It is a repository of all of the data, but it can also contain views in case the retrieval of the data needs to be optimized for any reason. The role authorization for this application will be done in this layer. Each user is assigned a certain role and each role has information that is visible in that role. This ensures that a user cannot access unauthorized information. 1.4 Package Information The application will be packaged as a jar file that can be run in the Java Virtual Machine. This format was selected so that the application can be run on any platform. 1.5 Use Case Format The table below displays the format to be used when each use case is described in the section below. Collects input from user Processes information Retrieves information Outputs Information Table 1 2 Design Specification The design specification contains information about what specifically the application will do. These details may change as the application is developed. 2.1 Users This application will have three types of users passengers, pilots, and administration. Each type of user will have different information that they are interested in and will also have different authorization levels Passenger Users The passenger users will have read-only access to certain kinds of information. This information includes arrival gate locations, departure gate locations, arrival baggage belt locations, arrival dates and times, and departure dates and times. Page 4 of 17

5 2.1.2 Passenger Use Cases Below are several tentative use cases for passenger users. These use cases may be added, modified, or removed as the application is developed in the following phases. A table is added to further clarify what information is used by each of the three layers Query Flight Number for Specific Date and/or Airline In this use case, the passenger user will enter a date and/or an airline and expects to receive a list of flight numbers for that specific date and/or airline in return. Collects date and/or Creates query with Retrieves information Outputs flight numbers airline date/or airline where conditions Table Query Arrival/Departure Gate for Specific Flight Number In this use case, the passenger user will enter a flight number and expects to receive a gate location in return. Collects flight number Creates query with Retrieves information Outputs gate location flight number where condition Table 3 Figure 2 shows a sample dialog to be used in this use case. MSFI Gate Information Please enter a flight number or a date: Flight Number: Date: February 12 M T W T F S S Find Gate Information Figure 2 Page 5 of 17

6 Query Arrival Baggage Belt for Specific Flight Number In this use case, the passenger user will enter a flight number and expects to receive a baggage belt location in return. Collects flight number Creates query with flight number where Retrieves information Outputs arrival baggage belt location condition Table Query Arrival/Departure Date and Time for Specific Flight Number In this use case, the passenger user will enter a flight number and expects to receive a datetime in return. Collects flight number Creates query with Retrieves information Outputs datetime flight number where condition Table Pilot Users The pilot users will have read-only access to certain kinds of information. This information includes arrival gate locations, departure gate locations, arrival baggage belt locations, aircraft types, runway location, arrival dates and times, and departure dates and times Pilot Use Cases Below are several tentative use cases for pilot users. These use cases may be added, modified, or removed as the application is developed in the following phases. A table is added to further clarify what information is used by each of the three layers Query Flight Number for Specific Date and/or Airline In this use case, the pilot user will enter a date and/or an airline and expects to receive a list of flight numbers for that specific date and/or airline in return. Collects date and/or Creates query with Retrieves information Outputs flight numbers airline date/or airline where conditions Table Query Arrival/Departure Gate for Specific Flight Number In this use case, the pilot user will enter a flight number and expects to receive a gate location in return. Collects flight number Creates query with Retrieves information Outputs gate location flight number where Page 6 of 17

7 condition Table 7 Figure 3 shows a sample dialog to be used in this use case. Figure Query Arrival Baggage Belt for Specific Flight Number In this use case, the pilot user will enter a flight number and expects to receive a baggage belt location in return. Collects flight number Creates query with flight number where Retrieves information Outputs arrival baggage belt location clause Table Query Aircraft Type for Specific Flight Number In this use case, the pilot user will enter a flight number and expects to receive an aircraft type in return. Collects flight number Creates query with Retrieves information Outputs aircraft type flight number where clause Table 9 Page 7 of 17

8 Query Runway Location for Specific Flight Number In this use case, the pilot user will enter flight number and expects to receive a runway location in return. Collects flight number Creates query with flight number where Retrieves information Outputs runway location clause Table Query Arrival/Departure Date and Time for Specific Flight Number In this use case, the pilot user will enter a flight number and expects to receive a datetime in return. Collects flight number Creates query with Retrieves information Outputs datetime flight number where condition Table Administrator Use Cases Below are several tentative use cases for administrator users. These use cases may be added, modified, or removed as the application is developed in the following phases. A table is added to further clarify what information is used by each of the three layers Query Flight Number for Specific Date and/or Airline In this use case, the administrator user will enter a date and/or an airline and expects to receive a list of flight numbers for that specific date and/or airline in return. Collects date and/or airline Creates query with date/or airline where conditions Retrieves information Outputs flight numbers Table 12 3 General Design Phase Summary Based on the elements described in this document, the general design phase of this project has been completed and the initial implementation phase can begin. Initial Implementation and Testing Phase During the Initial Implementation and Testing Phase, the functionality discussed in the General Design Phase will be implemented. Once this initial implementation has been complete, the initial testing for the application will begin. This process will be repeated as necessary. The results from this testing will be used for the next phase of the project. Page 8 of 17

9 4 Architecture Specification The architecture specification contains information about what the application will look like 4.1 Presentation Layer The presentation layer of the application is the actual client application Initial Default User Screen The first screen presented to the user is the initial screen. This screen contains a drop down with options to Find a Flight Number, Find Gate Information, and Find Baggage Belt Information. At the bottom of the screen, there is also a button to allow Administrators or Pilots to log in, in case they want to access Administrator or Pilot specific information. Figure 4 shows a screenshot of this screen. Figure Find Flight Number Screen When the Find Flight Number option is selected, the screen changes to display a text box to collect the date from the user and also a drop down to collect the airline from the user Page 9 of 17

10 Figure Find Gate Information Screen When the Find Gate Information option is selected, the screen changes to display a text field to collect the Flight Number and a text field to collect the Date. Page 10 of 17

11 Figure Find Baggage Belt Information When the Find Gate Information option is selected, the screen changes to display a text field to collect the Flight Number and a text field to collect the Date. Page 11 of 17

12 Figure Administrator/Pilot Button and Log In Screen When the Administrator/Pilot button is selected, the Administrator/Pilot Log In Screen is displayed. The user can then enter a username and a password. If the user s credentials are correct, they are then taken to the Administrator/Pilot Initial Screen. Page 12 of 17

13 Figure Administrator/Pilot Initial Screen The Administrator/Pilot Initial Screen contains a drop down with the same three options as the default user with the addition of the Find Aircraft Type Information and the Find Runway Information options. Page 13 of 17

14 Figure Find Aircraft Type Information When the Find Aircraft Type Information option is selected, a Flight Number text field and a Date text field are displayed to collect information from the user to display aircraft type information. Page 14 of 17

15 Figure Find Runway Information When the Find Runway Information option is selected, a Flight Number text field and a Date text field are displayed to collect information from the user to display runway information. Page 15 of 17

16 Figure Application Layer The application layer of the application is the application server used to perform all of the logic. Figure 12 shows the application layer. Page 16 of 17

17 Figure Database Layer The database layer of the application is the database that contains all of the information that needs to be stored for future reference. It is a repository of all of the data, but it can also contain views in case the retrieval of the data needs to be optimized for any reason. The role authorization for this application will be done in this layer. Each user is assigned a certain role and each role has information that is visible in that role. This ensures that a user cannot access unauthorized information. Initial Implementation and Testing Phase Summary Based on the elements described in this document, the initial implementation and testing phase of this project has been 90 percent completed and the final implementation phase can begin. Final Implementation and Completion Phase In the Final Implementation and Completion Phase, the results from the testing of the previous phase will be used to finalize the implementation. Once the implementation has been completed, the project has been completed and can be delivered to the end user. Page 17 of 17

Management System for Flight Information

Management System for Flight Information Management System for Flight Information COP 5611 Chantelle Erasmus Page 1 of 9 Project Phases Design Phase (100 percent complete)... 3 Initial Implementation and Testing Phase (0 percent complete)...

More information

Angel Flight Information Database System AFIDS

Angel Flight Information Database System AFIDS Pilot s Getting Started Guide Angel Flight Information Database System AFIDS Contents Login Instructions... 3 If you already have a username and password... 3 If you do not yet have a username and password...

More information

E: W: avinet.com.au. Air Maestro Training Guide Flight Records Module Page 1

E: W: avinet.com.au. Air Maestro Training Guide Flight Records Module Page 1 E: help@avinet.com.au W: avinet.com.au Air Maestro Training Guide Flight Records Module Page 1 Contents Assigning Access Levels... 3 Setting Up Flight Records... 4 Editing the Flight Records Setup... 10

More information

Bel-Track Manual V /06/2015

Bel-Track Manual V /06/2015 Bel-Track Manual V1.03 25/06/2015 Hello pilot and welcome to our Virtual Airliner. You are steps away from logging your first flight for Brussels Airlines VA. Here you will find some instructions to complete

More information

Federal GIS Conference February 10 11, 2014 Washington DC. ArcGIS for Aviation. David Wickliffe

Federal GIS Conference February 10 11, 2014 Washington DC. ArcGIS for Aviation. David Wickliffe Federal GIS Conference 2014 February 10 11, 2014 Washington DC ArcGIS for Aviation David Wickliffe What is ArcGIS for Aviation? Part of a complete system for managing data, products, workflows, and quality

More information

Operations Manual. FS Airlines Client User Guide Supplement A. Flight Operations Department

Operations Manual. FS Airlines Client User Guide Supplement A. Flight Operations Department Restricted Circulation Edition 1.0 For use by KORYO Air & KORYO Connect Pi Operations Manual FS Airlines Client User Guide Supplement 1. 1022 14A This manual has been approved by and issued on behalf of:

More information

ELOQUA INTEGRATION GUIDE

ELOQUA INTEGRATION GUIDE ELOQUA INTEGRATION GUIDE VERSION 2.2 APRIL 2016 DOCUMENT PURPOSE This purpose of this document is to guide clients through the process of integrating Eloqua and the WorkCast Platform and to explain the

More information

INTERNATIONAL CIVIL AVIATION ORGANIZATION AFI REGION AIM IMPLEMENTATION TASK FORCE. (Dakar, Senegal, 20 22nd July 2011)

INTERNATIONAL CIVIL AVIATION ORGANIZATION AFI REGION AIM IMPLEMENTATION TASK FORCE. (Dakar, Senegal, 20 22nd July 2011) IP-5 INTERNATIONAL CIVIL AVIATION ORGANIZATION AFI REGION AIM IMPLEMENTATION TASK FORCE (Dakar, Senegal, 20 22nd July 2011) Agenda item: Presented by: Implementation of a African Regional Centralised Aeronautical

More information

TIMS to PowerSchool Transportation Data Import

TIMS to PowerSchool Transportation Data Import TIMS to PowerSchool Transportation Data Import Extracting and Formatting TIMS Data Creating the TIMS Extract(s) for PowerSchool Extracting Student Transportation Data from TIMS Formatting TIMS Transportation

More information

PILOT PORTAL. User s Manual for registered users. of the COMSOFT Aeronautical Data Access System (CADAS) ARO Tallinn

PILOT PORTAL. User s Manual for registered users. of the COMSOFT Aeronautical Data Access System (CADAS) ARO Tallinn PILOT PORTAL of the COMSOFT Aeronautical Data Access System (CADAS) User s Manual for registered users For assistance contact: ARO Tallinn Phone: +372 6 258 282, +372 6258 293, +372 6 058 905 Fax: +372

More information

Using Mountain Air's Website

Using Mountain Air's Website Using Mountain Air's Website Version 1.1 January 3, 2013 2013 Mountain Air Virtual Airlines Help-Tip for learning the Website: While exploring Mountain Air's website, you will see your mouse arrow cursor

More information

MyFBO Help. Contents TRAINING ONLY

MyFBO Help. Contents TRAINING ONLY MyFBO Help Updated: July 25,2011 The online help menu works well to find most answers and explanations how to use the system. Simply click on the blue question mark symbol on the top right corner of MyFBO.com.

More information

Aircraft Communication and Reporting System (ACARS) User s manual

Aircraft Communication and Reporting System (ACARS) User s manual Aircraft Communication and Reporting System (ACARS) User s manual v1.1, applies to ACARS version 1.0.2.0 Table of Contents License... 3 System Requirements... 3 Installation... 4 Uninstallation... 4 General

More information

Airport Runway Location and Orientation. CEE 4674 Airport Planning and Design

Airport Runway Location and Orientation. CEE 4674 Airport Planning and Design Airport Runway Location and Orientation CEE 4674 Airport Planning and Design Dr. Antonio A. Trani Professor of Civil Engineering Virginia Tech Virginia Tech 1 of 24 Runway Location Considerations The following

More information

Wishlist Auto Registration Manual

Wishlist Auto Registration Manual Wishlist Auto Registration Manual Table of Contents Use the quick navigation links below to navigate through the manual: Introduction to Wishlist Auto Registration Complete Activation Process Summary in

More information

CruiseBuilder 2.0 Tutorial. How to Set Up CruiseBuilder 2.0 How to Use CruiseBuilder 2.0 Booking Engine

CruiseBuilder 2.0 Tutorial. How to Set Up CruiseBuilder 2.0 How to Use CruiseBuilder 2.0 Booking Engine CruiseBuilder 2.0 Tutorial How to Set Up CruiseBuilder 2.0 How to Use CruiseBuilder 2.0 Booking Engine Visit Our Main Site Go to: www.crystalcruises.com to find the Travel Agent Center link located at

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

How to login 1. Updating/viewing agent profile How to book 5. Key notes. 16

How to login 1. Updating/viewing agent profile How to book 5. Key notes. 16 How to login 1 Updating/viewing agent profile... 2 How to book 5 Key notes. 16 Visit login page Visit https://booking.tigerair.com.au/tigerairportal/agent/ 2. Login Enter agent username and agent password

More information

EMC Unisphere 360 for VMAX

EMC Unisphere 360 for VMAX EMC Unisphere 360 for VMAX Version 8.4.0 Online Help (PDF version) Copyright 2016-2017 EMC Corporation All rights reserved. Published May 2017 Dell believes the information in this publication is accurate

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

FSXmap.com. Interactive Airport and Runway map for Flight Simulator X

FSXmap.com. Interactive Airport and Runway map for Flight Simulator X FSXmap.com Interactive Airport and Runway map for Flight Simulator X Thank you for your interest in FSXmap.com! This is an interactive Airport and Runway map targeted for Microsoft Flight Simulator X (onwards

More information

Quick Reference Guide Version

Quick Reference Guide Version Quick Reference Guide Version 2013.1 400 Minuteman Road Andover, MA 01810 USA Tel 978.983.6300 Fax 978.983.6400 Edgbaston House (15 th Floor) 3 Duchess Place, Hagley Road Birmingham, B16 8HN United Kingdom

More information

USER GUIDE Cruises Section

USER GUIDE Cruises Section USER GUIDE Cruises Section CONTENTS 1. WELCOME.... CRUISE RESERVATION SYSTEM... 4.1 Quotes and availability searches... 4.1.1 Search Page... 5.1. Search Results Page and Cruise Selection... 6.1. Modifying

More information

InHotel. Installation Guide Release version 1.5.0

InHotel. Installation Guide Release version 1.5.0 InHotel Installation Guide Release version 1.5.0 Contents Contents... 2 Revision History... 4 Introduction... 5 Glossary of Terms... 6 Licensing... 7 Requirements... 8 Licensing the application... 8 60

More information

etrust SiteMinder Agent r5.5 for BEA WebLogic 9.0 etrust SiteMinder Agent for BEA WebLogic Guide

etrust SiteMinder Agent r5.5 for BEA WebLogic 9.0 etrust SiteMinder Agent for BEA WebLogic Guide etrust SiteMinder Agent r5.5 for BEA WebLogic 9.0 etrust SiteMinder Agent for BEA WebLogic Guide This documentation (the Documentation ) and related computer software program (the Software ) (hereinafter

More information

RAAS Fleet Status Reporting and Defect Management Overview. January 13, of 1

RAAS Fleet Status Reporting and Defect Management Overview. January 13, of 1 RAAS Fleet Status Reporting and Defect Management Overview January 13, 2017 1 of 1 RAAS Fleet Status Reporting and Defect Management Overview RAAS Fleet Status View (A larger standalone jpeg graphic accompanies

More information

The D-AIM Project and Trials. Roger Li, D-AIM Project Manager LFV AIXM/WXXM Conference Washington DC, May 13, 2009

The D-AIM Project and Trials. Roger Li, D-AIM Project Manager LFV AIXM/WXXM Conference Washington DC, May 13, 2009 The D-AIM Project and Trials Roger Li, D-AIM Project Manager LFV AIXM/WXXM Conference Washington DC, May 13, 2009 D-AIM Background Cooperation between LFV (Swedish Airports and Air Navigation Services)

More information

Flexible Pavement Design

Flexible Pavement Design Flexible Pavement Design FAARFIELD 1.3 Workshop Starting Screen No Job Files Created Click on New Job Presented to: VI ALACPA Airport Pavements Seminar & IV FAA Workshop By: David R. Brill, P.E., Ph.D.

More information

FOR SMALL AND MEDIUM SIZED AIRPORTS Velocity FIDS

FOR SMALL AND MEDIUM SIZED AIRPORTS Velocity FIDS is a FIDS solution for small and medium sized airports. It is available as an installed and as a cloud solution and it is multi airport solution. The package contains many use full features like a flight

More information

Regional Seminar/Workshop on CMA and SAST

Regional Seminar/Workshop on CMA and SAST International Civil Aviation Organization Regional Seminar/Workshop on CMA and SAST September 2011 ICAO Electronic Safety Tools Module 7 1 Contents 7.1 Introduction 7.2 ICAO online safety framework 7.3

More information

SPADE-2 - Supporting Platform for Airport Decision-making and Efficiency Analysis Phase 2

SPADE-2 - Supporting Platform for Airport Decision-making and Efficiency Analysis Phase 2 - Supporting Platform for Airport Decision-making and Efficiency Analysis Phase 2 2 nd User Group Meeting Overview of the Platform List of Use Cases UC1: Airport Capacity Management UC2: Match Capacity

More information

API Gateway Version September Authentication and Authorization Integration Guide

API Gateway Version September Authentication and Authorization Integration Guide API Gateway Version 7.5.2 15 September 2017 Authentication and Authorization Integration Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway

More information

How to Integrate CA SiteMinder with the Barracuda Web Application Firewall

How to Integrate CA SiteMinder with the Barracuda Web Application Firewall How to Integrate CA SiteMinder with the Barracuda Web Application Firewall Overview CA/Netegrity SiteMinder provides an infrastructure for centralized and secure policy management of websites. It uniquely

More information

HelpAndManual_unregistered_evaluation_copy AirLog Pilot Logbook V3

HelpAndManual_unregistered_evaluation_copy AirLog Pilot Logbook V3 HelpAndManual_unregistered_evaluation_copy AirLog Pilot Logbook V3 HelpAndManual_unregistered_evaluation_copy AirLog Pilot Logbook V3 Version 3 LLTSoftware.com AirLog pilot logbook for Windows provides

More information

Course Project. 1. Let staff make entries when a passenger makes reservations on a flight.

Course Project. 1. Let staff make entries when a passenger makes reservations on a flight. CMSC 461: Database Management Systems Due July 7, 2005 Course Project 1 Purpose To analyze the requirements, design, implement, document and test a database application to automate an airline database

More information

UVACARS User Guide Version 1.0

UVACARS User Guide Version 1.0 UVACARS User Guide Version 1.0 Effective 1 February 2015 Table of Contents List of Revisions... 3 Credits... 4 Introduction... 5 Installation... 6 Using UVACARS... 8 Getting Started... 8 Preparing UVACARS

More information

myidtravel Functional Description

myidtravel Functional Description myidtravel Functional Description Table of Contents 1 Login & Authentication... 3 2 Registration... 3 3 Reset/ Lost Password... 4 4 Privacy Statement... 4 5 Booking/Listing... 5 6 Traveler selection...

More information

Amtrak Enhancements Euronet Fall Release

Amtrak Enhancements Euronet Fall Release Amtrak Unstaffed Stations - New Ticketing Options: Sales from unstaffed stations previously were blocked in Euronet as travelers had no method for retrieving tickets. These locations will now be made available

More information

Product information & MORE. Product Solutions

Product information & MORE. Product Solutions Product information & MORE Product Solutions Amadeus India s Ticket Capping Solution For Airlines Document control Company Amadeus India Department Product Management Table of Contents 1. Introduction...4

More information

Supports full integration with Apollo, Galileo and Worldspan GDS.

Supports full integration with Apollo, Galileo and Worldspan GDS. FEATURES GENERAL Web-based Solution ALL TRAVELPORT GDS Supports full integration with Apollo, Galileo and Worldspan GDS. GRAPHICAL INTUITIVE WEB EXPERIENCE Intuitive web experience for both GDS expert

More information

4 REPORTS. The Reports Tab. Nav Log

4 REPORTS. The Reports Tab. Nav Log 4 REPORTS This chapter describes everything you need to know in order to use the Reports tab. It also details how to use the TripKit to print your flight plans and other FliteStar route data. The Reports

More information

Baggage Reconciliation System

Baggage Reconciliation System Product Description PD-TS-105 Issue 1.0 Date January 2015 The purpose of this product description is to enable the customer to satisfy himself as to whether or not the product or service would be suitable

More information

PA FBLA STATE LEADERSHIP CONFERENCE Step-by-Step Lodging Procedures

PA FBLA STATE LEADERSHIP CONFERENCE Step-by-Step Lodging Procedures PA FBLA STATE LEADERSHIP CONFERENCE Step-by-Step Lodging Procedures New This Year: PA FBLA will not search the attendee database to match students to complete rooms. If chapters wish to share, they must

More information

EXHIBITORS WITH BOOTH SPACE OVER 1501 SQ. FT.

EXHIBITORS WITH BOOTH SPACE OVER 1501 SQ. FT. AAOS 2019 Housing Rules and Regulations EXHIBITORS WITH BOOTH SPACE OVER 1501 SQ. FT. In an effort to ensure that sleeping rooms are properly allocated and available to both exhibitors and meeting attendees,

More information

InHotel. Installation Guide Release version 1.6.0

InHotel. Installation Guide Release version 1.6.0 InHotel Installation Guide Release version 1.6.0 Contents Contents... 2 Revision History... 5 Introduction... 6 Glossary of Terms... 7 Licensing... 8 Requirements... 9 Licensing the application... 9 60

More information

Flight Crew Operating Manual STANDARD OPERATING PROCEDURES

Flight Crew Operating Manual STANDARD OPERATING PROCEDURES CONTENTS 9.00.01 P 2 9.00.01 CONTENTS... 2 9.01.01 CONFIGURE... 3 9.01.02 CONFIGURE... 4 9.02.01 START... 5 9.02.02 START... 6 9.03.01 REFUEL... 7 9.03.02 REFUEL... 8 9.04.01 STATUS... 9 9.05.01 FDR...

More information

KB 2449 CA Wily APM security example: CA SiteMinder for authentication with CA EEM for authorization

KB 2449 CA Wily APM security example: CA SiteMinder for authentication with CA EEM for authorization This article describes how you can perform a CA SiteMinder basic set up and configuration to provide CA Wily APM authentication before deploying CA EEM for. This example describes these tasks: Configure

More information

Frequently asked questions (FAQ)

Frequently asked questions (FAQ) Frequently asked questions (FAQ) Content 1. Subscription 2. Connectivity 3. Data (General) 4. Air carrier traffic 5. Traffic by Flight Stage (TFS) 6. Air carrier finances 7. Airport traffic 8. On-Flight

More information

Paperless Aircraft Operations - IATA s Vision and Actions - Chris MARKOU IATA Operational Costs Management

Paperless Aircraft Operations - IATA s Vision and Actions - Chris MARKOU IATA Operational Costs Management Paperless Aircraft Operations - IATA s Vision and Actions - Chris MARKOU IATA Operational Costs Management IATA s Paperless Initiatives Passenger Reservations, Ticketing and Airport Processes e-ticketing

More information

A Multi-Agent Microsimulation Model of Toronto Pearson International Airport

A Multi-Agent Microsimulation Model of Toronto Pearson International Airport A Multi-Agent Microsimulation Model of Toronto Pearson International Airport Gregory Hoy 1 1 MASc Student, Department of Civil Engineering, University of Toronto 35 St. George Street, Toronto, Ontario

More information

SmartStarter. 1. Intro

SmartStarter. 1. Intro SmartStarter 1. Intro Before loading a PMDG airplane flight in Prepar3D you normally start Prepar3D so it loads the Scenario Startup screen with a default Prepar3D airplane. You then select an airplane

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

Internet Check-in. Entering last name combined with confirmed booking reference or electronic ticket number then click Continue.

Internet Check-in. Entering last name combined with confirmed booking reference or electronic ticket number then click Continue. Internet Check-in 1. Access to www.thaiairways.com then click icheck-in. 2. Passenger Identification Entering last name combined with confirmed booking reference or electronic ticket number then click

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

STAIRWAY IDS ATC SIMULATION ENVIRONMENT - SWIM COMPATIBLE SYSTEM

STAIRWAY IDS ATC SIMULATION ENVIRONMENT - SWIM COMPATIBLE SYSTEM STAIRWAY IDS ATC SIMULATION ENVIRONMENT - SWIM COMPATIBLE SYSTEM Content The problem Simulation Platform Problem Statements The solution Use Case Application Description The benefits and next steps 2 IDS

More information

Monitoring & Control Tim Stevenson Yogesh Wadadekar

Monitoring & Control Tim Stevenson Yogesh Wadadekar Monitoring & Control Tim Stevenson Yogesh Wadadekar Monitoring & Control M&C is not recognised as an SPDO Domain However the volume of work carried out in 2011 justifies a Concept Design Review M&C is

More information

Virgin Australia s Corporate Booking Portal User Guide

Virgin Australia s Corporate Booking Portal User Guide Virgin Australia s Corporate Booking Portal User Guide Status: Review Version: 2.1 (accelerate) Date 07/06/2013 Table of Contents 1. Introduction... 4 2. Getting Started... 4 3. User Profiles... 4 User

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

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

THE NEW Agency Sales July 2016

THE NEW  Agency Sales July 2016 THE NEW WWW.AIRCANADA.COM/AGENTS Agency Sales July 2016 WELCOME! SEE WHAT S NEW We are pleased to introduce a newly redesigned www.aircanada.com/agents that is more engaging and designed with your needs

More information

e-airportslots Tutorial

e-airportslots Tutorial e-airportslots Tutorial 2017 by IACS (International Airport Coordination Support) page 1 Table of contents 1 Browser compatibility... 4 2 Welcome Screen... 4 3 Show Flights:... 4 4 Coordination... 7 4.1

More information

Financial Symposium September 2018 Madrid Marriott Auditorium Hotel & Conference Center

Financial Symposium September 2018 Madrid Marriott Auditorium Hotel & Conference Center 5 World th Financial Symposium 17 20 September 2018 Madrid Marriott Auditorium Hotel & Conference Center 7 th SIS General Meeting 18 th September 2018 Madrid Marriott Auditorium Hotel & Conference Center

More information

Booking Airfare for Another Employee

Booking Airfare for Another Employee Travel Office: Concur Resource Guides Booking Airfare for Another Employee Process Flow (Best Practice): How To Book Airfare using Concur: 1. Navigate to the Concur tool via the busfin.osu.edu/buy-schedule-travel/travel.

More information

Preparing for International Travel

Preparing for International Travel Preparing for International Travel 1) http://www.utexas.edu/international/travel_restrictions/ Please visit the above website. It has a lot of information on it, but you will need to check if the country

More information

In-Service Data Program Helps Boeing Design, Build, and Support Airplanes

In-Service Data Program Helps Boeing Design, Build, and Support Airplanes In-Service Data Program Helps Boeing Design, Build, and Support Airplanes By John Kneuer Team Leader, In-Service Data Program The Boeing In-Service Data Program (ISDP) allows airlines and suppliers to

More information

PASSUR Aerospace. Departure Metering Program at Toronto Pearson International Airport. Training Manual

PASSUR Aerospace. Departure Metering Program at Toronto Pearson International Airport. Training Manual PASSUR Aerospace Toronto Pearson International Airport Departure Metering Program at Toronto Pearson International Airport Training Manual Name: Today s Date: Toronto Pearson Deicing Sequencing Training

More information

AIRPORT MANAGEMENT AND DEVELOPMENT SYSTEM

AIRPORT MANAGEMENT AND DEVELOPMENT SYSTEM Paper No. 2259 AIRPORT MANAGEMENT AND DEVELOPMENT SYSTEM Mohamed R. Arafa, Ahmed A. Zanaty, Laila M. Hasan Presented at The 25 th ESRI User Conference July 25-29, 2005 San Diego, California ABSTRACT Part

More information

The Skyward Platform Helps You Manage UAV Operations

The Skyward Platform Helps You Manage UAV Operations The Skyward Platform Helps You Manage UAV Operations About Skyward Skyward s cloud-based UAV management platform powers scalable, efficient, safe, and insurable UAV operations for small businesses and

More information

Aviation Software. DFT Database API. Prepared by: Toby Wicks, Software Engineer Version 1.1

Aviation Software. DFT Database API. Prepared by: Toby Wicks, Software Engineer Version 1.1 DFT Database API Prepared by: Toby Wicks, Software Engineer Version 1.1 19 November 2010 Table of Contents Overview 3 Document Overview 3 Contact Details 3 Database Overview 4 DFT Packages 4 File Structures

More information

USER GUIDE DOCUMENT VIETJET AIR FLIGHTVIEW

USER GUIDE DOCUMENT VIETJET AIR FLIGHTVIEW USER GUIDE DOCUMENT VIETJET AIR FLIGHTVIEW VERSION CHANGE LOG Version Description of Change Author Date 0.1 Beginning of the Document Thanh Hien December 2018 1 TABLE OF CONTENTS USER GUIDE DOCUMENT VIETJET

More information

SWEN502 Foundations of Databases Session 2. Victoria University of Wellington, 2017, Term 2 Markus Luczak-Roesch

SWEN502 Foundations of Databases Session 2. Victoria University of Wellington, 2017, Term 2 Markus Luczak-Roesch SWEN502 Foundations of Databases Session 2 Victoria University of Wellington, 2017, Term 2 Markus Luczak-Roesch (@mluczak) Contact Markus Luczak-Roesch markus.luczak-roesch@vuw.ac.nz @mluczak 04 463 5878

More information

Online flight bookings

Online flight bookings Travel and Events Online flight bookings A quick guide to booking flights online Welcome The flight tool is the online booking tool containing everything you need to book a flight, simply and quickly.

More information

EMC Unisphere 360 for VMAX

EMC Unisphere 360 for VMAX EMC Unisphere 360 for VMAX Version 8.3.0 Installation Guide REV 01 Copyright 2014-2016 EMC Corporation. All rights reserved. Published in the USA. Published September 2016 EMC believes the information

More information

ultimate traffic Live User Guide

ultimate traffic Live User Guide ultimate traffic Live User Guide Welcome to ultimate traffic Live This manual has been prepared to aid you in learning about utlive. ultimate traffic Live is an AI traffic generation and management program

More information

US ACARS Pilot Guide

US ACARS Pilot Guide US ACARS Pilot Guide For US ACARS version 2.2 18 December, 2009 Original Author: Tyler Hoppe, Phoenix Personnel Edited and Released By: Marcus Smallegan, Vice President of Public Relations US Airways Virtual

More information

ARIS/SL schedule loader

ARIS/SL schedule loader ARIS/SL schedule loader Ascent Technology, Inc. 695 Atlantic Avenue, 9th Floor Boston, MA 02111-2758 USA Telephone: +1.617.395.4800 email: sales@ascent.com www.ascent.com Load and store SSIM flight-schedule

More information

Price-Setting Auctions for Airport Slot Allocation: a Multi-Airport Case Study

Price-Setting Auctions for Airport Slot Allocation: a Multi-Airport Case Study Price-Setting Auctions for Airport Slot Allocation: a Multi-Airport Case Study An Agent-Based Computational Economics Approach to Strategic Slot Allocation SESAR Innovation Days Bologna, 2 nd December

More information

How to Jump Blue (Non MyIDTravel Employing Carriers)

How to Jump Blue (Non MyIDTravel Employing Carriers) How to Jump Blue (Non MyIDTravel Employing Carriers) Welcome aboard! The following information will make your reciprocal cabin seat agreement experience the easiest for both you and our Crewmembers. If

More information

CruisePay Enhancements for 2005 Training Guide Version 1.0

CruisePay Enhancements for 2005 Training Guide Version 1.0 CruisePay Enhancements for 2005 Training Guide Version 1.0 Royal Caribbean Cruises Ltd. 2004 i 9/8/2005 Table of Content: 1 Overview 1 1.1 Purpose: 2 1.2 Assumptions: 2 1.3 Definitions: 2 2 Web Application

More information

Phytclean Guide: How to apply for phytosanitary (special) markets

Phytclean Guide: How to apply for phytosanitary (special) markets Wednesday, 27 June 2018 Phytclean Guide: How to apply for phytosanitary (special) markets Preamble This help file is designed for pome fruit producers registering for special markets. Please use this guide

More information

TECHNOLOGICAL SOLUTIONS FOR BAGGAGE HANDLING ON TIME PERFORMANCE. Copyright 2017 Project Business Digital Airport. All Rights Reserved.

TECHNOLOGICAL SOLUTIONS FOR BAGGAGE HANDLING ON TIME PERFORMANCE. Copyright 2017 Project Business Digital Airport. All Rights Reserved. TECHNOLOGICAL SOLUTIONS FOR BAGGAGE HANDLING ON TIME PERFORMANCE Baggage Handling On Time Performance Management, Is a system to monitor passenger s baggage from the aircraft through Baggage Claim area.

More information

Currently used for: Reservation Calendars

Currently used for: Reservation Calendars Currently used for: Reservation Calendars Internet Explorer (IE) Web Browser https://sharepoint.renvillecountymn.com 2/7/17 QUICK GUIDE Use I.E. (Internet Explorer) CONFERENCE ROOMS Title: Type in the

More information

Performance Planning in FOREFLIGHT MOBILE

Performance Planning in FOREFLIGHT MOBILE Performance Planning in FOREFLIGHT MOBILE 4th Edition Covers ForeFlight Mobile v9.4 on ipad Introduction... 4 About Performance Planning... 4 Aircraft Performance Profiles... 6 Updating Existing Aircraft

More information

Medical Royal Colleges. Revalidation Portfolio User Guide

Medical Royal Colleges. Revalidation Portfolio User Guide Medical Royal Colleges Revalidation Portfolio User Guide Contents INTRODUCTION... 3 STARTING TO USE THE REVALIDATION PORTFOLIO... 4 HOME PAGE... 5 MANAGING YOUR PROFILE... 6 Changing designated body or

More information

GDC Services Access via PDA. User Guide

GDC Services Access via PDA. User Guide GDC Services Access via PDA User Guide Usage Instructions Once the application is open on your PDA and you are connected to the Internet (either a wireless connection or linked to a computer via ActiveSync),

More information

Passengers with Reduced Mobility Policy.

Passengers with Reduced Mobility Policy. Passengers with Reduced Mobility Policy. CONTENTS Passengers with reduced mobility (PRM) policy Page 1 Passenger Notification Process how to book assistance Page 2 Statutory EU Service Level Agreements

More information

1. Pilot Information

1. Pilot Information Double click on the VAFS5 icon after you have downloaded and installed same. Enter your user name (the one you specified when you signed up) and the associated password. Tick the Remember me box so it

More information

Module Objectives. Creating a Manual Fare Build

Module Objectives. Creating a Manual Fare Build The Galileo system is capable of quoting most fares automatically. However, there are occasions when this is not possible or when you may elect to use a non-system fare. In these situations, it is possible

More information

COP 4540 Database Management

COP 4540 Database Management COP 4540 Database Management MICROSOFT ACCESS TUTORIAL Hsin-Yu Ha Create Database Create Table Set up attribute type, primary key, foreign key Query SQL Language SQL Template Tables Example: Library Database

More information

OTP SERVER NETEGRITY SITEMINDER 6. Rev 1.0 INTEGRATION MODULE. Copyright, NordicEdge, 2005 O T P S E R V E R I N T E G R A T I O N M O D U L E

OTP SERVER NETEGRITY SITEMINDER 6. Rev 1.0 INTEGRATION MODULE. Copyright, NordicEdge, 2005 O T P S E R V E R I N T E G R A T I O N M O D U L E OTP SERVER INTEGRATION MODULE NETEGRITY SITEMINDER 6 Copyright, NordicEdge, 2005 www.nordicedge.se Copyright, 2005, NordicEdge AB Page 1 of 11 1 Introduction 1.1 OTP Server Overview Nordic Edge OTP Server

More information

The Official s Guide to Athletix

The Official s Guide to Athletix The Official s Guide to Athletix Introduction This tutorial is designed to help Officials learn more about how to use the site and how it can help manage officiating information. Table of Contents Introduction

More information

The System User Manual

The System User Manual The System User Manual The URL is: http://131.193.40.52/diseasemap.html The user interface facilitates mapping of four major types of entities: disease outbreaks, ports, ships, and aggregate ship traffic.

More information

PetExec Boarding Add-Ons

PetExec Boarding Add-Ons PetExec 3.1 - Boarding Add-Ons Table of contents Overview of Boarding Add-Ons Using Boarding Add-Ons Boarding Add-On Report Version 1.1 10/13/16 Page 1 of 9 Overview of Boarding Add-Ons: Boarding Add-Ons

More information

my.scouting Tools Version 1 Overview Log In and Access Camping Manager

my.scouting Tools Version 1 Overview Log In and Access Camping Manager my.scouting Tools my.scouting Tools is best experienced using the latest version of Google Chrome or Mozilla Firefox. Also works with the latest version of Safari, and Internet Explorer (v11). Version

More information

ACI WORLD AIRPORT IT STANDING COMMITTEE

ACI WORLD AIRPORT IT STANDING COMMITTEE ACI WORLD AIRPORT IT STANDING COMMITTEE ACI - AIRPORT COMMUNITY RECOMMENDED INFORMATION SERVICES WG SEAMLESS TRAVEL- BUSINESS REQUIREMENT DOCUMENT Document Status: Draft Version: v0.99 1 Revision History

More information

User Forum AIM/EAD Evolutions. Thanos PAPAVRAMIDIS, Head of Airspace and AIS Data Management EUROCONTROL Network Management

User Forum AIM/EAD Evolutions. Thanos PAPAVRAMIDIS, Head of Airspace and AIS Data Management EUROCONTROL Network Management User Forum 2011 AIM/EAD Evolutions Thanos PAPAVRAMIDIS, Head of Airspace and AIS Data Management EUROCONTROL Network Management The European Organisation for the Safety of Air Navigation EAD General Concept

More information

SENIOR CERTIFICATE EXAMINATIONS

SENIOR CERTIFICATE EXAMINATIONS SENIOR CERTIFICATE EXAMINATIONS INFORMATION TECHNOLOGY P1 2017 MARKS: 150 TIME: 3 hours This question paper consists of 21 pages. Information Technology/P1 2 DBE/2017 INSTRUCTIONS AND INFORMATION 1. This

More information

PRAJWAL KHADGI Department of Industrial and Systems Engineering Northern Illinois University DeKalb, Illinois, USA

PRAJWAL KHADGI Department of Industrial and Systems Engineering Northern Illinois University DeKalb, Illinois, USA SIMULATION ANALYSIS OF PASSENGER CHECK IN AND BAGGAGE SCREENING AREA AT CHICAGO-ROCKFORD INTERNATIONAL AIRPORT PRAJWAL KHADGI Department of Industrial and Systems Engineering Northern Illinois University

More information

MAKING ONLINE RESERVATIONS ETEX GROUP TRAVEL ARRANGERS

MAKING ONLINE RESERVATIONS ETEX GROUP TRAVEL ARRANGERS MAKING ONLINE RESERVATIONS ETEX GROUP TRAVEL ARRANGERS For online booking support: - Uniglobe Axon Travel support@uniglobeaxontravel.be or +32 16 23 11 44 (Sam Pannemans) - Uniglobe Robins Travel erik@robinstravel.be

More information

PublicVue TM Flight Tracking System. Quick-Start Guide

PublicVue TM Flight Tracking System. Quick-Start Guide PublicVue TM Flight Tracking System Quick-Start Guide DISCLAIMER Data from the PublicVue TM Flight Tracking System (FTS) is being provided to the community as an informational tool, designed to increase

More information