[Home] [Help]
[Dependency Information]
Object Name: | IGF_SL_ADDR_V |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A public view which may be useful for custom reporting or other data
requirements.
IGF_SL_ADDR_V selects all the details required to obtain the permanent and temporary addresses of a person from the TCA. The address attributes are used for the US only. The column value
SITE_USE_TYPE = HOME specifies the permanent address, and RESIDES AT will specifies the local address.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
PERSON_ID | NUMBER | (15) | Yes | Person identifier |
SITE_USE_TYPE | VARCHAR2 | (30) | Yes | Indicates whether person's address is permanent address or local address |
ADDR_LINE_1 | VARCHAR2 | (240) | Yes | Indicates person's address line 1 |
ADDR_LINE_2 | VARCHAR2 | (240) | Indicates person's address line 2 | |
ADDR_LINE_3 | VARCHAR2 | (240) | Indicates person's address line 3 | |
ADDR_LINE_4 | VARCHAR2 | (240) | Indicates person's address line 4 | |
CITY | VARCHAR2 | (60) | Indicates person's address city | |
STATE | VARCHAR2 | (60) | Indicates person's address state | |
PROVINCE | VARCHAR2 | (60) | Indicates person's address province | |
COUNTY | VARCHAR2 | (60) | Indicates person's address county | |
COUNTRY | VARCHAR2 | (60) | Yes | Indicates person's address country |
POSTAL_CODE | VARCHAR2 | (60) | Indicates person's address zip code | |
LAST_UPDATE_DATE | DATE | Yes | Indicates date on which address details last changed |
Cut, paste (and edit) the following text to query this object:
SELECT PERSON_ID
, SITE_USE_TYPE
, ADDR_LINE_1
, ADDR_LINE_2
, ADDR_LINE_3
, ADDR_LINE_4
, CITY
, STATE
, PROVINCE
, COUNTY
, COUNTRY
, POSTAL_CODE
, LAST_UPDATE_DATE
FROM APPS.IGF_SL_ADDR_V;
|
|
|