Global formulas. Page1. Video filmed with GeneXus X Evolution 2

Size: px
Start display at page:

Download "Global formulas. Page1. Video filmed with GeneXus X Evolution 2"

Transcription

1 Global formulas We often need for our application to make calculations that involve the values of certain attributes, constants and/or functions. For such cases, GeneXus provides us with its Formulas Page1

2 We have 2 possible ways to define formulas: Global formulas known in the whole Knowledge Base, And Local formulas, known only in the object in which they were defined. Let s start by learning what a Global formula is and how to define it. Page2

3 A global formula is a calculation we define in association with an attribute. We can see that the structures of transactions include a column under the title Formula. When we define a calculation for an attribute in this column, Page3

4 we are telling GeneXus that the attribute is virtual, meaning that it must not be created physically as a field in the associated table because the value of the attribute will be obtained by doing the calculation we indicate. Let s exemplify this: We will define a new attribute in the Flight transaction, to store the current discount applicable to each flight. We enter the attribute called FlightDiscountPercentage where its data type will be of a Percentage domain we define now, as a numeric with length 3. And we define another attribute, called FlightFinalPrice, which we will define as a formula to automatically calculate the current flight price in this attribute. Page4

5 In the formula column, we define the calculation: FlightPrice * (1 FlightDiscountPercentage/100) And press F5 to see what happens. We can see that only one field is created in the Flight physical table, even when we defined 2 new attributes in the structure of the Flight transaction. Page5

6 Because it has a definition in the formula column, this attribute is not added to the physical table. Because the attribute is defined in the Knowledge Base with an associated formula, GeneXus will know how to calculate its value, and the calculation will take place in all objects in which the attribute is present, with the result shown. We no reorganize Page6

7 The programs have been generated and here we see the application in runtime We execute the Flight transaction, and query Flight #1 where on the transaction form we can see the 2 new attributes we defined: Page7

8 the discount percentage, enabled for us to enter it, and the final price, disabled because it is the attribute we defined as formula, and its value is not entered but rather calculated and then displayed. Every attribute defined as Global formula will be reading data and we will not be able to type in any value for it. This is because the attribute gets its value from the associated calculation, which takes place every time that the attribute is used. Also, there is no field in the physical table to store the value of this attribute, so making it editable would make no sense. So we enter a 10 % discount for this flight. Page8

9 When we exit the field we can see that the formula is immediately executed Showing the flight s final price with the discount applied. Now let s get back to GeneXus. So far we have defined a Global formula attribute. Page9

10 Only attributes may be defined as Global formulas in the way we just described and using the formula column in the transaction. Something important to bear in mind is that even when in the example calculation we included only attributes of the transaction itself, it is possible to also include attributes of the extended table. Let s see that We create a transaction called Airline to record the airlines. We define 3 attributes for it: AirlineId, AirlineName, and AirlineDiscountPercentage, from the Percentage domain, to record the discount made by the airline for all its flights. We save, and now go to the Flight transaction, to assign to each flight the airline that operates it. Page10

11 We add the attribute AirlineId, which here will play the role of foreign key and change the value of its Nullable property to Yes. This allows us to not specify, in this first stage, the flight s airline, because we still don t have any airlines recorded. Further ahead we will come back to change the value of the Nullable property to No, to make specification of the airline mandatory when entering or modifying a flight. We add the attributes AirlineName and AirlineDiscountPercentage to view this data on the form: Page11

12 We now modify the definition of our formula, so that it calculates the flight s final price, applying to it the airline s generic discount instead of applying the flight s own discount. Then we press F5 Page12

13 We now see the proposal for creation of the Airline physical table, with the 3 attributes we defined, and for the foreign key AirlineId to be added to the Flight table. Let s now reorganize and execute Page13

14 We open the Airline transaction and add an airline called TAM, with a 30% discount: Now to this airline we will assign a flight. To flight N 1 we assign airline 1 Page14

15 and we will see that the flight s new final price has been calculated, as a Global formula attribute Page15

