Search Results address_status_code
Overview
AS_OPPORTUNITY_DET_ADDR_V is a Sales Foundation (AS) database view in Oracle E-Business Suite 12.1.1 and 12.2.2 that exposes opportunity header detail together with associated address and party information. The view header objects to the AS_OPPORTUNITY_DETAILS entity and joins it to party/address data, producing a denormalized projection that is convenient for reporting, integration extracts, and concurrent program queries against sales opportunity records. According to the ETRM metadata, the object is documented as a view but is marked "Not implemented in this database," meaning there is no shipped DDL in all instances; it may exist only where specific module scripts have been applied. In the 12.2.2 metadata the owner is not specified and no referenced base objects are documented, so the view text itself is the only authoritative structural definition available.
Underlying Base Objects
The documented ETRM metadata lists no explicit base tables for this view. However, the view text references the opportunity table (aliased OPP, which is AS_OPPORTUNITY or equivalent), the offer table aliased OFR (OFFER_CODE), and a party table aliased PARTY providing PARTY_NAME, PERSON_FIRST_NAME, PERSON_LAST_NAME, and the corresponding phonetic name columns. Lookup meaning is derived through aliases ASL8 (VEHICLE_RESPONSE) and ASL3 (METHODOLOGY), which correspond to FND_LOOKUP_VALUES style lookups keyed by lookup code. Because the view exposes OPP.ROWID as ROW_ID and includes the standard WHO columns plus ORG_ID, it behaves like a normal updatable-style projection over the opportunity entity, though it is intended primarily for read access.
Key Columns
- Identification: ROW_ID, LEAD_ID, LEAD_NUMBER, ORG_ID, CUSTOMER_ID, ADDRESS_ID, ORIGINAL_LEAD_ID, ORIG_SYSTEM_REFERENCE.
- Status and classification: STATUS_CODE (from OPP.STATUS), VEHICLE_RESPONSE_CODE and VEHICLE_RESPONSE (lookup meaning), BUDGET_STATUS_CODE, PRM_IND_CLASSIFICATION_CODE, PRM_LEAD_TYPE, RANK_CODE, SALES_STAGE_ID, CHANNEL_CODE, METHODOLOGY_CODE and METHODOLOGY_NAME.
- Financials: TOTAL_AMOUNT, CURRENCY_CODE, WIN_PROBABILITY, CUSTOMER_BUDGET, PRICE_LIST_ID, OFFER_ID and OFFER_CODE.
- Dates: CREATION_DATE, LAST_UPDATE_DATE, FOLLOWUP_DATE, DECISION_DATE, DECISION_TIMEFRAME_CODE.
- Customer/address: CUSTOMER_NAME, PERSON_FIRST_NAME, PERSON_LAST_NAME, and the phonetic concatenation producing CUSTOMER_NAM (the trailing truncation of CUSTOMER_NAME in the extracted text), sourced from the PARTY alias.
- Flexfields and audit: ATTRIBUTE_CATEGORY, ATTRIBUTE1 through ATTRIBUTE15, DELETED_FLAG, DELETE_ALLOWED_FLAG, NO_OPP_ALLOWED_FLAG, plus WHO columns and concurrent request identifiers.
Common Use Cases and Queries
Typical usage is a lead/opportunity address roster for selling-cycle reporting, or extracting opportunity records for integration. Note that the user query "end poverty assistant manager address" does not correspond to any documented column; END_USER_CUSTOMER_NAME, END_USER_CUSTOMER_ID and END_USER_ADDRESS_ID are the nearest documented fields, and address at the party level is surfaced through the PARTY alias rather than by a distinct assistant-manager attribute.
SELECT row_id,
lead_number,
status_code,
customer_name,
total_amount,
currency_code,
end_user_customer_name,
end_user_address_id
FROM as_opportunity_det_addr_v
WHERE org_id = :p_org_id
AND deleted_flag = 'N'
ORDER BY creation_date DESC;
SELECT a.lead_number,
a.vehicle_response,
a.methodology_name,
a.followup_date
FROM as_opportunity_det_addr_v a
WHERE a.status_code = :p_status
AND a.win_probability >= 50;
Because the metadata record lists no referenced objects and shows the view as not implemented in this database, deployments should verify the presence of the view in each environment before relying on it in custom reports or interfaces.
-
View: AS_OPPORTUNITY_DET_ADDR_V
12.1.1
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
View: AS_OPPORTUNITY_DET_ADDR_V
12.2.2
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
View: AS_CUSTOMER_ACCOUNTS_V
12.1.1
product: AS - Sales Foundation , description: Customer, accounts view used in Account form , implementation_dba_data: Not implemented in this database ,
-
View: AS_LOCATIONS_V
12.2.2
product: AS - Sales Foundation , description: Locations view , implementation_dba_data: Not implemented in this database ,
-
View: AS_CUSTOMER_ACCOUNTS_V
12.2.2
product: AS - Sales Foundation , description: Customer, accounts view used in Account form , implementation_dba_data: Not implemented in this database ,
-
View: AS_LOCATIONS_V
12.1.1
product: AS - Sales Foundation , description: Locations view , implementation_dba_data: Not implemented in this database ,
-
View: AS_OPPORTUNITIES_LIST_V
12.2.2
product: AS - Sales Foundation , description: Sales Opportunities List View , implementation_dba_data: Not implemented in this database ,
-
View: AS_OPPORTUNITIES_LIST_V
12.1.1
product: AS - Sales Foundation , description: Sales Opportunities List View , implementation_dba_data: Not implemented in this database ,
-
View: AS_LOCATION_CONTACTS_V
12.2.2
product: AS - Sales Foundation , description: Location contacts view , implementation_dba_data: Not implemented in this database ,
-
View: AS_ACCOUNT_PRIM_PHONE_V
12.1.1
product: AS - Sales Foundation , description: Shows accounts and their primary phone number , implementation_dba_data: Not implemented in this database ,
-
View: AS_ACCOUNT_PRIM_PHONE_V
12.2.2
product: AS - Sales Foundation , description: Shows accounts and their primary phone number , implementation_dba_data: Not implemented in this database ,
-
View: AS_TODO_LISTS_V
12.1.1
product: AS - Sales Foundation , description: To do lists view , implementation_dba_data: Not implemented in this database ,
-
View: AS_ACCOUNT_CONTACTS_V
12.1.1
product: AS - Sales Foundation , description: Account contacts , implementation_dba_data: Not implemented in this database ,
-
View: AS_ACCOUNT_CONTACTS_V
12.2.2
product: AS - Sales Foundation , description: Account contacts , implementation_dba_data: Not implemented in this database ,
-
View: AS_TODO_LISTS_V
12.2.2
product: AS - Sales Foundation , description: To do lists view , implementation_dba_data: Not implemented in this database ,
-
View: AS_LOCATION_CONTACTS_V
12.1.1
product: AS - Sales Foundation , description: Location contacts view , implementation_dba_data: Not implemented in this database ,