AS/400 Machine Level Programming. Table of contents

Size: px
Start display at page:

Download "AS/400 Machine Level Programming. Table of contents"

Transcription

1 AS/400 Machine Level Programming Table of contents Chapter 0: Introduction Why Program at the Machine-Level? 0-1 What is the Machine-Level? Above and Below the MI 0-1 Old MI and New MI Is MI Hard and Arcane? 0-1 What About All Those MI-Instructions? Small Programs or Large Programs 0-2 Why is MI so Secret? Chapter 1: Getting Your Own MI-Compiler MI-Compilers 1-1 Create Program (QPRCRTPG) API Detailed Explanation of Each Parameter (Boring) 1-2 The MI-Compiler Front-End The CRTMIPGM Command 1-7 Hello World MI Functional Reference Manual 1-10 Chapter 2: Data Types and Your First Real MI-Program Data Types 2-1 Character Data Type Numeric Data Types 2-2 Data Names Comments 2-3 Hexadecimal Constants Convert Hexadecimal to Character 2-3 Compile Errors Conditions and Branching 2-4 Labels and Branch Points Short Form of Instructions 2-5 Structured Data Our First "Real" MI-Program 2-7 Chapter 3: Pointers, Pointers, and Pointers Space Data Object 3-1 Setting a Space Pointer Explore Pointers: Materialize Invocation Stack 3-2 Static Storage Method Dealing with Exceptions 3-4 Automatic Storage Allocation Instruction Pointers 3-6 Chapter 4: Arithmetic and Timestamps Timestamps 4-1 Convert Timestamp to Date and Time Converting to a Date 4-2 Complete Program to Show Current Date and Time Leap Seconds 4-4 Higher Resolution in Later Versions i

2 Chapter 5: Calling Other Programs External Program Objects 5-1 Obtaining a System Pointer Initializing a System Pointer 5-1 Resolving a System Pointer Copying a System Pointer 5-2 System Entry Point Table (SEPT) Counterfeiting a Pointer 5-2 Encapsulated Objects The Argument List 5-2 Program Call Example Relative Branch Conditions 5-4 An Optimization The System Entry Point Table 5-5 Chapter 6: RISC Code for Setting a Pointer Set Space Pointer From Pointer 6-1 Documentation About the PowerPC AS/400 RISC PowerPC Machine Architecture 6-1 System Service Tools Dissecting SETSPPFP 6-4 LQ - Load Quadword Instruction and Pointer Tag Bits TXER Instruction 6-5 ORI - OR Immediate Instruction ADDI - Add Immediate Instruction 6-6 RLDICL Instruction Condition Register 6-7 BC - Branch Conditional Instruction BLA - Branch with Link to Absolute Address Instruction 6-8 Link Register Addresses, Segments, Offsets, and SLIC 6-8 LD - Load Doubleword Instruction RLDICR Instruction 6-9 SETTAG Instruction STQ, Store Quadword Instruction 6-10 Final Annotated SETSPPFP Code Chapter 7: Accessing Arbitrary Data in Memory Accessing Arbitrary Data 7-1 Set Space Pointer From Any Pointer Counterfeiting the Pointer 7-1 Accessing Encapsulated Program Code Using the Debugger 7-3 System Domain Objects Going System State 7-5 This Does Not Work on a CISC Box Chapter 8: Getting/Setting File Member Information File Member Information 8-1 File Member Cursors The Member Header 8-1 Converting Dates to Timestamps Must be System State 8-3 Parameters Command CHGMBR and Command Processing Program CHGMBRCL 8-4 Command Processing Program ii

3 The Complete MIMBRINF Program 8-6 Chapter 9: The Work Control Block Table Tasks, Processes, and Jobs 9-1 Job Names Finding Work Control Block Tables 9-1 The Process Communication Object The Master (Root) WCB Table List 9-2 Scanning the WCB Tables Testing if a Pointer is Null 9-3 Searching a Work Control Block Table Scanning WCB for Device Name 9-4 Checking the Job Status Putting It All Together 9-5 Performance A Faster Way of Locating Jobs 9-7 Format of the Job Index Header Format of the Job Index Entry 9-8 Addressing the Job Index Finding Entries in the Job Index 9-9 A Faster Version, MIWCBFND A Brief History of WCBT Problems 9-11 Chapter 10: Internal Sorting, Combsort Sorting Internal Data 10-1 Bubble Sort Combsort 10-2 MI-Version of Combsort Override Program Attribute 10-3 The Sort Double Loop Complete Combsort Code 10-4 Using Instruction Pointers Testing Combsort 10-5 Generating Random Numbers Measuring Processor Time Spent 10-5 Calling Combsort Computing N log2 N 10-6 Compute Mathematical Function with 1 Argument Computing Time Differences 10-7 Simple Numeric Editing The Complete MITSTCMB Test Program 10-8 Performance Results RPG Version of COMBSORT Chapter 11: The Machine State Register Machine State Register (MSR) 11-1 Privilege Level The MFMSR/MTMSRD Instructions 11-2 Running in Supervisor Mode Finding the SLIC Code for Call Program 11-3 Retrieving Machine Registers Getting General-Purpose Registers 11-5 Getting Special-Purpose General-Use Registers STD Instruction 11-7 Getting the Machine State Register The Program State 11-8 iii