16 that includes the airline s discount percentage, which is an attribute of the extended table of the Flight base table. Something we haven t said yet is that formulas can assess conditions and the result may be calculated in different ways depending on whether such conditions are true or false. Let s see that: Page16

17 We click on this button with 3 dots to edit the formula more easily. We will define that the highest discount percentage be considered to calculate the flight s final price, so we get the best possible discount. Page17

18 With this definition, if the airline has a higher discount for all its flights than the flight s own discount percentage, for the calculation we will consider the airline discount. Otherwise, we use the flight s own discount percentage for the calculation. We then press F5. We execute the Flight transaction and to the first flight we will assign that its own discount percentage be greater than the airline s overall discount percentage, for example: 50%. Page18

19 We will see that the flight s final price was calculated upon considering the greater discount. Now let s get back to GeneXus. Page19

20 Formulas may contain several lines followed by IF and they might or might not contain a last line with the OTHERWISE Page20

21 for the case where none of the previous conditions apply. Also, even when in this example the way to obtain each result was through a calculation, we could also resort to functions applied to attributes or calculations such as Round to obtain a rounded result, or Month to get the month from a date, Page21

22 among other options... and we can also call a procedure we have defined, to return a value. We will now see another type of formulas which we will define also as global. We will create a second level in the Flight transaction and call it Seat. As the level s name indicates, we will use it to record the seats available on the flight and we will record, for each seat, whether it is window, aisle or middle. Then we will want to know, in all cases, the number of seats available on the flight. We type a period and fill in the attribute name: FlightSeatId Page22

23 We create another attribute called FlightSeat Location, and assign to it a Location domain of the character(1) type. We now go to the Domains node to modify a property in the domain we have just created. We find the Enum Values property Page23

24 and define the 3 values that the domain may have: Page24

25 Window and the value that will be stored when Window is selected will be the character W Middle where the value stored will be an M and Aisle where the value stored will be an A we then press OK, and save the definitions we made in the Flight transaction. Let s take a look at the form in this transaction: Page25

26 We can see that a grid was added to enter the flight seats, and for each seat, an indication can be made of its location through a combo control that provides the window middle or aisle values, which are possible values we defined for the domain of the FlightSeatLocation attribute. Prior to pressing F5, let s see something in the definition of the second level: Page26

27 If the key consists of FlightId plus FlightSeatId, for each flight we will not be able to repeat seat numbers. But we need the possibility of repeated numbers, plus a variable letter, since, in general seats are identified as 1A, 1B, etc. So we add a FlightSeatChar attribute, whose type we define as a SeatChar domain, character(1) and make the attribute part of the key Page27

28 to enable the record of equal seat numbers, with a different letter. We will restrict the possible letters from A to F, and for that we edit the domain. We find its Enum Values property and define the possible values: Page28

29 In this case, the values of descriptions match the values stored. Now, in order to know the number of passengers allowed on the flight, we will define a new attribute in the first level, as a formula, which will have the number of seats provided by the flight. We create the FlightCapacity, attribute, as numeric, 4: And in the column formula we write: Count, and make a reference, between parentheses, to an attribute in the second level, such as FlightSeatLocation: Page29

30 13.03 The attribute FlightCapacity will not be physically created in the FLIGHT table because its global formula, and it will always count the number of seats on the flight. We then press F5. And we will see that the Flight physical table SEAT is created, Page30

31 associated with the second level of the Flight transaction, with the attributes and key we have defined and the structure of the FLIGHT table will not be modified because the attribute FlightCapacity will not be physically created as expected. We agree, so we proceed. We execute the Flight transaction... query flight #1 and record some seats in it: 1A - window 1B middle 1C aisle 1D window 1E middle 1F aisle Page31

32 2A window and we leave it here.. We should note that the seat count is updated everytime that we add a seat to the flight Page32

33 Let s go back to GeneXus. We also have other formulas of the Count style that do operations with several records, such as Sum Page33

34 Page34

