Search Results ams_org_acct_v
Overview
AMS_ORG_ACCT_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, classified under the AMS (Marketing) product family. Its documented purpose is to expose customer account information in a flattened, denormalized form suitable for marketing operations, list generation, campaign targeting, and downstream integration. The view consolidates attributes from the Oracle Trading Community Architecture (TCA) customer model — accounts, parties, party sites, locations, and site uses — into a single queryable structure. In 12.1.1 and 12.2.2 the object is documented as VALID, and its metadata is catalogued through ETRM with the referenced base synonyms listed below. The view is widely consumed by AMS modules such as lists, campaigns, and one-to-one marketing, where account and party attributes are needed without joining the full TCA hierarchy at runtime.
Underlying Base Objects
The view is defined over the following documented base objects, all referenced through APPS synonyms: FND_TERRITORIES_TL, HZ_CUST_ACCOUNTS, HZ_CUST_ACCT_SITES_ALL, HZ_CUST_SITE_USES_ALL, HZ_LOCATIONS, HZ_PARTIES, and HZ_PARTY_SITES. HZ_CUST_ACCOUNTS supplies the account header (account number, status, customer type, class, credit and tax attributes). HZ_PARTIES and HZ_PERSON/ORGANIZATION data supply party name, party number, and person name components. HZ_PARTY_SITES and HZ_CUST_ACCT_SITES_ALL link parties to physical addresses, while HZ_LOCATIONS holds the address lines, city, state, postal code, province, county, and country. HZ_CUST_SITE_USES_ALL contributes site-use context such as the identifying address flag. FND_TERRITORIES_TL is joined to resolve the country code to a territory short name for the COUNTRY_NAME column. The joins are performed on CUST_ACCOUNT_ID, PARTY_ID, PARTY_SITE_ID, and location identifiers, producing one row per account site-use combination.
Key Columns
- Account identity: CUST_ACCOUNT_ID, ACCOUNT_NUMBER, ACCOUNT_NAME, ACCOUNT_REPLICATION_KEY, ORIG_SYSTEM_REFERENCE, MAJOR_ACCOUNT_NUMBER.
- Party identity: PARTY_ID, PARTY_NAME, PARTY_NUMBER, PERSON_FIRST_NAME, PERSON_MIDDLE_NAME, PERSON_LAST_NAME, PERSON_NAME_SUFFIX, SALUTATION, PERSON_TITLE.
- Address: ADDRESS1 through ADDRESS4, CITY, STATE, POSTAL_CODE, PROVINCE, COUNTY, COUNTRY, COUNTRY_NAME, URL.
- Site context: PARTY_SITE_ID, PARTY_SITE_NAME, REGION, MAILSTOP, LANGUAGE, IDENTIFYING_ADDRESS_FLAG.
- Commercial attributes: STATUS, CUSTOMER_TYPE, CUSTOMER_CLASS_CODE, SALES_CHANNEL_CODE, TAX_CODE, PAYMENT_TERM_ID, FREIGHT_TERM, FOB_POINT, SHIP_VIA, SHIP_PARTIAL, PRIMARY_SALESREP_ID, PRIMARY_SPECIALIST_ID, SECONDARY_SPECIALIST_ID.
- Lifecycle and watch attributes: ACCOUNT_ESTABLISHED_DATE, HELD_BILL_EXPIRATION_DATE, HOLD_BILL_FLAG, WATCH_ACCOUNT_FLAG, WATCH_BALANCE_INDICATOR, HIGH_PRIORITY_INDICATOR, HOTWATCH_SERVICE_FLAG, HOTWATCH_SVC_BAL_IND.
- Columns returned as NULL: ACCOUNT_LIABLE_FLAG, CURRENT_BALANCE, ACCOUNT_TERMINATION_DATE, ACCOUNT_ACTIVATION_DATE, DEPARTMENT, REALTIME_RATE_FLAG, and notably ACCT_LIFE_CYCLE_STATUS. This last column is the reason many searches resolve to this view: ACCT_LIFE_CYCLE_STATUS is projected as a literal NULL rather than sourced from HZ_CUST_ACCOUNTS. Callers expecting a populated lifecycle value should derive status from HCA.STATUS or query the underlying account tables directly.
- Audit columns: CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE.
Common Use Cases and Queries
Typical uses include building AMS list membership sources, campaign audience extracts, and account reconciliation reports. Because ACCT_LIFE_CYCLE_STATUS is NULL, code that filters on lifecycle status must fall back to STATUS or join HZ_CUST_ACCOUNTS directly.
Sample query to retrieve active accounts with address and lifecycle context:
- SELECT cust_account_id, account_number, party_name, city, state, country_name, status, account_established_date FROM ams_org_acct_v WHERE status = 'A' ORDER BY party_name;
- SELECT account_number, party_number, customer_type, customer_class_code, primary_salesrep_id FROM ams_org_acct_v WHERE identifying_address_flag = 'Y';
- SELECT party_id, party_name, email_address, country_name FROM ams_org_acct_v WHERE cust_account_id = :account_id;
Because the view joins multiple TCA tables, queries benefit from filters on CUST_ACCOUNT_ID, PARTY_ID, or STATUS to limit the row set. Reporting layers should treat the NULL-valued columns as placeholders and avoid depending on them for lifecycle or balance logic in both 12.1.1 and 12.2.2.
-
View: AMS_ORG_ACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_ACCT_V, object_name:AMS_ORG_ACCT_V, status:VALID, product: AMS - Marketing , description: Customer account information , implementation_dba_data: APPS.AMS_ORG_ACCT_V ,
-
View: AMS_ORG_ACCT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_ACCT_V, object_name:AMS_ORG_ACCT_V, status:VALID, product: AMS - Marketing , description: Customer account information , implementation_dba_data: APPS.AMS_ORG_ACCT_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.FND_TERRITORIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_TERRITORIES_TL, status:VALID,
-
SYNONYM: APPS.FND_TERRITORIES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_TERRITORIES_TL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES_ALL, status:VALID,
-
VIEW: APPS.AMS_ORG_ACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_ACCT_V, object_name:AMS_ORG_ACCT_V, status:VALID,
-
VIEW: APPS.AMS_ORG_ACCT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_ACCT_V, object_name:AMS_ORG_ACCT_V, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
eTRM - AMS Tables and Views
12.2.2
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - AMS Tables and Views
12.1.1
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
eTRM - AMS Tables and Views
12.2.2
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
eTRM - AMS Tables and Views
12.1.1
description: This table is used to store tracking data for web advertisement and offer type schedules ,