[Home] [Help]
[Dependency Information]
Object Name: | CSC_GS_CONTACTS_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.
View of HZ_CONTACTS_POINTS. This view is used to get only the contact details of a Party. Refer
to base table for details.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
PARTY_ID | NUMBER | (15) | Yes | Surrogate key used for primary unique identifiers. |
CONTACT_POINT_ID | NUMBER | (15) | Yes | Unique identifier of this contact point |
EMAIL_ID | NUMBER | (15) | Yes | Unique identifier of this contact point |
PHONE_NUMBER | VARCHAR2 | (40) | A telephone number formatted in the local format. The number should not include area code, country code, or extension. | |
EMAIL_ADDRESS | VARCHAR2 | (2000) | Email address | |
PHONE_COUNTRY_CODE | VARCHAR2 | (10) | Country code for international phone numbers. | |
PHONE_AREA_CODE | VARCHAR2 | (10) | The area code within a country code. | |
PHONE_EXTENSION | VARCHAR2 | (20) | The additional number handled by an internal telephone system that is addressed after | |
TELEPHONE_TYPE | VARCHAR2 | (30) | Indicates whether this is a fixed or mobile phone. | |
PHONE_LINE_TYPE | VARCHAR2 | (30) | Lookup code for the type of phone line. For example, general, fax, inbound, outbound. | |
LAST_UPDATE_DATE | DATE | Standard Who column | ||
EMAIL_LAST_UPDATE_DATE | DATE | Yes | Standard Who column |
Cut, paste (and edit) the following text to query this object:
SELECT PARTY_ID
, CONTACT_POINT_ID
, EMAIL_ID
, PHONE_NUMBER
, EMAIL_ADDRESS
, PHONE_COUNTRY_CODE
, PHONE_AREA_CODE
, PHONE_EXTENSION
, TELEPHONE_TYPE
, PHONE_LINE_TYPE
, LAST_UPDATE_DATE
, EMAIL_LAST_UPDATE_DATE
FROM APPS.CSC_GS_CONTACTS_V;
|
|
|