35 Average and others. The attribute referenced between parentheses in the formula provides GeneXus with information on the table to be navigated for doing the calculation. If GeneXus detects a relation between the navigated table and the location where the formula attribute is defined, it will only take into account the related records for the calculation In this example, where FlightId is present both where the formula is defined, and where the navigation takes place, so only the seats of the flight we are in are counted and not all the seats recorded on the table. Page35

36 If the relation is not found, then GeneXus will do the operation considering all the records in the navigated table. Also, we can count or add or average certain records that fulfill an explicit condition we have indicated. By way of example, if we want to count the number of window seats on the flight, to the formula we add, inside the parentheses, a comma and the corresponding condition Because the FlightSeatLocation attribute is from the Location domain and it has these 3 enumerated values defined the syntax to require the value that the attribute has taken is: domain name, dot, and name associated with the value we want to filter Page36

37 Press F5, w ego to Flight transaction, query flight #1 and we see that the formula attribute was counted and now shows: 3, which corresponds to the number of window seats, which matches the entries we made on the seat grid. Page37

38 Lastly, we must keep in mind that, just like all Global formulas, these could also have a triggering condition. That means that we can add an if at the end of the definition, with a specific assessment, for the formula to be triggered only if that condition is true. Page38

Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure)

Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure) Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure) Within the Secure Access device, a SiteMinder instance is a set of configuration settings that defines how the Secure Access

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

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

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

Stair Designer USER S GUIDE

Stair Designer USER S GUIDE Stair Designer USER S GUIDE Stair Designer-1 Stair Designer-2 Stair Designer The Stair Designer makes it easy to define and place custom stairs in your project. You can start the Stair Designer independently,

More information

Concur Travel User Guide

Concur Travel User Guide Concur Travel User Guide Table of Contents Updating Your Travel Profile... 3 Travel Arranger... 3 Access... 3 Book a Flight... 5 Step 1: Start the Search... 5 Step 2: Select a flight... 7 Step 3: Select

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

Concur Travel: View More Air Fares

Concur Travel: View More Air Fares Concur Travel: View More Air Fares Travel Service Guide Applies to Concur Travel: Professional/Premium edition TMC Partners Direct Customers Standard edition TMC Partners Direct Customers Contents View

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

2017 PROCEDURES HAVE CHANGED READ CAREFULLY

2017 PROCEDURES HAVE CHANGED READ CAREFULLY 2017 PROCEDURES HAVE CHANGED READ CAREFULLY Key Terms Crew Roster : Every crew hiking in the Philmont backcountry must submit important participant information online prior to arriving at the Ranch. Philmont

More information

Chapter 1. Draw Standard Departure Procedure

Chapter 1. Draw Standard Departure Procedure Chapter 1. Draw Standard Departure Procedure 1. Prior to drawing departure area consult the US Terminal Procedures book to determine if there are published take off special Take Off Minimums and (Obstacle)

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

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

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

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

Daily Estimation of Passenger Flow in Large and Complicated Urban Railway Network. Shuichi Myojo. Railway Technical Research Institute, Tokyo, Japan

Daily Estimation of Passenger Flow in Large and Complicated Urban Railway Network. Shuichi Myojo. Railway Technical Research Institute, Tokyo, Japan Daily Estimation of Passenger Flow in Large and Complicated Urban Railway Network Shuichi Myojo Abstract Railway Technical Research Institute, Tokyo, Japan Railway passenger flow data including the on-board

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

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

Lesson: Total Time: Content: Question/answer:

Lesson: Total Time: Content: Question/answer: Go! Lesson: Total Time: Content: Question/answer: Worldspan 60 minutes 45 minutes 15 minutes Lesson Description: This lesson is designed to review the booking using cruise options, search, fare codes and

More information

ECLIPSE USER MANUAL AMXMAN REV 2. AUTOMETRIX, INC. PH: FX:

ECLIPSE USER MANUAL AMXMAN REV 2. AUTOMETRIX, INC.  PH: FX: ECLIPSE USER MANUAL AMXMAN-12-02 REV 2 AUTOMETRIX, INC. www.autometrix.com service@autometrix.com PH: 530-477-5065 FX: 530-477-5067 1: Concepts Awning Terminology All awnings have essential framing members:

