Search Results ar_lookups
Overview
AST_ORG_PROFILES_V is a TeleSales (AST) view owned by the APPS schema. It presents a consolidated, denormalized projection of organization-level party data used by the Oracle TeleSales application. The view joins the Trading Community Architecture (TCA) party registry to organization profile information and decodes numerous lookup codes into their human-readable meanings, producing a single reporting surface for organizational customers.
Within Oracle EBS 12.1.1 and 12.2.2, TeleSales relies on TCA as the system of record for parties and organization profiles. Rather than requiring reporting and integration consumers to reconstruct the multi-table join themselves, AST_ORG_PROFILES_V exposes party identity, organization firmographics, financial indicators, and decoded reference values in one relational row per organization party. Because one of the projected columns is REGISTRATION_TYPE, this view is frequently surfaced when searching for registration type data in an AST context.
Underlying Base Objects
The view is defined over the following documented base objects:
HZ_PARTIES(SYNONYM) — the master party entity; drives party name, number, type, status, category, and order history metrics.HZ_ORGANIZATION_PROFILES(SYNONYM) — the organization-specific profile extension holding firmographic and financial attributes, outer-joined toHZ_PARTIESvia aPARTY_ID(+)outer join.AR_LOOKUPS(VIEW) — used repeatedly (aliased LKUP through LKUP7) as a lookup decode source for category, ownership, legal status, registration type, and certification level.
The view restricts PARTY.PARTY_TYPE to 'ORGANIZATION', and all lookup joins are outer joins keyed on their respective LOOKUP_TYPE and LOOKUP_CODE pairs.
Key Columns
- Party identity:
PARTY_ID,PARTY_NUMBER,PARTY_NAME,PARTY_TYPE,STATUS,CATEGORY_CODE. - Organization profile:
ORGANIZATION_PROFILE_ID,ORGANIZATION_NAME,KNOWN_AS,SIC_CODE,DUNS_NUMBER,YEAR_ESTABLISHED. - Registration and legal:
REGISTRATION_TYPE,TAX_REFERENCE,JGZZ_FISCAL_CODE,LEGAL_STATUS,PUBLIC_PRIVATE_OWNERSHIP_FLAG. - Commercial metrics:
TOTAL_NUM_OF_ORDERS,LAST_ORDERED_DATE,TOTAL_ORDERED_AMOUNT,CURR_FY_POTENTIAL_REVENUE,NEXT_FY_POTENTIAL_REVENUE. - Decoded meanings: the
MEANINGcolumns returned by the AR_LOOKUPS aliases, includingCERT_LEVEL_MEAN. - TCA bookkeeping:
LAST_UPDATE_DATE,CREATED_BY,OBJECT_VERSION_NUMBER,ORIG_SYSTEM_REFERENCE.
Common Use Cases and Queries
The view supports organization directory reporting, TeleSales scoring and marketing segmentation, and integration extracts that need decoded organization attributes. Filtering on REGISTRATION_TYPE is a typical requirement.
SELECT party_number,
organization_name,
registration_type,
legal_status,
duns_number
FROM apps.ast_org_profiles_v
WHERE registration_type IS NOT NULL
ORDER BY organization_name;
A second pattern aggregates order metrics for a specific organization category:
SELECT category_code,
COUNT(*) organization_count,
SUM(total_ordered_amount) total_revenue
FROM apps.ast_org_profiles_v
WHERE internal_flag = 'Y'
GROUP BY category_code;
Because the view is read-only and based on TCA synonyms, it should be queried rather than modified. For REST or interface extraction, the unique PARTY_ID is the recommended key for correlating rows back to HZ_PARTIES.
-
View: AST_ORG_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORG_PROFILES_V, object_name:AST_ORG_PROFILES_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_ORG_PROFILES_V ,
-
View: AST_ORG_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORG_PROFILES_V, object_name:AST_ORG_PROFILES_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_ORG_PROFILES_V ,
-
View: AST_LM_CKEY_PARTY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_CKEY_PARTY_V, object_name:AST_LM_CKEY_PARTY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_CKEY_PARTY_V ,
-
View: AST_LM_CKEY_ACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_CKEY_ACCT_V, object_name:AST_LM_CKEY_ACCT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_CKEY_ACCT_V ,
-
View: AST_LM_CKEY_PARTY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_CKEY_PARTY_V, object_name:AST_LM_CKEY_PARTY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_CKEY_PARTY_V ,
-
View: AST_LM_CKEY_ACCT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_CKEY_ACCT_V, object_name:AST_LM_CKEY_ACCT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_CKEY_ACCT_V ,
-
View: AST_PERSON_INTEREST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PERSON_INTEREST_V, object_name:AST_PERSON_INTEREST_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_PERSON_INTEREST_V ,
-
View: AST_PERSON_INTEREST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PERSON_INTEREST_V, object_name:AST_PERSON_INTEREST_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_PERSON_INTEREST_V ,
-
View: AST_BUSINESS_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_BUSINESS_CONTACTS_V, object_name:AST_BUSINESS_CONTACTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_BUSINESS_CONTACTS_V ,
-
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_BUSINESS_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_BUSINESS_CONTACTS_V, object_name:AST_BUSINESS_CONTACTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_BUSINESS_CONTACTS_V ,
-
View: AST_CONTACT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_POINTS_V, object_name:AST_CONTACT_POINTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CONTACT_POINTS_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 ,
-
View: AST_CONTACT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_POINTS_V, object_name:AST_CONTACT_POINTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CONTACT_POINTS_V ,
-
View: AST_LM_CKEY_TAX_EREF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_CKEY_TAX_EREF_V, object_name:AST_LM_CKEY_TAX_EREF_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_CKEY_TAX_EREF_V ,
-
View: AST_OBJECT_RELATIONSHIP_V
12.1.1
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
View: AST_OBJECT_RELATIONSHIP_V
12.2.2
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
View: AST_LM_CKEY_TAX_EREF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_CKEY_TAX_EREF_V, object_name:AST_LM_CKEY_TAX_EREF_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_CKEY_TAX_EREF_V ,
-
View: AST_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_REL_V, object_name:AST_REL_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_REL_V ,
-
View: AST_PERSON_PROFILE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PERSON_PROFILE_V, object_name:AST_PERSON_PROFILE_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_PERSON_PROFILE_V ,
-
View: AST_LM_REL_SMARTSEARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_SMARTSEARCH_V, object_name:AST_LM_REL_SMARTSEARCH_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_SMARTSEARCH_V ,
-
View: AST_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_REL_V, object_name:AST_REL_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_REL_V ,
-
View: AST_PERSON_PROFILE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PERSON_PROFILE_V, object_name:AST_PERSON_PROFILE_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_PERSON_PROFILE_V ,
-
View: AST_LM_REL_SMARTSEARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_SMARTSEARCH_V, object_name:AST_LM_REL_SMARTSEARCH_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_SMARTSEARCH_V ,
-
View: AST_PER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PER_V, object_name:AST_PER_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_PER_V ,
-
View: AST_SALES_LEAD_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_LEAD_CONTACTS_V, object_name:AST_SALES_LEAD_CONTACTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_LEAD_CONTACTS_V ,
-
View: AST_PER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PER_V, object_name:AST_PER_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_PER_V ,
-
View: AST_SALES_LEAD_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_LEAD_CONTACTS_V, object_name:AST_SALES_LEAD_CONTACTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_LEAD_CONTACTS_V ,
-
View: AST_CONTACT_RESTRICTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_RESTRICTIONS_V, object_name:AST_CONTACT_RESTRICTIONS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CONTACT_RESTRICTIONS_V ,
-
View: AST_CONTACT_RESTRICTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_RESTRICTIONS_V, object_name:AST_CONTACT_RESTRICTIONS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CONTACT_RESTRICTIONS_V ,
-
View: AST_LM_REL_QUICK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_QUICK_V, object_name:AST_LM_REL_QUICK_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_QUICK_V ,
-
View: AST_LM_REL_QUICK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_QUICK_V, object_name:AST_LM_REL_QUICK_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_QUICK_V ,
-
View: AST_LM_REL_FUZZY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_FUZZY_V, object_name:AST_LM_REL_FUZZY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_FUZZY_V ,
-
View: AST_LM_REL_FUZZY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_FUZZY_V, object_name:AST_LM_REL_FUZZY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_FUZZY_V ,
-
View: AST_LM_REL_FUZZYCNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_FUZZYCNT_V, object_name:AST_LM_REL_FUZZYCNT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_FUZZYCNT_V ,
-
View: AST_ORG_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORG_CONTACTS_V, object_name:AST_ORG_CONTACTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_ORG_CONTACTS_V ,
-
View: AST_ACCT_RELATIONSHIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ACCT_RELATIONSHIP_V, object_name:AST_ACCT_RELATIONSHIP_V, status:VALID, product: AST - TeleSales , description: AST_ACCT_RELATIONSHIP_V retrieves related accounts for a customer account. , implementation_dba_data: APPS.AST_ACCT_RELATIONSHIP_V ,
-
View: AST_ORG_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORG_CONTACTS_V, object_name:AST_ORG_CONTACTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_ORG_CONTACTS_V ,
-
View: AST_LM_REL_FUZZYCNT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_FUZZYCNT_V, object_name:AST_LM_REL_FUZZYCNT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_FUZZYCNT_V ,
-
View: AST_ACCT_RELATIONSHIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ACCT_RELATIONSHIP_V, object_name:AST_ACCT_RELATIONSHIP_V, status:VALID, product: AST - TeleSales , description: AST_ACCT_RELATIONSHIP_V retrieves related accounts for a customer account. , implementation_dba_data: APPS.AST_ACCT_RELATIONSHIP_V ,
-
View: AST_ORG_CONTACT_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORG_CONTACT_ROLES_V, object_name:AST_ORG_CONTACT_ROLES_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_ORG_CONTACT_ROLES_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: 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_ORG_CONTACT_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORG_CONTACT_ROLES_V, object_name:AST_ORG_CONTACT_ROLES_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_ORG_CONTACT_ROLES_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: 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: AST_LM_CKEY_CSI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_CKEY_CSI_V, object_name:AST_LM_CKEY_CSI_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_CKEY_CSI_V ,
-
View: AST_PARTY_RELATIONSHIPS_V
12.1.1
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,