Search Results primary_phone_country_code
Overview
APPS.AST_LM_PER_QUICK_V is a reporting and integration view in Oracle E-Business Suite that presents a consolidated, denormalized projection of person-type parties together with their primary telephone contact information. The view name reflects its purpose within the Oracle CRM/Telephony and Leads Management (AST_LM) family of objects: it provides a "quick" lookup of persons suitable for lightweight reference queries, list-of-values implementations, and downstream data extraction. It surfaces identity, address, status, and phone attributes in a single row, sparing callers from joining multiple HZ_PARTIES-related sources themselves.
The view is particularly relevant to searches involving primary_phone_number, since it exposes the primary telephone number and its component parts directly. All rows returned are restricted to parties whose PARTY_TYPE is 'PERSON', so the view never returns organization records. It is defined in the APPS schema and is generally treated as a read-only reporting object rather than a table that application code writes to.
Underlying Base Objects
The view is defined over the following documented objects:
HZ_PARTIES(synonym) — the primary source of person identity, address, email, status, and phone columns. Aliased asPARTY.AR_LOOKUPS(view) — supplies the decoded meaning of the party status code viaALK.MEANING.FND_TERRITORIES_TL(synonym) — supplies the translated territory short name (FTT.TERRITORY_SHORT_NAME) for the party's country.
The join to AR_LOOKUPS is an inner join constrained by LOOKUP_TYPE = 'CODE_STATUS' and LOOKUP_CODE = PARTY.STATUS. The joins to FND_TERRITORIES_TL are outer joins (denoted by the (+) operator), keyed on PARTY.COUNTRY = FTT.TERRITORY_CODE and filtered by the session's language through USERENV('LANG') on both LANGUAGE and SOURCE_LANG. Because the territory join is outer, parties without a matching territory translation still return a row, with a null territory short name.
Key Columns
PARTY_ID— the unique identifier of the person party inHZ_PARTIES.CUST_ACCOUNT_ID— always returnsTO_NUMBER(NULL); a placeholder column retained for structural compatibility. It is not populated and should not be relied upon.- Name columns:
PERSON_FIRST_NAME,PERSON_MIDDLE_NAME,PERSON_LAST_NAME. - Address columns: concatenated
ADDRESS1–ADDRESS4, plusCITY,STATE,POSTAL_CODE,PROVINCE,COUNTRY, andTERRITORY_SHORT_NAME. EMAIL_ADDRESS— the party's e-mail address.STATUSandMEANING— the raw status code and its decoded lookup meaning. The view is filtered toSTATUS IN ('A','I')(active and inactive).PRIMARY_PHONE_COUNTRY_CODE,PRIMARY_PHONE_AREA_CODE,PRIMARY_PHONE_NUMBER,PRIMARY_PHONE_EXTENSION— the component parts of the primary phone.- Two derived phone columns: a formatted string combining country code, area code, number, and extension with hyphens via
NVL, and a concatenation ofPRIMARY_PHONE_AREA_CODE || PRIMARY_PHONE_NUMBERfor compact dialing or matching.
The presence of a bare primary_phone_number column, alongside these derived forms, makes the view a natural target when a search calls for phone-based lookups.
Common Use Cases and Queries
The view is typically used for person lookups where a single-row profile including phone data is required. A representative query matching a specific phone number follows:
SELECT party_id, person_last_name, primary_phone_number FROM apps.ast_lm_per_quick_v WHERE primary_phone_number = '5551234';SELECT party_id, person_first_name, person_last_name, primary_phone_area_code, primary_phone_number, meaning FROM apps.ast_lm_per_quick_v WHERE meaning = 'Active' ORDER BY person_last_name;SELECT party_id, primary_phone_area_code || primary_phone_number AS dialable, city, province FROM apps.ast_lm_per_quick_v WHERE country = 'US';
Because CUST_ACCOUNT_ID is always null, callers should not use the view to resolve customer accounts; it serves purely as a person-and-phone reference. Queries should also account for the restriction to person parties and the A/I status filter, which excludes other status values from the result set.
-
VIEW: APPS.AST_LM_PER_QUICK_V
12.2.2
-
VIEW: APPS.AST_LM_PER_QUICK_V
12.1.1
-
VIEW: APPS.AST_LM_PER_QUICK_W_ACC_V
12.2.2
-
VIEW: APPS.AST_LM_PER_QUICK_W_ACC_V
12.1.1
-
VIEW: APPS.AST_LM_PER_FUZZY_V
12.1.1
-
VIEW: APPS.AST_LM_ORG_QUICK_V
12.1.1
-
VIEW: APPS.AST_LM_ORG_FUZZY_V
12.1.1
-
VIEW: APPS.AST_LM_ORG_QUICK_V
12.2.2
-
VIEW: APPS.AST_LM_ORG_QUICK_W_ACC_V
12.2.2
-
VIEW: APPS.AST_LM_ORG_FUZZY_V
12.2.2
-
VIEW: APPS.AST_LM_PER_FUZZY_V
12.2.2
-
VIEW: LNS.LNS_BORROWER_SUMMARIES#
12.2.2
-
VIEW: APPS.AST_LM_ORG_QUICK_W_ACC_V
12.1.1
-
View: AST_LM_PER_QUICK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_QUICK_V, object_name:AST_LM_PER_QUICK_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_QUICK_V ,
-
View: AST_LM_ORG_QUICK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_QUICK_V, object_name:AST_LM_ORG_QUICK_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_QUICK_V ,
-
View: AST_LM_PER_QUICK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_QUICK_V, object_name:AST_LM_PER_QUICK_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_QUICK_V ,
-
View: AST_LM_PER_QUICK_W_ACC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_QUICK_W_ACC_V, object_name:AST_LM_PER_QUICK_W_ACC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_QUICK_W_ACC_V ,
-
View: AST_LM_PER_FUZZY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_FUZZY_V, object_name:AST_LM_PER_FUZZY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_FUZZY_V ,
-
View: AST_LM_PER_FUZZY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_FUZZY_V, object_name:AST_LM_PER_FUZZY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_FUZZY_V ,
-
View: AST_LM_ORG_QUICK_W_ACC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_QUICK_W_ACC_V, object_name:AST_LM_ORG_QUICK_W_ACC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_QUICK_W_ACC_V ,
-
View: AST_LM_ORG_QUICK_W_ACC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_QUICK_W_ACC_V, object_name:AST_LM_ORG_QUICK_W_ACC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_QUICK_W_ACC_V ,
-
VIEW: APPS.AST_RELATIONSHIP_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RELATIONSHIP_DETAILS_V, object_name:AST_RELATIONSHIP_DETAILS_V, status:VALID,
-
View: AST_LM_PER_QUICK_W_ACC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_QUICK_W_ACC_V, object_name:AST_LM_PER_QUICK_W_ACC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_QUICK_W_ACC_V ,
-
View: AST_LM_ORG_FUZZY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_FUZZY_V, object_name:AST_LM_ORG_FUZZY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_FUZZY_V ,
-
View: AST_LM_ORG_FUZZY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_FUZZY_V, object_name:AST_LM_ORG_FUZZY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_FUZZY_V ,
-
VIEW: AR.HZ_PARTIES#
12.2.2
-
View: AST_LM_ORG_QUICK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_QUICK_V, object_name:AST_LM_ORG_QUICK_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_QUICK_V ,
-
VIEW: APPS.AST_RELATIONSHIP_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RELATIONSHIP_DETAILS_V, object_name:AST_RELATIONSHIP_DETAILS_V, status:VALID,
-
VIEW: LNS.LNS_BORROWER_SUMMARIES#
12.2.2
owner:LNS, object_type:VIEW, object_name:LNS_BORROWER_SUMMARIES#, status:VALID,
-
VIEW: APPS.AR_XML_INVOICE_TP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_XML_INVOICE_TP_V, object_name:AR_XML_INVOICE_TP_V, status:VALID,
-
VIEW: APPS.AR_XML_INVOICE_TP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_XML_INVOICE_TP_V, object_name:AR_XML_INVOICE_TP_V, status:VALID,
-
TYPE: APPS.HZ_MATCHED_PARTY_OBJ
12.2.2
owner:APPS, object_type:TYPE, object_name:HZ_MATCHED_PARTY_OBJ, status:VALID,
-
TYPE: APPS.HZ_MATCHED_PARTY_OBJ
12.1.1
owner:APPS, object_type:TYPE, object_name:HZ_MATCHED_PARTY_OBJ, status:VALID,
-
View: AST_RELATIONSHIP_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RELATIONSHIP_DETAILS_V, object_name:AST_RELATIONSHIP_DETAILS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_RELATIONSHIP_DETAILS_V ,
-
View: AST_RELATIONSHIP_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RELATIONSHIP_DETAILS_V, object_name:AST_RELATIONSHIP_DETAILS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_RELATIONSHIP_DETAILS_V ,
-
APPS.POS_HZ_PARTY_BO_PKG SQL Statements
12.2.2
-
APPS.LNS_BORROWERS_SUMMARY_PUB SQL Statements
12.2.2
-
View: AR_XML_INVOICE_TP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_XML_INVOICE_TP_V, object_name:AR_XML_INVOICE_TP_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_XML_INVOICE_TP_V ,
-
View: AR_XML_INVOICE_TP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_XML_INVOICE_TP_V, object_name:AR_XML_INVOICE_TP_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_XML_INVOICE_TP_V ,
-
VIEW: AR.HZ_PARTIES#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_PARTIES#, status:VALID,
-
APPS.LNS_BORROWERS_SUMMARY_PUB SQL Statements
12.1.1
-
TABLE: LNS.LNS_BORROWER_SUMMARIES
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_BORROWER_SUMMARIES, object_name:LNS_BORROWER_SUMMARIES, status:VALID,
-
TABLE: LNS.LNS_BORROWER_SUMMARIES
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_BORROWER_SUMMARIES, object_name:LNS_BORROWER_SUMMARIES, status:VALID,
-
PACKAGE BODY: APPS.LNS_BORROWERS_SUMMARY_PUB
12.2.2
-
PACKAGE BODY: APPS.POS_HZ_PARTY_BO_PKG
12.2.2
-
PACKAGE BODY: APPS.LNS_BORROWERS_SUMMARY_PUB
12.1.1
-
TYPE: APPS.POS_HZ_PARTY_BO
12.2.2
owner:APPS, object_type:TYPE, object_name:POS_HZ_PARTY_BO, status:VALID,
-
PACKAGE: APPS.LNS_BORROWERS_SUMMARY_PUB
12.1.1
-
PACKAGE: APPS.LNS_BORROWERS_SUMMARY_PUB
12.2.2
-
PACKAGE BODY: APPS.CAC_SYNC_TASK
12.2.2