More information

GUEST TRAVELER INVITATION PROCESS GUIDE. Follow these steps to invite a guest traveler to book in Orbitz for Business (OFB):

GUEST TRAVELER INVITATION PROCESS GUIDE. Follow these steps to invite a guest traveler to book in Orbitz for Business (OFB): Follow these steps to invite a guest traveler to book in Orbitz for Business (OFB): 1. Request authorization to invite guest travelers to book in Orbitz for Business. Make your request by emailing stanfordtravel@stanford.edu,

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

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

Tool: Overbooking Ratio Step by Step

Tool: Overbooking Ratio Step by Step Tool: Overbooking Ratio Step by Step Use this guide to find the overbooking ratio for your hotel and to create an overbooking policy. 1. Calculate the overbooking ratio Collect the following data: ADR

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

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

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

Step-by-Step Guide: Itineraries and Per Diem

Step-by-Step Guide: Itineraries and Per Diem Expense Type An Itinerary is a listing of from/to locations, dates and times that outline a travel objective and serve as the basis for Per Diem reimbursement amounts. Per Diem is classified as the reimbursement

More information

Model Solutions. ENGR 110: Test 2. 2 Oct, 2014

Model Solutions. ENGR 110: Test 2. 2 Oct, 2014 Family Name:.............................. Other Names:............................. ID Number:............................... Signature.................................. Model Solutions ENGR 110: Test

More information

AirFrance KLM - FlightPrice

AirFrance KLM - FlightPrice AirFrance KLM - FlightPrice This document describes the AirFrance KLM FlightPrice Service Document Version: 1.0 Document Status: Approved Date of last Update: 10/30/2017 Document Location: https://developer.airfranceklm.com/

More information

GetThere User Training

GetThere User Training GetThere User Training STUDENT GUIDE Table of Contents Table of Contents... 2 Revision History... 3 Objectives... 4 Overview... 4 Getting Started... 5 Home Page... 6 Search... 7 Uncertain City... 8 Flight

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

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

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

Version 8.5 PENTAGON 2000 SOFTWARE. Flight Operations Module

Version 8.5 PENTAGON 2000 SOFTWARE. Flight Operations Module Version 8.5 PENTAGON 2000 SOFTWARE Pentagon 2000 Software 15 West 34 th Street 5 th Floor New York, NY 10001 Phone 212.629.7521 Fax 212.629.7513 TITLE: PART: Quality MODULE: BUILD 8.5.54.113.18 RESPONSIBILITY:

More information

To view a video tutorial, click here:

To view a video tutorial, click here: Booking a Flight To view a video tutorial, click here: http://assets.concur.com/concurtraining/cte/en-us/cte_en-us_trv_booking-flight.mp4 From the SAP Concur home page, use the Flight tab to book a flight

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

AirFrance KLM - AirShopping

AirFrance KLM - AirShopping AirFrance KL - AirShopping This document describes the AirFrance KL AirShopping Service Document Version: 1.0 Document Status: approved Date of last Update: 26/10/2017 Document Location: https://developer.airfranceklm.com/

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

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

Official Record Series 5

Official Record Series 5 Official Record Series 5 United Kingdom Civil Aviation Authority CAA Scheme of Charges (Aviation Security) No: 344 Publication date: 16 March 2018 Commencement date: 01 April 2018 The Civil Aviation Authority,

More information

Aircraft Noise. Why Aircraft Noise Calculations? Aircraft Noise. SoundPLAN s Aircraft Noise Module

Aircraft Noise. Why Aircraft Noise Calculations? Aircraft Noise. SoundPLAN s Aircraft Noise Module Aircraft Noise Why Aircraft Noise Calculations? Aircraft Noise Aircraft noise can be measured and simulated with specialized software like SoundPLAN. Noise monitoring and measurement can only measure the

More information

User Guide for E-Rez

