Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name:	NPMSG_LIST.SDDL
!
! Purpose:      This SDDL file defines the npmsg_list relation.
!
! Modification History:
!
!   Date       OPR      Who                       Reason
! --------   -------    ---   -------------------------------------------------
! 10/28/94    27329     MRB   Original implementation
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
!

LANGUAGE	FORTRAN, SQL

RECORD  NPMSG_TYPE

!------------------------------------------------------------------------------
!
!   RECORD INFORMATION
!
!------------------------------------------------------------------------------


    DESCRIPTION       "This relation contains user specified messages 
                       associated with a message ID through the Message Table.
                       The message ID may then be placed in records of other 
                       Precedence Checker tables to instruct the Precedence 
                       Checker to record the message in the Precedence Checker
                       trace file when the record is processed.

                       An error severity code may be specified with each error
                       message.  An error summary is displayed at the end of 
                       the Precedence Checker trace file containing the number
                       of messages issued for each error severity code.

		       See NPNAMES_TABLE to understand where this data comes 
		       from and how it is used.  The description for 
		       NPNAMES_TABLE also has a complete list of the related 
		       precedence checker relations. Also refer to Chapters 22
		       through 33 of the SCS User's Guide for more information 
		       on the precedence checker."


!------------------------------------------------------------------------------
!
!   FIELD INFORMATION
!
!------------------------------------------------------------------------------



    FIELD  message
        TYPE            C12
        DESCRIPTION     "This field is an id that uniquely identifies an SMS
                         precedence checker message."
    END_FIELD



    FIELD  error
        TYPE            I2
        DESCRIPTION     "This field is an integer code that indicates the 
                         severity of any error associated with the message. 
                         A value of 0 indicates no error is associated
                         with the message. The number of errors associated 
                         with each error code is output at the conclusion of 
                         precedence checker processing. Error codes must be 
                         less than or equal to 99."
        RANGE            "0..99"
    END_FIELD



    FIELD  msg_text
        TYPE            C72
        DESCRIPTION     "This field is the text of the message to be written 
                         to the error summary file and the precedence checker 
                         trace file."
    END_FIELD



    FIELD  msg_cont
        TYPE            C72
        DESCRIPTION     "This field is the continuation of text of the message
                         to be written to the error summary file and the
                         precedence checker trace file."
    END_FIELD


END_RECORD


!------------------------------------------------------------------------------
!
!   RELATION DECLARATION
!
!------------------------------------------------------------------------------


RELATION  npmsg_list

    TYPE             NPMSG_TYPE

    DESCRIPTION      "Precedence Checker Keyed Message List Relation"

    SUBSYSTEM_USING  "SCS"

    RELATED_FIELDS  "npalgorithms.*"

    INDEX  npmsg_list_1
        TYPE         unique, clustered
        FIELDS       message
    END_INDEX

END_RELATION

!------------------------------------------------------------------------------
!
!   INSTANCE DECLARATION
!
!------------------------------------------------------------------------------


INSTANCE  npmsg_list

    GLOBAL

    TYPE        NPMSG_TYPE

END_INSTANCE

Go to the top.