Go to the bottom.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name:	PASS_CONFIG_UPDATE.SDDL
!
! Purpose:      This SDDL file defines the pass_config_update relation.
!
! Modification History:
!
!   Date       PR      Who                       Reason
! --------   -------   ---   -------------------------------------------------
! 02/13/96   30697     MRB   Original implementation
! 02/22/96   30697     MRB   Incorporate Taylor, Chandler, and Owens comments
! 03/12/96   31033     EGB   Modified to be consistent with all other SDDLs
! 04/10/96   31120     MRB   Increased field sizes, field names change
! 05/08/98   36870     MRB   Added C output
! 11/13/01   44750     MRB   Replaced opcat_class with ms_name
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

LANGUAGE  C, SQL

INCLUDE  ZSPSS_USER_TYPES.SDDL

RECORD  PASS_CONFIG_TYPE

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

    DESCRIPTION      "This relation associates a PASS SMS identifier with
                      the configuration file of a PASS processing run.  

                      A PASS configuration consists of input files,
                      schedules, catalogs, and databases accessed during 
                      a PASS run.  The input files are stored in a CMS library.
                      This library keeps related files in specific classes.  
                      The class names are used to fetch the files of a given 
                      PASS run.  It is those class names that are stored here.

                      SMSG/Send populates pass_sms_id and run_type with initial
                      values.  SPST tools are planned to populate the rest of
		      this relation's fields."

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


    FIELD  pass_sms_id
        TYPE PASS_SMS_ID_TYPE
    END_FIELD


    FIELD run_type
        DESCRIPTION    "This field indicates whether the run is for the initial 
                        or final run of PASS for the SMS. SMSG/Send initially
                        populates this field with an I for initial and with an
                        F for final."
        TYPE           C*6
    END_FIELD


    FIELD gsfc_class
        DESCRIPTION    "The field contains the calibration/GSFC file name used 
                        for the PASS run. The value is a CMS class name."
        TYPE           C*16
    END_FIELD


    FIELD ephem_class
        DESCRIPTION    "The field contains the ephemeris file identifier used 
                        for the run. The value is a CMS class name."
        TYPE           C*16
    END_FIELD


    FIELD sched_class
        DESCRIPTION    "The field houses the TDRS Network Control Center 
                        schedule file that was used for the run.
                        The value is a CMS class name."
        TYPE           C*16
    END_FIELD


    FIELD ms_name
        TYPE PASS_MS_NAME_TYPE
    END_FIELD


    FIELD pdb_class        	
        DESCRIPTION    "The field contains the name of the CMS class for the
                        PDB data that was used for this run."
        TYPE           C*16
    END_FIELD

END_RECORD


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


RELATION  pass_config_update

    TYPE             PASS_CONFIG_TYPE

    DESCRIPTION      "PASS Run Configuration By SMS Relation"

    SUBSYSTEM_USING  "SPSS", "SCS", "PASS"

    RELATED_FIELDS  "pass_status.*" "pass_run_names.*" "pass_sms_edits.*"


    INDEX  pass_config_update_1
        TYPE         unique, clustered
        FIELDS       pass_sms_id, run_type
    END_INDEX

END_RELATION

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


INSTANCE  pass_config_update

    GLOBAL

    TYPE        PASS_CONFIG_TYPE

END_INSTANCE

Go to the top.