Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name:	WGUSERA.SDDL
!
! Purpose:      This SDDL file defines the wgusera relation.
!
! Modification History:
!
!   Date       OPR      Who                       Reason
! --------   -------    ---   -------------------------------------------------
! 11/15/94   27329      SSS   Original implementation
! 10/01/01   44572      sss   Added index
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!

LANGUAGE   C, SQL

RECORD  WGUSER_TYPE

    DESCRIPTION       "This relation contains groupings of apertures 
                       defined in relation qaapertures.  This allows 
                       sets of apertures to be defined by a single name.
                       Currently, the SPSS FOV and MOSS PERCY programs use 
                       this relation to allow the graphical display of 
                       specific aperture sets.  See relation qaapertures for 
                       more information on apertures.  The data in this
                       relation is maintained by SPSS operations."


    FIELD  wgu_owner
        TYPE            C8
        DESCRIPTION     "This is name of the aperture set.   There
                         should be a record in the relation for each aperture
                         in the set."
    END_FIELD


    FIELD  wgu_approx
        TYPE            C1
        DESCRIPTION     "This field indicates how the aperture should be 
                         interpreted. 'Y' indicates the aperture should be
                         used as defined in qaapertures.   'N' indicates the 
                         aperture should be ignored (same as if row never 
                         existed). 'P' indicates that that the aperture should
                         be regarded as a single point."
        DISCRETE        "Y", "N", "P"
    END_FIELD


    FIELD  wgu_id
        TYPE            C10
        DESCRIPTION     "This is the name of an aperture as defined in relation
                        qaapertures."
    END_FIELD

END_RECORD


RELATION  wgusera
    TYPE             WGUSER_TYPE
    DESCRIPTION      "Aperture Sets Relation"
    SUBSYSTEM_USING  "SPSS"
    RELATED_FIELDS  "qaapertures.*"
    INDEX  wwgusera_1
        TYPE         clustered
        FIELDS       wgu_owner
    END_INDEX
END_RELATION


INSTANCE  wgusera
    GLOBAL
    TYPE        WGUSER_TYPE
END_INSTANCE

Go to the top.