ADDRESS_TYPE_VW

(SQL View)
Index Back

Address Type

ADDRESS_TYPE holds the different types of addresses for each person. It is a child of PERSONAL_DATA, and a parent to ADDRESSES.

SELECT DISTINCT A.EMPLID , B.ORDER_BY_SEQ , A.ADDRESS_TYPE FROM PS_ADDRESSES A , PS_ADDRESS_TYP_TBL B WHERE A.ADDRESS_TYPE = B.ADDRESS_TYPE

  • Parent record: PERSON
  • # PeopleSoft Field Name PeopleSoft Field Type Database Column Type Description
    1 EMPLID Character(11) VARCHAR2(11) NOT NULL Employee ID
    2 ORDER_BY_SEQ Number(2,0) SMALLINT NOT NULL Order by Sequence
    3 ADDRESS_TYPE Character(4) VARCHAR2(4) NOT NULL Address Type

    Prompt Table: ADDRESS_TYP_TBL