4 The Floating Point Bit Chapter 12: Input/Output in MI Using the SEPT A File Compressor/Decompressor 12-1 The User File Control Block How Do We Know This Stuff? 12-2 Setting Library/File/Member Some AS/400-S/38 History 12-3 Control Flags More Control Flags 12-4 The FCMPRS (File Compress) Command Command-Processing Program 12-4 Parameter Block The System Entry Point Table (SEPT) 12-5 Opening a File The Open Data Path 12-7 Data Management Entry Point Table I/O Routines The Data Management Option List The Data Management Control List Filling the Input Area Compressing the Input Write the Compressed Records Getting the System Name Decompressing the Data Compression Ratio The Complete Program Chapter 13: File Conversion and Hashing Minimum File Transformation: COPY 13-1 Generic File Transformer Command Translating the Data From a File 13-3 A GREP-Like Utility A KWIC (KeyWord-In-Context) Version of GREP 13-5 Calculating a File Digest Clearing the File Before Output 13-8 Variable Length Part of the UFCB Blocking Records to Increase I/O Performance 13-8 With/Without Level Check Chapter 14: Password Encryption on the AS/ Password Protected Access 14-1 Password Rules Retrieving the Encrypted Password 14-1 Algorithm for the 1st Encrypted Password Using CIPHER to DES-Encrypt 14-4 Algorithm for the 2nd Encrypted Password Why Seven Characters Instead of Eight? 14-7 The Magic Constant The Compleat MIENCPWD Program 14-8 The Brute-Force Attack Passwords Stored in the Clear! A Password Checking Utility Real Security Chapter 15: Program Validation Value iv

5 The Program Validation Value 15-1 States and Domains Saving/Restoring Programs 15-1 Calculating the Program Validation Value The ILE Program Model 15-2 Our TEST Program Object Header 15-2 Program Header The AS/400 Security Oracle 15-3 Effective Address Translation Page Protection Bits 15-5 Writable Program Header History Log 15-5 Program Version Table Program MICLNPGM to Clean Patch Information and History Log 15-7 Program Maintenance Header Module Table Module Header Module Version Table Procedure Table RISC Instructions Module Constants Primary Associated Space Which Components Go Into the PVV? Diffusion and Confusion Program MIPGMVV Computes the PVV Clearing the History Log on V4R Digitally Signed Objects Chapter 16: User-Defined 5250 Datastream I/O Display Files 16-1 The MIHWORLD Program Data Management Option List 16-3 Data Management Control List Device Control (or Name) Block 16-3 Machine Space Pointers Datastream Format 16-4 Buffer Format Datastream Commands 16-4 Orders Field Control Word 16-7 Field Format Word Screen Attributes 16-8 Explanation of the Magic Constants Chapter 17: A Simple Screen I/O Interface Describing Screen Files 17-1 Item Introducer Logical Attributes 17-2 Cursor Position The Contiguous Data Block 17-3 The MITSTSCR Test Program Command Keys 17-4 The MISCRNIO Screen Handler File control Block and Data Management Entries 17-5 Buffer Formats v

6 Orders 17-7 Command Key Translation Data Content Translation 17-8 Attribute Translation Current Cursor Position 17-8 The Screen Handler Code Open Terminal 17-9 Close Terminal Write to Terminal 17-9 The VERIFY MI-Instruction The XLATE MI-Instruction Calculating Where to Place the Cursor Read from Terminal Format of MDT Input Fields Returned Finding Field With Cursor Chapter 18: (SCV) Supervisor Call Vectored The SCV/RFSCV Instructions 18-1 How Is the SCV Used? The SCV Dispatch Code 18-1 RLDIMI Instruction Tracing and Single-Step Mode 18-3 ADDIS Instruction SCV 10 Handler 18-4 The Blocked Instruction Flag Table Other SCV Calls 18-6 What Did We Learn? Chapter 19: Calculating Archimedes' Constant, Pi An Amazing Formula for Pi 19-1 Computing the Square Root The MIPIPKD Program 19-2 The MIPIFLT Program The Original S/38 Program, MIPIS Chapter 20: Exception Handling Exceptions and Events 20-1 Declaring an Exception Monitor The Exception Identifier 20-2 Searching for Exception Descriptions Materialize an Exception Description 20-2 Modifying an Exception Description Monitoring Exceptions: The MIDECEXC Program 20-3 Exception General and Specific Data Return from Exception 20-5 Signaling Exceptions: The MISIGEXC Program Materialize Invocation Attributes 20-6 Signaling an Exception Various Errors 20-8 Preventing Messages in the Joblog Chapter 21: Walking the ODP Chain The Open Data Path 21-1 Searching Work Control Block Tables The Data Management Communication Object 21-2 The DMQC Root vi

7 The SETSPPO MI-Instruction 21-3 A DMCQ Open Entry Locating the ODPs 21-5 Structure of the ODP The Open Feedback 21-6 The I/O Feedback Data to Collect about an Active File 21-7 The MIODPWLK Program Chapter 22: How to Generate a Truly Random Number What is a Random Number? 22-1 Use of Randomness Bad Seeds 22-1 The Entropy Pool Sources of Entropy 22-2 Timing Information Entropy Pool Format 22-3 The Yield Time Resource Management Data 22-4 Processor Utilization Storage Management Counters 22-5 Main Storage Pool Information Disk Storage Information 22-7 Activity Level Control Data Can We Measure the Amount of Entropy in the Pool? 22-9 Aging the Entropy Pool The Get Entropy Program (MIGETETP) The Internal State Generation of Entropy The Entropy Monitor Program (MIETPMON) Conclusion TCP/IP Flaw Because of Lack of Randomness Chapter 23: Automatic Refresh of Display The Automatic Refresh Problem 23-1 DDS Specification for the Display File ASSUME (Assume) Keyword 23-1 CFnn (Command Function) Keyword KEEP (Keep) Keyword 23-1 OVERLAY (Overlay) Keyword USRDFN (User-Defined) Keyword 23-2 INVITE (Invite) Keyword Invited Devices 23-2 General-Purpose Time-out Program The DDS for the Invited Device 23-3 RPG Versions of the Time-Out Program Call Stack for WRKACTJOB Command 23-4 The QDMACCIN Program Changing the Time-out Value Dynamically 23-6 The MIINVDSP Invited Display Program Automatic Refresh Driver Program MIAUTREF 23-8 The CVTEFN MI-Instruction The ROLLUP / ROLLDOWN Problem Acknowledgements Chapter 24: Editing of Numeric Variables vii

