EMS FastStart Manual
DDL, Copy Libraries and Templates Example
EMS FastStart Manual–133701
D-9
ATM Example, COBOL85 COPYLIB: ATM1COB
*
* File Type: DDL Source Schema
*
* Source File Name: SATMDDL
*
* Source Library File Produced: Sourced during the compilation of
* the main DDL.
*
* Generation Time: December 17, 1990
*
* Language Compiler Required: Data Definition Language (DDL)
*
* Compiler Version Required: C20
*
*
*
* File Description: This DDL source schema file is an example of DDL
* definitions which is used by the ATM example provided with EMS
* FastStart. These definitions will ease the documentation and the
* maintenance of an EGEN based application.
*
*----------------------------------------------------------------------
*----------------------------------------------------------------------
*
* Each event message generated by an application will be identified
* by a unique number called the event message number. This section
* presents an example of a typical implementation.
*
* Event Numbers Usage Description
*
* 0 - 99 Informative Events
* 100 - 199 Action Events
* 200 - 499 Critical Events
* 500 - 999 Reserved for future enhancement
*
*----------------------------------------------------------------------
*----------------------------------------------------------------------
*
* INFORMATIVE EVENTS DESCRIPTION:
*
* These event message numbers describe the current set of INFORMATIVE
* EVENTS supported by this application. For each event generated by a
* Atm application, the programmer should select one of the following
* event message numbers and move it into the EVENT-NUMBER field of
* EGEN-RECORD.
*
*----------------------------------------------------------------------
01 ATM-EVT-UP NATIVE-2 VALUE IS 1.
01 ATM-EVT-ACCT-INSUF-FUNDS NATIVE-2 VALUE IS 2.
01 ATM-EVT-BACK-ONLINE NATIVE-2 VALUE IS 3.
*----------------------------------------------------------------------
*
* ACTION EVENTS DESCRIPTION:
*
* These event message numbers describe the current set of ACTION
* EVENTS supported by this application. For each event generated by a
* Atm application, the programmer should select one of the following
* event message numbers and move it into the EVENT-NUMBER field of
* EGEN-RECORD.
*
*----------------------------------------------------------------------
01 ATM-EVT-LOW-ON-CASH NATIVE-2 VALUE IS 100.
*----------------------------------------------------------------------
*
* CRITICAL EVENTS DESCRIPTION:
*