Search Results person_pre_name_adjunct
Overview
AMS_LT_PERSON_DETAILS_V is an APPS-owned database view within the Oracle E-Business Suite marketing product family (AMS — Marketing). It is documented as a data source view whose purpose is to retrieve information about business-to-consumer (B2C) contacts. In the ETRM metadata for release 12.2.2 the object is registered with a status of VALID and is cataloged as a VIEW under the APPS schema, the standard owner for shared, cross-module database objects in Oracle EBS.
Functionally, the view acts as a flattened, read-only projection of person-type party records, exposing name, title, salutation, contact, address, and firmographic attributes in a single denormalized structure. Its "LT" naming convention and the presence of categorization columns such as CATEGORY_CODE and REFERENCE_USE_FLAG indicate that it is intended as a list-management or list-treatment data source, allowing marketing users to build target lists, personalization tokens, and campaign audiences from B2C contact data without joining the full normalized Trading Community Architecture (TCA) model. Because it selects only active person parties, it is well suited to operational marketing reporting and integration extracts.
Underlying Base Objects
Per the documented view text, the sole referenced base object is HZ_PARTIES, exposed in the APPS schema as a synonym. The view is defined as a straightforward SELECT over that table with two hard-coded filter predicates: STATUS = 'A' (active parties only) and PARTY_TYPE = 'PERSON' (individuals, not organizations or groups). The view therefore inherits the TCA party model's authoritative identity and contact columns and does not perform any joins to HZ_PERSON_PROFILES, HZ_LOCATIONS, or HZ_CONTACTS in the excerpted definition; the contact and address columns are drawn directly from HZ_PARTIES. Because the definition is a simple projection over a single base object, no aggregation or set operators are involved, and row counts mirror the qualifying HZ_PARTIES rows.
Key Columns
Given the user's search term "person_title", the most directly relevant column is PERSON_TITLE, which carries the party's professional or courtesy title (for example, Mr., Ms., Dr.), complemented by PERSON_ACADEMIC_TITLE for academic credentials and SALUTATION for the formatted greeting. Person name components are exposed individually: PERSON_FIRST_NAME, PERSON_LAST_NAME, PERSON_PRE_NAME_ADJUNCT, PERSON_MIDDLE_NAME, and PERSON_NAME_SUFFIX, alongside PARTY_NAME (the concatenated display name) and KNOWN_AS. Identity and reference columns include PARTY_ID, PARTY_NUMBER, ORIG_SYSTEM_REFERENCE, CUSTOMER_KEY, TAX_REFERENCE, JGZZ_FISCAL_CODE, and DUNS_NUMBER_C.
- Contact and location: EMAIL_ADDRESS, URL, COUNTRY, ADDRESS1–ADDRESS4, CITY, STATE, PROVINCE, COUNTY, POSTAL_CODE.
- Classification: SIC_CODE, SIC_CODE_TYPE, CATEGORY_CODE, REFERENCE_USE_FLAG, HQ_BRANCH_IND, GSA_INDICATOR_FLAG.
- Firmographic and transactional: TOTAL_NUM_OF_ORDERS, TOTAL_ORDERED_AMOUNT, LAST_ORDERED_DATE, EMPLOYEES_TOTAL, YEAR_ESTABLISHED, ANALYSIS_FY, FISCAL_YEAREND_MONTH, CURR_FY_POTENTIAL_REVENUE, NEXT_FY_POTENTIAL_REVENUE, TAX_NAME, LANGUAGE_NAME.
- Phonetic search: ORGANIZATION_NAME_PHONETIC, PERSON_FIRST_NAME_PHONETIC, PERSON_LAST_NAME_PHONETIC.
Common Use Cases and Queries
Typical scenarios include building B2C target lists for campaigns, supplying personalization values to marketing templates, and extracting person contact data for downstream analytics. The filter on PARTY_TYPE = 'PERSON' means organization parties are excluded automatically, so no additional predicate is required for consumer-only extracts.
Retrieve titled contacts for a mailing list:
- SELECT party_id, party_name, person_first_name, person_last_name, person_title, email_address FROM ams_lt_person_details_v WHERE person_title IS NOT NULL;
Filter by fiscal analysis period and revenue potential:
- SELECT party_number, party_name, analysis_fy, curr_fy_potential_revenue, next_fy_potential_revenue FROM ams_lt_person_details_v WHERE analysis_fy = :p_fy ORDER BY next_fy_potential_revenue DESC;
Identify high-value consumers by order history:
- SELECT party_id, party_name, total_num_of_orders, total_ordered_amount, last_ordered_date FROM ams_lt_person_details_v WHERE total_num_of_orders > 0 ORDER BY total_ordered_amount DESC;
Because the view is a synonym-backed projection, queries benefit from indexing on HZ_PARTIES primary and alternate keys; PARTY_ID remains the reliable join key back to TCA for any attributes not exposed here.
-
View: AMS_LT_PERSON_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_PERSON_DETAILS_V, object_name:AMS_LT_PERSON_DETAILS_V, status:VALID, product: AMS - Marketing , description: Data Source view to get information about b2c contacts , implementation_dba_data: APPS.AMS_LT_PERSON_DETAILS_V ,
-
View: AMS_TAR_PERSON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_PERSON_V, object_name:AMS_TAR_PERSON_V, status:VALID, product: AMS - Marketing , description: This View shows the information stored for an "AMS_PERSON" List source type. , implementation_dba_data: APPS.AMS_TAR_PERSON_V ,
-
View: AMS_LT_PERSON_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_PERSON_DETAILS_V, object_name:AMS_LT_PERSON_DETAILS_V, status:VALID, product: AMS - Marketing , description: Data Source view to get information about b2c contacts , implementation_dba_data: APPS.AMS_LT_PERSON_DETAILS_V ,
-
View: AMS_TAR_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_PERSON_V, object_name:AMS_TAR_PERSON_V, status:VALID, product: AMS - Marketing , description: This View shows the information stored for an "AMS_PERSON" List source type. , implementation_dba_data: APPS.AMS_TAR_PERSON_V ,
-
View: AMS_P_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_PERSON_V, object_name:AMS_P_PERSON_V, status:VALID, product: AMS - Marketing , description: This public view returns all entries from the HZ_PARTIES table which have a party_type of PERSON. Used for list generation. , implementation_dba_data: APPS.AMS_P_PERSON_V ,
-
View: AMS_P_PERSON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_PERSON_V, object_name:AMS_P_PERSON_V, status:VALID, product: AMS - Marketing , description: This public view returns all entries from the HZ_PARTIES table which have a party_type of PERSON. Used for list generation. , implementation_dba_data: APPS.AMS_P_PERSON_V ,
-
View: AMS_P_ORGANIZATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_ORGANIZATION_V, object_name:AMS_P_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View returns all entries from the HZ_PARTIES table which have a party_type of ORGANIZATION. Used for list generation. , implementation_dba_data: APPS.AMS_P_ORGANIZATION_V ,
-
View: AMS_P_ORGANIZATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_ORGANIZATION_V, object_name:AMS_P_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View returns all entries from the HZ_PARTIES table which have a party_type of ORGANIZATION. Used for list generation. , implementation_dba_data: APPS.AMS_P_ORGANIZATION_V ,
-
View: AMS_DM_PERSONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_PERSONS_V, object_name:AMS_DM_PERSONS_V, status:VALID, product: AMS - Marketing , description: This view is no longer used for seeded data sources. (15-Jul-2004)View used by the seeded data mining data source for persons in the Trading Community Architecture. , implementation_dba_data: APPS.AMS_DM_PERSONS_V ,
-
View: AMS_DM_PERSONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_PERSONS_V, object_name:AMS_DM_PERSONS_V, status:VALID, product: AMS - Marketing , description: This view is no longer used for seeded data sources. (15-Jul-2004)View used by the seeded data mining data source for persons in the Trading Community Architecture. , implementation_dba_data: APPS.AMS_DM_PERSONS_V ,
-
View: AMS_DM_ORGANIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_ORGANIZATIONS_V, object_name:AMS_DM_ORGANIZATIONS_V, status:VALID, product: AMS - Marketing , description: This view is no longer used for seeded data sources. (15-Jul-2004)View used by the seeded data mining data source for organizations and organization contacts in the Trading Community Architecture. , implementation_dba_data: APPS.AMS_DM_ORGANIZATIONS_V ,
-
View: AMS_ACCT_CONTACT_V
12.1.1
product: AMS - Marketing , description: This view returns all account contacts . Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ACCT_SHIP_TO_CONTACT_V
12.2.2
product: AMS - Marketing , description: This view returns primary ship to contact for an account . Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ACCT_BILL_TO_CONTACT_V
12.2.2
product: AMS - Marketing , description: This view returns primary bill to contact for an account . Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_DM_ORGANIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_ORGANIZATIONS_V, object_name:AMS_DM_ORGANIZATIONS_V, status:VALID, product: AMS - Marketing , description: This view is no longer used for seeded data sources. (15-Jul-2004)View used by the seeded data mining data source for organizations and organization contacts in the Trading Community Architecture. , implementation_dba_data: APPS.AMS_DM_ORGANIZATIONS_V ,
-
View: AMS_ACCT_SHIP_TO_CONTACT_V
12.1.1
product: AMS - Marketing , description: This view returns primary ship to contact for an account . Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_LT_ORG_CONTACT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_ORG_CONTACT_DETAILS_V, object_name:AMS_LT_ORG_CONTACT_DETAILS_V, status:VALID, product: AMS - Marketing , description: Data Source view to get information about b2b contacts , implementation_dba_data: APPS.AMS_LT_ORG_CONTACT_DETAILS_V ,
-
View: AMS_LT_ORG_CONTACT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_ORG_CONTACT_DETAILS_V, object_name:AMS_LT_ORG_CONTACT_DETAILS_V, status:VALID, product: AMS - Marketing , description: Data Source view to get information about b2b contacts , implementation_dba_data: APPS.AMS_LT_ORG_CONTACT_DETAILS_V ,
-
View: AMS_ACCTSITE_SHIP_TO_CONTACT_V
12.2.2
product: AMS - Marketing , description: This view returns primary ship to contact for an account site. Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ACCT_SITE_CONTACT_V
12.2.2
product: AMS - Marketing , description: This view returns all account site contacts . Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ACCT_CONTACT_V
12.2.2
product: AMS - Marketing , description: This view returns all account contacts . Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ACCT_BILL_TO_CONTACT_V
12.1.1
product: AMS - Marketing , description: This view returns primary bill to contact for an account . Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ACCT_SITE_CONTACT_V
12.1.1
product: AMS - Marketing , description: This view returns all account site contacts . Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ACCTSITE_BILL_TO_CONTACT_V
12.1.1
product: AMS - Marketing , description: This view returns primary bill to contact for an account site. Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ACCTSITE_BILL_TO_CONTACT_V
12.2.2
product: AMS - Marketing , description: This view returns primary bill to contact for an account site. Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ACCTSITE_SHIP_TO_CONTACT_V
12.1.1
product: AMS - Marketing , description: This view returns primary ship to contact for an account site. Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ORG_EMPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_EMPS_V, object_name:AMS_ORG_EMPS_V, status:VALID, product: AMS - Marketing , description: This view stores the details of contacts who are employees , implementation_dba_data: APPS.AMS_ORG_EMPS_V ,
-
View: AMS_ORG_EMPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_EMPS_V, object_name:AMS_ORG_EMPS_V, status:VALID, product: AMS - Marketing , description: This view stores the details of contacts who are employees , implementation_dba_data: APPS.AMS_ORG_EMPS_V ,
-
View: AMS_IBA_EMPLOYEE_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_IBA_EMPLOYEE_ORG_V, object_name:AMS_IBA_EMPLOYEE_ORG_V, status:VALID, product: AMS - Marketing , description: This view selects organization details of employees. It is used to create segments for business tobusiness users in iMarketing. , implementation_dba_data: APPS.AMS_IBA_EMPLOYEE_ORG_V ,
-
View: AMS_IBA_EMPLOYEE_ORG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_IBA_EMPLOYEE_ORG_V, object_name:AMS_IBA_EMPLOYEE_ORG_V, status:VALID, product: AMS - Marketing , description: This view selects organization details of employees. It is used to create segments for business tobusiness users in iMarketing. , implementation_dba_data: APPS.AMS_IBA_EMPLOYEE_ORG_V ,
-
View: AMS_P_CONTACT_ORG_V
12.1.1
product: AMS - Marketing , description: This view selects the organization details for a contact. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_P_CONTACT_ORG_V
12.2.2
product: AMS - Marketing , description: This view selects the organization details for a contact. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_IBA_EMPLOYEE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_IBA_EMPLOYEE_V, object_name:AMS_IBA_EMPLOYEE_V, status:VALID, product: AMS - Marketing , description: This view selects employee details of organizations. It is used to create segments for business tobusiness users in iMarketing. , implementation_dba_data: APPS.AMS_IBA_EMPLOYEE_V ,
-
View: AMS_P_CONTACT_V
12.2.2
product: AMS - Marketing , description: This view returns all Contacts for an Organization. Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_P_ACCT_BILL_TO_V
12.1.1
product: AMS - Marketing , description: This view returns the primary bill to address for an account. Used for List generation only. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_P_PARTY_CONTACT_V
12.2.2
product: AMS - Marketing , description: This view returns all party contacts . Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_P_PARTY_CONTACT_V
12.1.1
product: AMS - Marketing , description: This view returns all party contacts . Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_P_CONTACT_V
12.1.1
product: AMS - Marketing , description: This view returns all Contacts for an Organization. Used for list generation. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_IBA_EMPLOYEE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_IBA_EMPLOYEE_V, object_name:AMS_IBA_EMPLOYEE_V, status:VALID, product: AMS - Marketing , description: This view selects employee details of organizations. It is used to create segments for business tobusiness users in iMarketing. , implementation_dba_data: APPS.AMS_IBA_EMPLOYEE_V ,
-
View: AMS_P_ACCT_SHIP_TO_V
12.1.1
product: AMS - Marketing , description: This view returns the primary ship to address for an account. Used for list generation only. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_P_ACCT_SHIP_TO_V
12.2.2
product: AMS - Marketing , description: This view returns the primary ship to address for an account. Used for list generation only. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_P_ACCT_BILL_TO_V
12.2.2
product: AMS - Marketing , description: This view returns the primary bill to address for an account. Used for List generation only. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ORG_CONTACT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_CONTACT_DETAILS_V, object_name:AMS_ORG_CONTACT_DETAILS_V, status:VALID, product: AMS - Marketing , description: This view lists the details of organization contacts , implementation_dba_data: APPS.AMS_ORG_CONTACT_DETAILS_V ,
-
View: AMS_ORG_CONTACT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_CONTACT_DETAILS_V, object_name:AMS_ORG_CONTACT_DETAILS_V, status:VALID, product: AMS - Marketing , description: This view lists the details of organization contacts , implementation_dba_data: APPS.AMS_ORG_CONTACT_DETAILS_V ,
-
View: AMS_PERSON_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_PERSON_DETAILS_V, object_name:AMS_PERSON_DETAILS_V, status:VALID, product: AMS - Marketing , description: Information about parties such as people. , implementation_dba_data: APPS.AMS_PERSON_DETAILS_V ,
-
View: AMS_PERSON_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_PERSON_DETAILS_V, object_name:AMS_PERSON_DETAILS_V, status:VALID, product: AMS - Marketing , description: Information about parties such as people. , implementation_dba_data: APPS.AMS_PERSON_DETAILS_V ,
-
View: AMS_P_ACCT_CONTACT_V
12.2.2
product: AMS - Marketing , description: This view returns the primary contact for an account. Used for list generation only. , implementation_dba_data: Not implemented in this database ,
-
View: AMS_HZ_B2C_MAPPING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_HZ_B2C_MAPPING_V, object_name:AMS_HZ_B2C_MAPPING_V, status:VALID, product: AMS - Marketing , description: This view stores the mapping of ams_imp_source_lines table. This is used to populate the data from the data file. , implementation_dba_data: APPS.AMS_HZ_B2C_MAPPING_V ,
-
View: AMS_HZ_B2C_MAPPING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_HZ_B2C_MAPPING_V, object_name:AMS_HZ_B2C_MAPPING_V, status:VALID, product: AMS - Marketing , description: This view stores the mapping of ams_imp_source_lines table. This is used to populate the data from the data file. , implementation_dba_data: APPS.AMS_HZ_B2C_MAPPING_V ,
-
View: AMS_P_ACCT_GUARANTOR_V
12.1.1
product: AMS - Marketing , description: This view returns the primary guarantor for an account. Used for list generation only. , implementation_dba_data: Not implemented in this database ,