8 The Importance of Editing 24-1 Edit Codes and Edit Words COBOL Pictures 24-1 The EDIT MI-Instruction The Edit Mask 24-2 Parameter Length Conformance Left-Justifying the Number 24-4 Chapter 25: Machine Indexes What is a Machine Index? 25-1 Binary Radix Trees The Index Instructions 25-1 Security Level 40+ Considerations The Search Engine Problem 25-2 Index Object Subtypes Creating the Index 25-2 Reading the File Member Extracting Words 25-6 Inserting an Entry Internal Structure of an Index 25-8 Iterating over All Members of a File Insertion Speed Searching the Index Building a Screen Searching for the Word Chapter 26: The AS/400 Memory Explorer Examining Memory without SST 26-1 Accessing Arbitrary Memory Preserving Tag Bits 26-2 Screen Layout Arrays of Fields 26-3 The Explorer Program (MIEXPLR) The DATA to Show 26-4 Stacking/Unstacking of Addresses Showing the Screen 26-4 Enter: Specifying the Location of the Data Paging Down/Up to See More 26-7 The HOME or PCS Position Look at Memory at Another Address 26-7 Detecting a Pointer The CMPPTRT MI-instruction 26-8 Unstacking to Previous Address Displaying Timestamps 26-9 Disassembling Instructions Exiting the Program Building the Screen Image Determining the Pointer Description Ready-made AS/400 Explorer Chapter 27: Inside a Save File Why Save-Files? 27-1 The Internal Save Format The Dump Space 27-2 Dump Space Management Instructions Checksums 27-2 viii

9 Dump Space Header The Dump Space Data Pages The Dump Descriptor 27-3 Dump Descriptor Catalog Extended Object Information 27-4 Show Object in a Save File, MIOBJSAV Walk Descriptors in Save File, MIWLKSAV 27-7 Modifying a Save File Save File Integrity? NOT 27-9 Single-Level Store? Maybe Not Always "Flushing" a Save File to Disk Changing Module Information, MICHGMOD Save Files for CISC Architecture Chapter 28: Recursion, Entropy, and the End of the World Recursive Procedures 28-1 Summing of Integers Equipartition of Energy 28-2 Distinguishability of Particles "How Many Ways to Distribute 10 Units of Energy among 5 Distinguishable Particles?" 28-3 A Computer Simulation Programming Idioms 28-4 Storage Attributes Calling MIADSUMR 28-5 A Parameter That Is Not a Pointer An Iterative Version, MIADSUMI 28-6 Sample Results (Combinatorial Explosion) Method of Finite Differences 28-8 A Note About the Programs for This Chapter The Tower of Hanoi 28-8 Fibonacci Numbers Chapter 29: Changing Your Machine's Serial Number What Legitimate Reason Can You Have For This? 29-1 A True Horror Story The MATMATR Instruction 29-2 Finding the SCV Function OS/400 is Developed Under UNIX 29-2 Contents of the Data Segment Get the Serial Number 29-3 The HDTA Object System Values 29-5 What Happens at the Next IPL? Place of Manufacture 29-6 The "Software" Serial Number Pure conjecture (Probably Incorrect) 29-6 A Little More History 29-6 Chapter 30: The Advanced Encryption Standard The Need for a New Encryption Standard 30-1 The New Encryption Standard The Rounds 30-1 Copy Bits Logical (CPYBTL) Generated RISC Code for MI-Version 30-3 Generated RISC Code for C-Version Optimized RISC Code for C-Version 30-4 ix

10 C-Version of AES Defining an Encryption Round 30-5 Defining a Decryption Round Key Expansion 30-6 The Encryption/Decryption Process Operating Modes 30-8 Electronic Codebook Mode Cipher Block Chaining Mode 30-9 The File Encryption Program, MIFAES Encryption/Decryption Speed Compiling and Binding the C-Programs The AES C-Program The AESTEST Testprogram Chapter 31: The Object Information Repository Extended Common Object Information 31-1 Work with Object Command (WRKOBJ) The OIR (Object Information Repository) 31-2 Work with OIR (MIWRKOIR) Must be System State 31-5 The Change Object Description API (QLICOBJD) Fields in the OIR 31-5 The MISHWOIR Test Program What is in the Additional OIR Records? Chapter 32: Immune against Check Object Integrity Checking Object Integrity 32-1 Hacking CHKOBJITG? Using CHKOBJITG 32-1 Disowning an Object The User Profile as a Machine Index 32-3 Defense in Depth (The Alter Log) Format of Alter Log Entries 32-4 Clearing the Alter Log How Did We Know the Address of the Alter Log? 32-5 Chapter 33: Analysis of SCV 7, Program Call Program Calls 33-1 Adopted Authority The Program State Attribute 33-1 Generated Code for CALLX Instruction The SCV 7 Dispatch Code 33-2 The #AICAPGM Module Check State Attribute 33-3 Finally Calling the Program Entering the Called Program 33-4 The STDU RISC-Instruction Returning from the Called Program 33-4 Format of the Invocation Stack Frame, ISF Chapter 34: Anatomy of a User Profile The Central Role of a User Profile 34-1 Getting User Profile for a Job Object Specific Header 34-2 Privileged Instruction Bits in User Profile Special Authority Bits in User Profile 34-2 x