User Guide for E-Rez User Guide for E-Rez Table of Contents Section 1 Using E-Rez... 3 Security & Technical Requirements... 3 Logging on to E-Rez... 4 Verify Your Profile... 4 Section 2 Travel Center... 5 Familiarize yourself

More information

Calculating Hose/Gun Capacity

Calculating Hose/Gun Capacity Part F, Section 2 This section covers the following unit configurations. Model All Voltage All Pump All Manifold All Control All 1 Nordson Corporation 1-3000V Issued 3/ FEN 05 [3V PWR] 1 F 2-0 FEN 05 [3V

More information

1.- Introduction Pages Description 21.- Tutorial 22.- Technical support

1.- Introduction Pages Description 21.- Tutorial 22.- Technical support FriendlyPanels Software WARNING This operating manual has been written to be used only with Microsoft Simulator. Flight FriendlyPanels www.friendlypanels.net fpanels@friendlypanels.net Table of Contents

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

FlightMaps Online Help Guide FAQ V1.2

FlightMaps Online Help Guide FAQ V1.2 FlightMaps Online Help Guide FAQ V1.2 Q: How can I find flights using the map? Click on a dot on the map to start a search. Then choose your preferred option from the menu on screen to view the flight

More information

Specialty Cruises. A. 100% Tally and Strip Cruises

Specialty Cruises. A. 100% Tally and Strip Cruises Specialty Cruises Page A. 100% Tally and Strip and Cumulative Tally Cruises 10-1 B. Tree Category Cruises 10-3 C. Stratified Cruises 10-4 D. Tree or Log Average Cruises 10-9 E. Multiple Cruisers on the

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

PHY 133 Lab 6 - Conservation of Momentum

PHY 133 Lab 6 - Conservation of Momentum Stony Brook Physics Laboratory Manuals PHY 133 Lab 6 - Conservation of Momentum The purpose of this lab is to demonstrate conservation of linear momentum in one-dimensional collisions of objects, and to

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

CRISIS AIREP Guidance

CRISIS AIREP Guidance CRISIS AIREP Guidance Crisis AIREP Guidance Page 1 Content for the Guidance Release : [Release] Project : Project System : Software Category : Final Version : 1 Author : Dragica Stankovic Document Identification

More information

Participation Conditions: Alcatel United Kingdom Operation - Europe Flight

Participation Conditions: Alcatel United Kingdom Operation - Europe Flight 1. ORGANISING COMPANY Participation Conditions: Alcatel United Kingdom Operation - Europe Flight 1.1 The company TLC Marketing France, a limited liability company, registered at the Trade and Companies

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

COMMERCIAL LEVEL SIMULATIONS

COMMERCIAL LEVEL SIMULATIONS PANEL AND VIRTUAL COCKPIT MANUAL COMMERCIAL LEVEL SIMULATIONS Commercial Level Simulations www.commerciallevel.com PANEL AND VIRTUAL COCKPIT MANUAL 1 Disclaimer This manual is not provided from, or endorsed

More information

Class F3K Hand Launch Gliders 5.7. CLASS F3K - HAND LAUNCH GLIDERS

Class F3K Hand Launch Gliders 5.7. CLASS F3K - HAND LAUNCH GLIDERS Class F3K Hand Launch Gliders 5.7. CLASS F3K - HAND LAUNCH GLIDERS 5.7.1. General This event is a multitasking contest where RC gliders must be hand-launched and accomplish specific tasks. In principle

More information

Official Record Series 5

Official Record Series 5 Official Record Series 5 United Kingdom Civil Aviation Authority CAA Scheme of Charges (Aviation Security No: 306 Publication date: 17 March 2015 Commencement date: 01 April 2015 The Civil Aviation Authority,

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

Handling Transfers in Travel Booster

Handling Transfers in Travel Booster I. General Guidelines a. As a transfer is a leg-based service, the transfer contract must be created using routing definitions that will also be reflected in the transaction. b. The number of legs in the

More information

2018/09/01 05:24 1/1 Flight Plan

2018/09/01 05:24 1/1 Flight Plan 2018/09/01 05:24 1/1 Flight Plan Table of Contents Flight Plan... 1 Current Flight Plan... 1 Manual Flight Planning... 2 Flight Plan Details... 2 Airway Usage... 3 Actions for Current Plan... 3 Synchronize

More information

Be fast with fares. Be first with customers

Be fast with fares. Be first with customers Be fast with fares. Be first with customers Agenda The challenges of fare management Get on the fast track The elements of success 2 Facing the challenges of fare management Keeping tariffs and rules up

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

NO FLIGHT EFFICIENCY USER MANUAL. Network Manager

NO FLIGHT EFFICIENCY USER MANUAL. Network Manager Edition Number : 3.0 Edition Validity Date : 15/09/2017 DOCUMENT CHARACTERISTICS Document Title Document Subtitle (optional) Edition Number Edition Validity Date NO FLIGHT EFFICIENCY USER MANUAL 3.0 15/09/2017

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

DATA APPLICATION CATEGORY 25 FARE BY RULE

DATA APPLICATION CATEGORY 25 FARE BY RULE DATA APPLICATION CATEGORY 25 FARE BY RULE The information contained in this document is the property of ATPCO. No part of this document may be reproduced, stored in a retrieval system, or transmitted in

More information

What if I just want to obtain flight schedules without making a reservation?

What if I just want to obtain flight schedules without making a reservation? http://www.omanair.com/en/faqs/booking Booking Home > Printer-friendly PDF > Booking If you have any unanswered questions about Oman Air and our services and need help, please select the appropriate category

More information

Q. Can I book personal travel on the site? - The Concur site is to be used exclusively for business related travel.

Q. Can I book personal travel on the site? - The Concur site is to be used exclusively for business related travel. Concur Travel FAQ Q. What will I use Concur Travel for? - Concur Travel is Hill-Rom s online booking tool for all of your business travel needs. It works with Travel and Transport and allows you to see

More information

> Amadeus Single View

> Amadeus Single View Special Issue > February 2008 This document is a quick guide to what is new and what is different about Amadeus e- Travel Management s Single View The document can be used by Partners for internal communication

More information

VAR-501-WECC-3 Power System Stabilizer. A. Introduction

VAR-501-WECC-3 Power System Stabilizer. A. Introduction A. Introduction 1. Title: Power System Stabilizer (PSS) 2. Number: VAR-501-WECC-3 3. Purpose: To ensure the Western Interconnection is operated in a coordinated manner under normal and abnormal conditions

More information

United Kingdom Civil Aviation Authority

United Kingdom Civil Aviation Authority United Kingdom Civil Aviation Authority Proposed Changes to CAA Scheme of Charges 1 INTRODUCTION 1.1 Details of revisions proposed to apply from 1 April 2017 are shown in red within this Enclosure. Current

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

myldtravel USER GUIDE

myldtravel USER GUIDE myldtravel USER GUIDE Page 2 of 32 Welcome to myidtravel a self service tool that allows you to book travel on other airlines at a discount rate based on standby travel. And by end of Summer 2017 you will

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

NEW AND IMPROVED. ROYAL CARIBBEAN Scope & Changes DEPOSITS AND FINAL PAYMENTS DEFINITIONS, SIZE REQUIREMENTS AND LIMITS

NEW AND IMPROVED. ROYAL CARIBBEAN Scope & Changes DEPOSITS AND FINAL PAYMENTS DEFINITIONS, SIZE REQUIREMENTS AND LIMITS NEW AND IMPROVED G R O U P S Y O U R WAY ROYAL CARIBBEAN Scope & Changes The policies contained in these Groups Your Way Group Policies (the Group Policies ) of Royal Caribbean International ( Royal Caribbean

More information

ANA Domestic Flight Online Business Travel Arrangement System. October 2017 All Nippon Airways Co., Ltd.

ANA Domestic Flight Online Business Travel Arrangement System. October 2017 All Nippon Airways Co., Ltd. ANA Domestic Flight Online Business Travel Arrangement System October 2017 All Nippon Airways Co., Ltd. Contents 1-1 What Is ANA@desk? 2 2-1 Benefits of ANA@desk (1) 3 2-2 Benefits of ANA@desk (2) 4 2-3

More information

The American Express Airpoints Platinum Reserve Card Benefits Terms and Conditions.

The American Express Airpoints Platinum Reserve Card Benefits Terms and Conditions. The American Express Airpoints Platinum Reserve Card Benefits Terms and Conditions. Effective 3 October 2017 Contents Definitions 3 Eligibility 4 Earning Airpoints Dollars 4 Status Points 5 Eligible Charges

More information

Important! You need to print out the 2 page worksheet you find by clicking on this link and take it with you to your lab session.

Important! You need to print out the 2 page worksheet you find by clicking on this link and take it with you to your lab session. 1 PHY 123 Lab 5 - Linear Momentum (updated 10/9/13) In this lab you will investigate the conservation of momentum in one-dimensional collisions of objects. You will do this for both elastic and inelastic

More information

Performance Indicator Horizontal Flight Efficiency

Performance Indicator Horizontal Flight Efficiency Performance Indicator Horizontal Flight Efficiency Level 1 and 2 documentation of the Horizontal Flight Efficiency key performance indicators Overview This document is a template for a Level 1 & Level

More information

Copyright Thomson Financial Limited 2006

Copyright Thomson Financial Limited 2006 Getting Started Copyright Thomson Financial Limited 2006 All rights reserved. No part of this publication may be reproduced without the prior written consent of Thomson Financial Limited, 1 Mark Square,

More information

Request for Information No OHIO/INDIANA UAS CENTER AND TEST COMPLEX. COA and Range Management Web Application. WebUAS

Request for Information No OHIO/INDIANA UAS CENTER AND TEST COMPLEX. COA and Range Management Web Application. WebUAS OHIO/INDIANA UAS CENTER AND TEST COMPLEX COA and Range Management Web Application WebUAS Request for Information (RFI) Issuing Agency: Ohio Department of Transportation Issue Date: 12/10/2013 Respond by:

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

Unit Activity Answer Sheet

Unit Activity Answer Sheet Probability and Statistics Unit Activity Answer Sheet Unit: Applying Probability The Lesson Activities will help you meet these educational goals: Mathematical Practices You will make sense of problems

More information

Travel: Making a Travel Reservation Purpose: The purpose of this guide is to assist the user in booking a trip in Concur s travel module.

Travel: Making a Travel Reservation Purpose: The purpose of this guide is to assist the user in booking a trip in Concur s travel module. Travel: Making a Travel Reservation Purpose: The purpose of this guide is to assist the user in booking a trip in Concur s travel module. Accessing the Travel Module Click Travel if you are booking travel

More information

Aircom User Guide. Version 2. Site Navigation Tips and Shortcuts Steps to Commission Search

Aircom User Guide. Version 2. Site Navigation Tips and Shortcuts Steps to Commission Search Aircom User Guide Version 2 Site Navigation Tips and Shortcuts Steps to Commission Search 1 Aircom Home Return to Home Page Compare Commissions Compare Carrier Commissions ** under construction Standard

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

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

Travel Agent - User Guide

Travel Agent - User Guide Travel Agent - User Guide Amadeus Fare World Contents Amadeus Fare World... 3 Search screen... 4 Standard Search... 4 Open Jaw search... 5 Agentweb... 5 Power Pricer (Agency Mark Up)... 6 Search functions...

More information

DECISION NUMBER NINETEEN TO THE TREATY ON OPEN SKIES

DECISION NUMBER NINETEEN TO THE TREATY ON OPEN SKIES DECISION NUMBER NINETEEN TO THE TREATY ON OPEN SKIES OSCC.DEC 19 12 October 1994 SUPPLEMENTARY PROVISIONS FOR THE COMPLETION OF THE MISSION PLAN AND FOR THE CONDUCT OF AN OBSERVATION FLIGHT The Open Skies

More information

Addendum to Model Implementation Conformance Statement for the IEC Ed2 interface in ABB 670 and 650 series version 2.2

Addendum to Model Implementation Conformance Statement for the IEC Ed2 interface in ABB 670 and 650 series version 2.2 Copyright 2017 ABB. All rights reserved. Addendum to odel Implementation Conformance Statement for the IEC 61850 Ed2 interface in ABB 670 and 650 series version 2.2 Based on UCA International Users Group

More information

Help Document for utsonmobile - Windows Phone

Help Document for utsonmobile - Windows Phone Help Document for utsonmobile - Windows Phone Indian Railway is introducing the facility of booking unreserved suburban tickets on smartphones. The application has been developed in-house by Centre for

More information

IPSOS / REUTERS POLL DATA Prepared by Ipsos Public Affairs

IPSOS / REUTERS POLL DATA Prepared by Ipsos Public Affairs Ipsos Poll Conducted for Reuters Airlines Poll 6.30.2017 These are findings from an Ipsos poll conducted June 22-29, 2017 on behalf Thomson Reuters. For the survey, a sample of roughly 2,316 adults age

More information

Concur Travel: Southwest Direct Connect

Concur Travel: Southwest Direct Connect Concur Travel: Southwest 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

Concur Travel & Expense BOOKING TRAVEL VIA CONCUR

Concur Travel & Expense BOOKING TRAVEL VIA CONCUR Concur Travel & Expense BOOKING TRAVEL VIA CONCUR Booking Travel via Concur Overview Getting Started Booking Travel Airfare Car Rental Hotel Cancelling/Changing Travel booked via Concur Concur Travel Resources

More information

easycredit Integration Guide Version As of: About easycredit: General information about easycredit

easycredit Integration Guide Version As of: About easycredit: General information about easycredit About easycredit: General information about easycredit easycredit Integration Guide Version 6.2.1 As of: 01.03.2018 Integration Guide Computop easycredit 1 About easycredit: General information about easycredit

More information

Booking flights At the restaurant Wiki. Triggers. February 24, Grégoire Détrez Tutorial 4

Booking flights At the restaurant Wiki. Triggers. February 24, Grégoire Détrez Tutorial 4 Triggers Grégoire Détrez February 24, 2016 Exercice 1 Domain Description We extend the shema from last week with the following relations to handle bookings: AvailableFlights(_flight_, _date_, numberoffreeseats,

More information

FEES (PAYMENT SYSTEMS REGULATOR) INSTRUMENT (No 6) A. The Financial Conduct Authority makes this instrument in the exercise of:

FEES (PAYMENT SYSTEMS REGULATOR) INSTRUMENT (No 6) A. The Financial Conduct Authority makes this instrument in the exercise of: FEES (PAYMENT SYSTEMS REGULATOR) INSTRUMENT (No 6) 2018 Powers exercised A. The Financial Conduct Authority makes this instrument in the exercise of: (1) the powers in paragraph 9 (Funding) of Schedule

More information

Air India through Travelport Smartpoint

Air India through Travelport Smartpoint Air India through Travelport Smartpoint Key Features of Air India on Travelport Air India s POS IN content for domestic flights available on Travelport as a preferred GDS for viewing, selling & modification

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

EASTERN MILES MEMBERSHIP TERMS AND CONDITIONS

EASTERN MILES MEMBERSHIP TERMS AND CONDITIONS EASTERN MILES MEMBERSHIP TERMS AND CONDITIONS TERMS AND CONDITIONS To protect the rights of the members and frequent flyers program of Eastern Miles, China Eastern Airlines Ltd. constitutes these terms

More information

Power Tong Torque Manual

Power Tong Torque Manual Power Tong Torque Manual 1 Contents Power Tong Torque Monitor 1. Description:... 3 2. System Functions:... 3 3. Future Optional Functionality:... 3 4. Panel Display and Operation:... 6 4.1. Setting the

More information