CUST_VW(SQL View) |
Index Back |
---|---|
Customer/Contact/Address ViewThis record is used in capturing all the contact/customer/address profile. This is what is used for quick customer search on customer, contact or address. Date Initials Issue Description 022301 dms SP2 (F-CJORGENS-9) CTI Integration 030701 dms SP2 (F-CJORGENS-3) CSR Desktop |
SELECT a.setid , b.cust_id , a.name1 , b.country_code , b.phone , b.extension , b.fax , b.country , b.address1 , b.address2 , b.address3 , b.address4 , b.city , b.num1 , b.num2 , b.house_type , b.addr_field1 , b.addr_field2 , b.addr_field3 , b.county , b.state , b.postal , b.geo_code , b.in_city_limit , 'N' FROM ps_customer a , PS_CUST_ADDRESS b WHERE a.setid = b.setid AND a.cust_id = b.cust_id |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | SETID | Character(5) | VARCHAR2(5) NOT NULL | SetID |
2 | CUST_ID | Character(15) | VARCHAR2(15) NOT NULL | Uniquely identifies an organizational entity that purchases goods or services from the enterprise. Represents the sold-to customer which is the customer organization that places orders. The CUST_ID may or may not be the same as the identifiers for the bill-to and ship-to locations. |
3 | CUST_NAME | Character(40) | VARCHAR2(40) NOT NULL | Name |
4 | COUNTRY_CODE | Character(3) | VARCHAR2(3) NOT NULL | Int'l Prefix |
5 | PHONE | Character(24) | VARCHAR2(24) NOT NULL | Telephone |
6 | EXTENSION | Character(6) | VARCHAR2(6) NOT NULL | Phone Extension |
7 | FAX | Character(24) | VARCHAR2(24) NOT NULL | Fax Number |
8 | COUNTRY | Character(3) | VARCHAR2(3) NOT NULL |
Country
Prompt Table: COUNTRY_TBL |
9 | ADDRESS1 | Character(55) | VARCHAR2(55) NOT NULL | Address 1 |
10 | ADDRESS2 | Character(55) | VARCHAR2(55) NOT NULL | Address 2 |
11 | ADDRESS3 | Character(55) | VARCHAR2(55) NOT NULL | Address 3 |
12 | ADDRESS4 | Character(55) | VARCHAR2(55) NOT NULL | Address 4 |
13 | CITY | Character(30) | VARCHAR2(30) NOT NULL | City |
14 | NUM1 | Character(6) | VARCHAR2(6) NOT NULL | Number 1 |
15 | NUM2 | Character(6) | VARCHAR2(6) NOT NULL | Number 2 |
16 | HOUSE_TYPE | Character(2) | VARCHAR2(2) NOT NULL |
House Type
AB=House Boat WW=Trailer |
17 | ADDR_FIELD1 | Character(2) | VARCHAR2(2) NOT NULL | Address Field 1 |
18 | ADDR_FIELD2 | Character(4) | VARCHAR2(4) NOT NULL | Address Field 2 |
19 | ADDR_FIELD3 | Character(4) | VARCHAR2(4) NOT NULL | Address Field 3 |
20 | COUNTY | Character(30) | VARCHAR2(30) NOT NULL | County |
21 | STATE | Character(6) | VARCHAR2(6) NOT NULL |
State
Prompt Table: %EDIT_STATE |
22 | POSTAL | Character(12) | VARCHAR2(12) NOT NULL | Postal |
23 | GEO_CODE | Character(11) | VARCHAR2(11) NOT NULL | Geo Code |
24 | IN_CITY_LIMIT | Character(1) | VARCHAR2(1) NOT NULL |
In City Limit
Y/N Table Edit |
25 | SELECTED_FLAG | Character(1) | VARCHAR2(1) NOT NULL |
Selected Flag
N=Not Selected Y=Seleted |