11 Object Audit Level User Audit Levels 34-3 A Dangerous Program The Associated Space 34-4 Qualified Values Various User Profile Flags 34-5 Language, Country, and Character Set IDs User Options 34-6 Objects Owned by User Profile Chapter 38: Source and Debug Information ILE Programs and Modules 38-1 OIR-Information for Modules Change Licensed Object Description, QLICOBJD 38-2 Anatomy of a Module The HLL Symbol Table 38-3 View Descriptors Descriptor Types 38-5 No Debug Source Why Make the Symbol Table Inaccessible? 38-5 Changing Source/Debug Information, MICHGMOD The Bound Program 38-8 The BNAS Information Debug Source Information Appendix A: MI-Instructions Quick Reference A-1 MI-Instruction Quick Reference A-1 Computational and Branching Instructions A-1 Pointer/Resolution Instructions A-6 Space Management Instructions A-7 Independent Index Instructions A-7 Authorization Instructions A-7 Program and Invocation Instructions A-8 Exception Management Instructions A-9 Queue Management Instructions A-9 Object Lock Instructions A-10 Context Management Instructions A-10 Heap Management Instructions A-10 Resource Management Instructions A-11 MI Support Functions Instructions A-11 Date/Time/Timestamp Instructions A-11 Appendix B: Object Type/Subtypes B-1 Object Type/Subtypes B-1 Object List B-1 Appendix C: PowerPC Instruction Set Quick Reference C-1 Instructions Sorted by Mnemonic C-1 Appendix D: SEPT Entries in the User Domain D-1 System Entry Point Table Entries D-1 Entries Sorted by Number D-1 Entries Sorted by Name D-13 Appendix E: SCV 10 Function Numbers E-1 Supervisor Call (Vectored) Functions E-1 xi

12 Appendix F: Open and I/O Feedback Areas F-1 Open Feedback Area F-1 I/O Feedback Area F-6 Common I/O Feedback Area F-6 I/O Feedback Area for ICF and Display Files F-8 I/O Feedback Area for Printer Files F-10 I/O Feedback Area for Database Files F-10 xii

PSS MVS 7.15 announcement

PSS MVS 7.15 announcement PSS MVS 7.15 announcement New Mainframe Software Print SubSystem MVS 7.15 AFP printing and AFP2PDF conversion Version 7.15 Bar Code + PDF Update with additional features and fixes 2880 Bagsvaerd Tel.:

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

Special edition paper Development of a Crew Schedule Data Transfer System

Special edition paper Development of a Crew Schedule Data Transfer System Development of a Crew Schedule Data Transfer System Hideto Murakami* Takashi Matsumoto* Kazuya Yumikura* Akira Nomura* We developed a crew schedule data transfer system where crew schedule data is transferred

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

Table of Contents. Part I Introduction 3 Part II Installation 3. Part III How to Distribute It 3 Part IV Office 2007 &

Table of Contents. Part I Introduction 3 Part II Installation 3. Part III How to Distribute It 3 Part IV Office 2007 & Contents 1 Table of Contents Foreword 0 Part I Introduction 3 Part II Installation 3 1 Trial Version... 3 2 Full Version... 3 Part III How to Distribute It 3 Part IV Office 2007 & 2010 4 1 Word... 4 Run

More information

Video Media Center - VMC 1000 Getting Started Guide

Video Media Center - VMC 1000 Getting Started Guide Video Media Center - VMC 1000 Getting Started Guide Video Media Center - VMC 1000 Getting Started Guide Trademark Information Polycom, the Polycom logo design, Video Media Center, and RSS 2000 are registered

More information

PSS Integrating 3 rd Party Intelligent Terminal. Application Note. Date December 15, 2009 Document number PSS5000/APNO/804680/00

PSS Integrating 3 rd Party Intelligent Terminal. Application Note. Date December 15, 2009 Document number PSS5000/APNO/804680/00 PSS 5000 Application Note Integrating 3 rd Party Intelligent Terminal Date December 15, 2009 Document number PSS5000/APNO/804680/00 Doms A/S Formervangen 28 Tel. +45 4329 9400 info@doms.dk DK-2600 Glostrup

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

UM1868. The BlueNRG and BlueNRG-MS information register (IFR) User manual. Introduction

UM1868. The BlueNRG and BlueNRG-MS information register (IFR) User manual. Introduction User manual The BlueNRG and BlueNRG-MS information register (IFR) Introduction This user manual describes the information register (IFR) of the BlueNRG and BlueNRG-MS devices and provides related programming

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

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

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

PSS VM 7.15 announcement

PSS VM 7.15 announcement PSS VM 7.15 announcement New Mainframe Software Print SubSystem VM 7.15 AFP printing to PCL and PostScript Version 7.15 Bar Code Update with additional features and fixes 2880 Bagsvaerd Tel.: +45 4436

More information

MyTraveler User s Manual

MyTraveler User s Manual MyTraveler User s Manual MyTraveler is the DataTraveler Elite tool that enables you to access and customize your DataTraveler Elite through the MyTraveler Console. Messages and prompts guide you through

More information

CAPAN Methodology Sector Capacity Assessment

CAPAN Methodology Sector Capacity Assessment CAPAN Methodology Sector Capacity Assessment Air Traffic Services System Capacity Seminar/Workshop Nairobi, Kenya, 8 10 June 2016 Raffaele Russo EUROCONTROL Operations Planning Background Network Operations

More information

Scalable Runtime Support for Data-Intensive Applications on the Single-Chip Cloud Computer

Scalable Runtime Support for Data-Intensive Applications on the Single-Chip Cloud Computer Scalable Runtime Support for Data-Intensive Applications on the Single-Chip Cloud Computer Anastasios Papagiannis and Dimitrios S. Nikolopoulos, FORTH-ICS Institute of Computer Science (ICS) Foundation

More information

Setup and Configure the Siteminder Policy Store with Dxmanager

Setup and Configure the Siteminder Policy Store with Dxmanager One CA Plaza Islandia, NY 11749 T +1 631 342 6000 F +1 631 342 6800 ca.com June 20, 2013 Customer Request Number: N/A System/Application: Policy Server Module: Siteminder Policy Store with DXmanager Request

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

ADVANTAGES OF SIMULATION

ADVANTAGES OF SIMULATION ADVANTAGES OF SIMULATION Most complex, real-world systems with stochastic elements cannot be accurately described by a mathematical model that can be evaluated analytically. Thus, a simulation is often

More information

Driving STM32 to success STM32 services for sophisticated embedded applications

Driving STM32 to success STM32 services for sophisticated embedded applications Building a safe and secure embedded world Driving STM32 to success STM32 services for sophisticated embedded applications > STM32 Services HITEX: the stm32 experts Questions about STM32? Ask us! STM32

More information

1224 Splitter and CTO combo, setup instructions using the Panelview HMI

1224 Splitter and CTO combo, setup instructions using the Panelview HMI Knowledge Base Article Type: Instructions 1224 Splitter and CTO combo, setup instructions using the Panelview 1000+ HMI Description: Instructions on How to properly setup the 1224 Splitter and CTO/Clamp

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

Programmable Safety Systems PSS-Range

Programmable Safety Systems PSS-Range Programmable Safety Systems PSS-Range PROFIBUS-DP for Compact 3rd Generation PSS Operating Manual Item No. 20 962-04 All rights to this manual are reserved by Pilz GmbH & Co. KG. Copies may be made for

More information

A 3D simulation case study of airport air traffic handling

A 3D simulation case study of airport air traffic handling A 3D simulation case study of airport air traffic handling Henk de Swaan Arons Erasmus University Rotterdam PO Box 1738, H4-21 3000 DR Rotterdam, The Netherlands email: hdsa@cs.few.eur.nl Abstract Modern

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

Comfort Pro A Hotel. User Manual

Comfort Pro A Hotel. User Manual Comfort Pro A Hotel User Manual Contents ComfortPro A Hotel 5 Software Features............................................................6 Scope of Delivery.............................................................7

More information

Enhance your arrival services and shape with us the future of Lost & Found

Enhance your arrival services and shape with us the future of Lost & Found Enhance your arrival services and shape with us the future of Lost & Found Around 20 million bags With today s technologies, productivity can be increased by 50 % while improving passengers / airlines

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

Form 91 Application for Approval of an EFB System

Form 91 Application for Approval of an EFB System Form 91 Application for Approval of an EFB System This form must be completed by the Flight Representative (FOR) or Operator as recorded on the current Form 20. Please refer to RP4 Guidance to Operators

More information

SUPPLEMENT OCTOBER CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL AND ON REVISION 8 68FM-S17-08

SUPPLEMENT OCTOBER CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL AND ON REVISION 8 68FM-S17-08 MODEL 680 680-0001 AND ON CITATION PERFORMANCE CALCULATOR (CPCalc) COPYRIGHT 2005 CESSNA AIRCRAFT COMPANY WICHITA, KANSAS, USA 68FM-S17-08 REVISION 8 17 OCTOBER 2005 7 MARCH 2014 U.S. S17-1 SECTION V -

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

STOCKTON POLICE DEPARTMENT GENERAL ORDER UNMANNED AIRCRAFT SYSTEM SUBJECT. DATE: November 14, 2017 NO: V-6

STOCKTON POLICE DEPARTMENT GENERAL ORDER UNMANNED AIRCRAFT SYSTEM SUBJECT. DATE: November 14, 2017 NO: V-6 STOCKTON POLICE DEPARTMENT GENERAL ORDER UNMANNED AIRCRAFT SYSTEM SUBJECT DATE: November 14, 2017 NO: FROM: CHIEF ERIC JONES TO: ALL PERSONNEL INDEX: UNMANNED AIRCRAFT SYSTEM I. PURPOSE The purpose of

More information

An Architecture for Combinator Graph Reduction Philip J. Koopman Jr.

An Architecture for Combinator Graph Reduction Philip J. Koopman Jr. An Architecture for Combinator Graph Reduction Philip J. Koopman Jr. Copyright 1990, Philip J. Koopman Jr. All Rights Reserved To my parents vi Contents List of Tables.............................. xi

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

SUPPLEMENT AUGUST CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL THRU FM-S51-00 S51-1 U.S.

SUPPLEMENT AUGUST CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL THRU FM-S51-00 S51-1 U.S. MODEL 525 525-0001 THRU -0359 CITATION PERFORMANCE CALCULATOR (CPCalc) COPYRIGHT 2007 CESSNA AIRCRAFT COMPANY WICHITA, KANSAS, USA 14 AUGUST 2007 U.S. S51-1 SECTION V - SUPPLEMENTS CITATION PERFORMANCE

More information

SUPPLEMENT 3 11 APRIL CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL AND ON 510FM-S3-00 S3-1 U.S.

SUPPLEMENT 3 11 APRIL CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL AND ON 510FM-S3-00 S3-1 U.S. 510-0001 AND ON CITATION PERFORMANCE CALCULATOR (CPCalc) COPYRIGHT 2007 CESSNA AIRCRAFT COMPANY WICHITA, KANSAS, USA 11 APRIL 2007 U.S. S3-1 CITATION PERFORMANCE CALCULATOR (CPCalc) Use the Log of Effective

More information

SOLVING GATE ALLOCATION PROBLEM (AGAP) USING DISTANCE-EVALUATED PARTICLE SWARM OPTIMIZATION (DEPSO)

SOLVING GATE ALLOCATION PROBLEM (AGAP) USING DISTANCE-EVALUATED PARTICLE SWARM OPTIMIZATION (DEPSO) SOLVING GATE ALLOCATION PROBLEM (AGAP) USING DISTANCE-EVALUATED PARTICLE SWARM OPTIMIZATION (DEPSO) AZLAN BIN AHMAD TAJUDDIN B.ENG (HONS.) MECHATRONICS UNIVERSITY MALAYSIA PAHANG SOLVING GATE ALLOCATION

More information

Table of Contents. Part I Introduction 3 Part II Installation 3. Part III How to Distribute It 3 Part IV Office 2007 &

Table of Contents. Part I Introduction 3 Part II Installation 3. Part III How to Distribute It 3 Part IV Office 2007 & Contents 1 Table of Contents Foreword 0 Part I Introduction 3 Part II Installation 3 1 Trial Version... 3 2 Full Version... 3 Part III How to Distribute It 3 Part IV Office 2007 & 2010 4 1 Word... 4 Run

More information

FLIGHT STRIP MANAGEMENT - APPROACH LEVEL

FLIGHT STRIP MANAGEMENT - APPROACH LEVEL FLIGHT STRIP MANAGEMENT - APPROACH LEVEL 1. Introduction The flight strip management for ATC is an important point in order to ensure aircraft management and improve safety when controlling. In real aviation,

More information

Integrated Modular Avionics. The way ahead for aircraft computing platforms?

Integrated Modular Avionics. The way ahead for aircraft computing platforms? Integrated Modular Avionics The way ahead for aircraft computing platforms? 1 Contents The Need for IMA IMA Structure and Services Design Using IMA Related Subjects Conclusion 2 Integrated Modular Avionics

More information

Mathcad Prime 3.0. Curriculum Guide

Mathcad Prime 3.0. Curriculum Guide Mathcad Prime 3.0 Curriculum Guide Live Classroom Curriculum Guide Mathcad Prime 3.0 Essentials Advanced Functionality using Mathcad Prime 3.0 Mathcad Prime 3.0 Essentials Overview Course Code Course Length

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

FliteStar USER S GUIDE

FliteStar USER S GUIDE FliteStar USER S GUIDE 2003 Jeppesen Sanderson, Inc. All rights reserved. Printed in the United States of America. No part of this publication may be reproduced, stored in a retrieval system, or transmitted,

More information

Dell EMC Unisphere 360

Dell EMC Unisphere 360 Dell EMC Unisphere 360 Version 9.0.1 Installation Guide REV 02 Copyright 2014-2018 Dell Inc. or its subsidiaries. All rights reserved. Published October 2018 Dell believes the information in this publication

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

AMC and GM to Part-CAT Issue 2, Amendment 3

AMC and GM to Part-CAT Issue 2, Amendment 3 Annex I to ED Decision 2015/021/R AMC and GM to Part-CAT Issue 2, Amendment 3 The Annex to ED Decision 2014/015/R 1 (AMC/GM to Annex IV (Part-CAT) to Commission Regulation (EU) No 965/2012) is amended

More information

etrust SiteMinder Connector for Oracle Solutions Architecture, Installation and Configuration Guide For UNIX Version 1.6 (Rev 1.

etrust SiteMinder Connector for Oracle Solutions Architecture, Installation and Configuration Guide For UNIX Version 1.6 (Rev 1. etrust SiteMinder Connector for Oracle Solutions Architecture, Installation and Configuration Guide For UNIX Version 1.6 (Rev 1.1) October 2006 CA Inc. Solution Engineering Team 100 Staples Drive Framingham,

More information

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

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

More information

AMC and GM to Part-SPO Amendment 3

AMC and GM to Part-SPO Amendment 3 Annex III to ED Decision 2015/021/R AMC and GM to Part-SPO Amendment 3 The Annex to Decision 2014/018/R (AMC/GM to Annex VIII (Part-SPO) to Commission Regulation (EU) No 965/2012) is amended as follows:

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

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

MYOB EXO OnTheGo. Release Notes 1.2

MYOB EXO OnTheGo. Release Notes 1.2 MYOB EXO OnTheGo Release Notes 1.2 Contents Introduction 1 What s New in this Release?... 1 Installation 2 Pre-Install Requirements... 2 Installing the EXO API... 2 Installing EXO OnTheGo... 2 New Features

More information

CA SiteMinder. Agent for JBoss Guide SP1

CA SiteMinder. Agent for JBoss Guide SP1 CA SiteMinder Agent for JBoss Guide 12.52 SP1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

Information security supplier rules. Information security supplier rules

Information security supplier rules. Information security supplier rules Information security supplier rules TABLE OF CONTENTS 1 SCOPE... 3 2 DEFINITIONS AND ACRONYMS... 3 3 RESPONSIBILITIES... 3 4 GENERAL RULES... 3 4.1 PURPOSE OF INFORMATION PROCESSING... 3 4.2 CONFIDENTIALITY

More information

Mobile FliteDeck VFR Release Notes

Mobile FliteDeck VFR Release Notes Mobile FliteDeck VFR Release Notes This document supports version 2.3.0 (build 2.3.0.10334) of Mobile FliteDeck VFR for ios. The minimum operating system requirement for this release is ios10. On the date

More information

S-Series Hotel App User Guide

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

More information

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

Hiway Gateway Specification and Technical Data

Hiway Gateway Specification and Technical Data L Hiway Gateway Specification and Technical Data HG03-400 8/92 detergant coffee chocolate Page 2 TDC 3000 Hiway Gateway Specification and Technical Data Introduction This publication defines the significant

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

Model Crosspoint Matrix

Model Crosspoint Matrix Model 3000 4380 256 Crosspoint Matrix 90401270 Page 1 All technical data and specifications in this publication are subject to change without prior notice and do not represent a commitment on the part

More information

ATC Simulators. The manufacturer of

ATC Simulators. The manufacturer of ATC Simulators The manufacturer of Edda Systems AS Established in 2005, by 5 experienced ATM engineers (ex Avinor) 100% owned by the employees/founders Edda Systems AS is specialized in CNS/ATM systems,

More information

COMMISSION REGULATION (EU)

COMMISSION REGULATION (EU) L 23/6 Official Journal of the European Union 27.1.2010 COMMISSION REGULATION (EU) No 73/2010 of 26 January 2010 laying down requirements on the quality of aeronautical data and aeronautical information

More information

Boarding Pass Issuance to Passengers at Airport

Boarding Pass Issuance to Passengers at Airport ENSE623/ENPM645 Boarding Pass Issuance to Passengers at Airport By Soe Zarni Bargava Subramanian University of Maryland December 6, 2005 1 System Boundary Description Airport authorities have fixed(constrained)

More information

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

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

A Statistical Method for Eliminating False Counts Due to Debris, Using Automated Visual Inspection for Probe Marks

A Statistical Method for Eliminating False Counts Due to Debris, Using Automated Visual Inspection for Probe Marks A Statistical Method for Eliminating False Counts Due to Debris, Using Automated Visual Inspection for Probe Marks SWTW 2003 Max Guest & Mike Clay August Technology, Plano, TX Probe Debris & Challenges

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

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

QuickSilver Controls, Inc. Application Note:QCI-AN034

QuickSilver Controls, Inc. Application Note:QCI-AN034 Date: 18 July 2008 www.quicksilvercontrols.com Rotary Knife Included files: QCI-AN034 Rotary Knife.pdf: This document Rotary Knife Simple - Fixed.qcp Rotary Knife Simple - Dynamic.qcp Rotary Knife - Registration.qcp

More information

Visitor Use Computer Simulation Modeling to Address Transportation Planning and User Capacity Management in Yosemite Valley, Yosemite National Park

Visitor Use Computer Simulation Modeling to Address Transportation Planning and User Capacity Management in Yosemite Valley, Yosemite National Park Visitor Use Computer Simulation Modeling to Address Transportation Planning and User Capacity Management in Yosemite Valley, Yosemite National Park Final Report Steve Lawson Brett Kiser Karen Hockett Nathan

More information

CA SiteMinder. Agent for JBoss Guide. r12.1 SP3. Third Edition

CA SiteMinder. Agent for JBoss Guide. r12.1 SP3. Third Edition CA SiteMinder Agent for JBoss Guide r12.1 SP3 Third Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

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

Mathcad 14.0 Curriculum Guide

Mathcad 14.0 Curriculum Guide Mathcad 14.0 Curriculum Guide NOTE: For a graphical depiction of the curriculum based on job role, please visit this page: http://www.ptc.com/services/edserv/learning/paths/ptc/mc_14.htm Live Classroom

More information

Mobile FliteDeck VFR Version Release Notes

Mobile FliteDeck VFR Version Release Notes Mobile FliteDeck VFR Version 2.2.1 - Release Notes This document supports version 2.2.1 (build 10281) of Mobile FliteDeck VFR for ios. The minimum operating system requirement for this release is ios10.

More information

Flight Arrival Simulation

Flight Arrival Simulation Flight Arrival Simulation Ali Reza Afshari Buein Zahra Technical University, Department of Industrial Engineering, Iran, afshari@bzte.ac.ir Mohammad Anisseh Imam Khomeini International University, Department

More information

Lab: ARM Assembly Shellcode

Lab: ARM Assembly Shellcode Lab: ARM Assembly Shellcode From Zero to ARM Assembly Bind Shellcode HITBSecConf2018 - Amsterdam 1 Learning Objectives ARM assembly basics Registers Most common instructions ARM vs. Thumb Load and Store

More information

Flying with L-NAV Version 5.7 and S-NAV Version 7.6 & 8.6 Dave Ellis, February 1999

Flying with L-NAV Version 5.7 and S-NAV Version 7.6 & 8.6 Dave Ellis, February 1999 Flying with L-NAV Version 5.7 and S-NAV Version 7.6 & 8.6 Dave Ellis, February 1999 Table of Contents A. Introduction B. Cruise/Climb Switching C. The Smart Averager D. Audio Tone Patterns E. The Slow

More information

This document is meant purely as a documentation tool and the institutions do not assume any liability for its contents

This document is meant purely as a documentation tool and the institutions do not assume any liability for its contents 2010R0073 EN 20.10.2014 001.001 1 This document is meant purely as a documentation tool and the institutions do not assume any liability for its contents B COMMISSION REGULATION (EU) No 73/2010 of 26 January

More information

Lab: ARM Assembly Shellcode

Lab: ARM Assembly Shellcode Lab: ARM Assembly Shellcode From Zero to ARM Assembly Bind Shellcode HITBSecConf2018 - Amsterdam 1 Learning Objectives ARM assembly basics Registers Most common instructions ARM vs. Thumb Load and Store

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

FOR INDUSTRIAL ROBOTIC APPLICATIONS

FOR INDUSTRIAL ROBOTIC APPLICATIONS ADVANTAGES OF USING FLEXIBLE ELECTRIC GRIPPERS FOR INDUSTRIAL ROBOTIC APPLICATIONS Robotiq 2-Finger Adaptive Gripper TABLE OF CONTENT INTRODUCTION... 3 SECTION 1 THE EASY GRIPPING INTELLIGENCE... 4 SECTION

More information

Sabre: Refund and Exchange Customer Questions

Sabre: Refund and Exchange Customer Questions Sabre: Refund and Exchange Customer Questions The following questions were raised by the audience during the Refund and Exchange Overview presented by Sabre 01 November 2017. Questions have been consolidated

More information

Implementation challenges for Flight Procedures

Implementation challenges for Flight Procedures Implementation challenges for Flight Procedures A Data-house perspective for comprehensive Procedure Design solution: A need today Sorin Onitiu Manager Business Affairs, Government & Military Aviation,

More information

SPEDESTER Series QUICK REFERENCE GUIDE

SPEDESTER Series QUICK REFERENCE GUIDE Spedester series Digital DC Drives come with an extensive range of standard software blocks, it can take control of the most demanding motion control tasks. Designed for industrial applications, Spedester

More information

TIMS & PowerSchool 2/3/2016. TIMS and PowerSchool. Session Overview

TIMS & PowerSchool 2/3/2016. TIMS and PowerSchool. Session Overview TIMS and PowerSchool TIMS & PowerSchool Kevin R. Hart TIMS and PowerSchool Kevin R. Hart TIMS Project Leader UNC Charlotte Urban Institute Session Overview What is TIMS? PowerSchool Data in TIMS PowerSchool

More information

ATTEND Analytical Tools To Evaluate Negotiation Difficulty

ATTEND Analytical Tools To Evaluate Negotiation Difficulty ATTEND Analytical Tools To Evaluate Negotiation Difficulty Alejandro Bugacov Robert Neches University of Southern California Information Sciences Institute ANTs PI Meeting, November, 2000 Outline 1. Goals

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

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

Special Conditions: CFM International, LEAP-1A and -1C Engine Models; Incorporation

Special Conditions: CFM International, LEAP-1A and -1C Engine Models; Incorporation This document is scheduled to be published in the Federal Register on 11/14/2014 and available online at http://federalregister.gov/a/2014-27019, and on FDsys.gov [4910-13] DEPARTMENT OF TRANSPORTATION

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

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

Today: using MATLAB to model LTI systems

Today: using MATLAB to model LTI systems Today: using MATLAB to model LTI systems 2 nd order system example: DC motor with inductance derivation of the transfer function transient responses using MATLAB open loop closed loop (with feedback) Effect

More information

Vacuum Controls and Interlocks

Vacuum Controls and Interlocks Vacuum Controls and Interlocks CERN Accelerator School Platja D Aro, 16-24 May 2006 P. Strubin (CERN) Outline Introduction Architecture 3 tiers architecture Example of the LHC vacuum system Mapping the

More information

How To Set Up and Use the SAP ME Earned Standards Feature

How To Set Up and Use the SAP ME Earned Standards Feature SAP Manufacturing Execution How-To Guide How To Set Up and Use the SAP ME s Feature Applicable Release: ME 6.0 Version 1.0 June 4, 2012 Copyright 2012 SAP AG. All rights reserved. No part of this publication

More information

Advisory Circular. 1.1 Purpose Applicability Description of Changes... 2

Advisory Circular. 1.1 Purpose Applicability Description of Changes... 2 Advisory Circular Subject: Part Design Approvals Issuing Office: Standards Document No.: AC 521-007 File Classification No.: Z 5000-34 Issue No.: 01 RDIMS No.: 5612108-V33 Effective Date: 2012-03-16 1.1

More information

Sunquest Collection Manager (Monitor)

Sunquest Collection Manager (Monitor) Sunquest Collection Manager (Monitor) Collection Manager is a Sunquest application that is used to positively identify patients and print labels at the patient s bedside to eliminate the risk of specimen

More information

EMC Unisphere 360 for VMAX

EMC Unisphere 360 for VMAX EMC Unisphere 360 for VMAX Version 8.4.0 Installation Guide REV 01 Copyright 2014-2017 EMC Corporation All rights reserved. Published May 2017 Dell believes the information in this publication is accurate

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

Theme Park Routing: A Decision Support System for Walt Disney World Trips

Theme Park Routing: A Decision Support System for Walt Disney World Trips The Kabod Volume 4 Issue 2 Spring 2018 Article 4 February 2018 Theme Park Routing: A Decision Support System for Walt Disney World Trips Danica Dvorachek Liberty University, ddvorachek@liberty.edu Follow

More information

Flight Delays Module (External User)

Flight Delays Module (External User) Flight Delays Module (External User) Table of Contents Flight Delays Module and its Functionalities 3 Access Flight Delay Module 3 Auto-generate Flight Delay Records 4 Manually Create a Flight Delay Record

More information