Search Results as_accesses
Overview
AS_ACCESSES is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the AS – Sales Foundation product family. The view exposes employee access records for accounts and opportunities and is described in the Oracle ETRM documentation as multi-org enabled. In 12.1.1 and 12.2.2 it presents a filtered projection of the underlying access data, and its object status is documented as VALID. It is not a table in its own right; it is a read-only query layer intended to simplify access by application code, reports, and interfaces.
Its most significant structural characteristic is the built-in filter on DELETE_FLAG. Because soft-deleted access records are excluded, the view presents only currently active access assignments. This makes it the recommended entry point for any reporting requirement that must reflect live team membership rather than the full historical access population.
Underlying Base Objects
The view is defined over a single referenced base object, the synonym AS_ACCESSES_ALL_ALL, which resolves to the underlying multi-org access table in the AS schema. The projection selects all significant business and audit columns from that object and applies the predicate DELETE_FLAG IS NULL. Consequently, any row visible in AS_ACCESSES exists in AS_ACCESSES_ALL_ALL and is not logically deleted.
Because the base object carries the multi-org discriminator ORG_ID, the view is also multi-org aware. Querying it does not automatically enforce operating unit security; callers must filter on ORG_ID, or rely on row-level security applied at the base object level, to restrict results to the appropriate operating unit. Audit columns such as LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, and LAST_UPDATE_LOGIN are passed through unchanged, as are the concurrent program context columns REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, and PROGRAM_UPDATE_DATE.
Key Columns
- ACCESS_ID – Primary identifier for the access record; the key used to join back to the base table for columns not exposed by the view.
- ACCESS_TYPE – Classifies the nature of the access grant, distinguishing account, opportunity, and related assignment categories.
- CUSTOMER_ID, ADDRESS_ID – Identify the account (and address) to which access applies.
- LEAD_ID, SALES_LEAD_ID – Identify the opportunity or lead associated with the access record.
- PERSON_ID, SALESFORCE_ID, SALES_GROUP_ID – Identify the resource, salesforce membership, and sales group granted access.
- PARTNER_CUSTOMER_ID, PARTNER_ADDRESS_ID, PARTNER_CONT_PARTY_ID – Identify channel partner context for partner-related access records.
- TEAM_LEADER_FLAG, FREEZE_FLAG, REASSIGN_FLAG – Control flags indicating team leadership, frozen access, and reassignment state.
- FREEZE_DATE, REASSIGN_REASON, REASSIGN_REQUESTED_PERSON_ID, REASSIGN_REQUEST_DATE – Supporting attributes of the freeze and reassignment process.
- SALESFORCE_ROLE_CODE, SALESFORCE_RELATIONSHIP_CODE – Role and relationship classification within the salesforce.
- CREATED_PERSON_ID, INTERNAL_UPDATE_ACCESS, DOWNLOADABLE_FLAG – Provenance and update/download control attributes.
- ORG_ID – Operating unit discriminator for multi-org filtering.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 – DFF (descriptive flexfield) context and segment columns.
Common Use Cases and Queries
Typical uses include reporting on active account and opportunity team membership, validating salesforce role assignments, reconciling access after reassignment, and extracting access data for downstream integration or data warehousing. The following query returns current team leader assignments for a given account within a single operating unit:
SELECT access_id, customer_id, person_id, salesforce_role_code, team_leader_flag
FROM apps.as_accesses
WHERE customer_id = :customer_id
AND org_id = :org_id
AND team_leader_flag = 'Y';
A second, frequently used pattern retrieves all active opportunity access for a resource:
SELECT a.access_id, a.lead_id, a.access_type, a.creation_date
FROM apps.as_accesses a
WHERE a.person_id = :person_id
AND a.org_id = :org_id;
Because the DELETE_FLAG predicate is already applied, no additional deletion filter is required. However, callers requiring soft-deleted or historical records must query AS_ACCESSES_ALL_ALL directly. The view is Oracle proprietary and confidential, and all published access should respect the documented implementation notes for the 12.1.1 and 12.2.2 releases.
-
View: AS_ACCESSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_ACCESSES, object_name:AS_ACCESSES, status:VALID, product: AS - Sales Foundation , description: Contains employee access records for accounts and opportunities (multi-org). , implementation_dba_data: APPS.AS_ACCESSES ,
-
View: AS_ACCESSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_ACCESSES, object_name:AS_ACCESSES, status:VALID, product: AS - Sales Foundation , description: Contains employee access records for accounts and opportunities (multi-org). , implementation_dba_data: APPS.AS_ACCESSES ,
-
VIEW: APPS.AS_TERRITORY_ACCESSES_V
12.2.2
-
Table: AS_MOBILE_ACCESSES
12.2.2
product: AS - Sales Foundation , description: Used by Mobile OSM. Corresponds to AS_ACCESSES. DML on this table can only though triggers at master DB (not by Appl) , implementation_dba_data: Not implemented in this database ,
-
Table: AS_MOBILE_ACCESSES
12.1.1
product: AS - Sales Foundation , description: Used by Mobile OSM. Corresponds to AS_ACCESSES. DML on this table can only though triggers at master DB (not by Appl) , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.AS_ACCESSES_ALL_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_ACCESSES_ALL_ALL, status:VALID,
-
VIEW: APPS.AS_TERRITORY_ACCESSES_V
12.1.1
-
SYNONYM: APPS.AS_ACCESSES_ALL_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_ACCESSES_ALL_ALL, status:VALID,
-
PACKAGE BODY: APPS.PV_MATCH_V2_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PV_MATCH_V2_PUB, status:VALID,
-
PACKAGE BODY: APPS.PV_MATCH_V2_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PV_MATCH_V2_PUB, status:VALID,
-
PACKAGE BODY: APPS.AS_OPP_SALES_CREDIT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AS_OPP_SALES_CREDIT_PVT, status:VALID,
-
PACKAGE BODY: APPS.AS_ACCESS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AS_ACCESS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AS_OPP_SALES_CREDIT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AS_OPP_SALES_CREDIT_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AS_ACCESS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AS_ACCESS_PVT, status:VALID,
-
APPS.IEX_CASE_OWNER_PUB SQL Statements
12.1.1
-
APPS.IEX_CASE_OWNER_PUB SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
View: AS_TERRITORY_ACCESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_TERRITORY_ACCESSES_V, object_name:AS_TERRITORY_ACCESSES_V, status:VALID, product: AS - Sales Foundation , description: Territory accesses view , implementation_dba_data: APPS.AS_TERRITORY_ACCESSES_V ,
-
View: AS_TERRITORY_ACCESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_TERRITORY_ACCESSES_V, object_name:AS_TERRITORY_ACCESSES_V, status:VALID, product: AS - Sales Foundation , description: Territory accesses view , implementation_dba_data: APPS.AS_TERRITORY_ACCESSES_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
APPS.IEX_DUNNING_PVT SQL Statements
12.1.1
-
APPS.AS_OPP_SALES_CREDIT_PVT SQL Statements
12.1.1
-
APPS.AS_OPP_SALES_CREDIT_PVT SQL Statements
12.2.2
-
VIEW: APPS.AS_ACCESSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_ACCESSES, object_name:AS_ACCESSES, status:VALID,
-
VIEW: APPS.AS_TERRITORY_ACCESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_TERRITORY_ACCESSES_V, object_name:AS_TERRITORY_ACCESSES_V, status:VALID,
-
VIEW: APPS.AS_TERRITORY_ACCESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_TERRITORY_ACCESSES_V, object_name:AS_TERRITORY_ACCESSES_V, status:VALID,
-
VIEW: APPS.AS_ACCESSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_ACCESSES, object_name:AS_ACCESSES, status:VALID,
-
VIEW: APPS.AS_SALES_TEAM_PTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_TEAM_PTR_V, object_name:AS_SALES_TEAM_PTR_V, status:VALID,
-
VIEW: APPS.AS_SALES_TEAM_DISTINCT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_TEAM_DISTINCT_V, object_name:AS_SALES_TEAM_DISTINCT_V, status:VALID,
-
APPS.IEX_UTILITIES SQL Statements
12.1.1
-
VIEW: APPS.AS_SALES_TEAM_DISTINCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_TEAM_DISTINCT_V, object_name:AS_SALES_TEAM_DISTINCT_V, status:VALID,
-
VIEW: APPS.AS_SALES_TEAM_PTR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_TEAM_PTR_V, object_name:AS_SALES_TEAM_PTR_V, status:VALID,
-
VIEW: APPS.AS_SALES_TEAM_EMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_TEAM_EMP_V, object_name:AS_SALES_TEAM_EMP_V, status:VALID,
-
VIEW: APPS.AS_SALES_TEAM_EMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_TEAM_EMP_V, object_name:AS_SALES_TEAM_EMP_V, status:VALID,
-
APPS.AS_ACCESS_PVT SQL Statements
12.2.2
-
APPS.AS_GAR_LEADS_PUB SQL Statements
12.1.1
-
APPS.AS_ACCESS_PVT SQL Statements
12.1.1
-
APPS.AS_GAR_OPPTYS_PUB SQL Statements
12.2.2
-
APPS.AS_GAR_OPPTYS_PUB SQL Statements
12.1.1
-
APPS.PV_MATCH_V2_PUB dependencies on AS_ACCESSES
12.2.2
-
APPS.AS_OPP_SALES_CREDIT_PVT dependencies on AS_ACCESSES
12.2.2
-
APPS.AS_ACCESS_PVT dependencies on AS_ACCESSES
12.1.1
-
APPS.AS_OPP_SALES_CREDIT_PVT dependencies on AS_ACCESSES
12.1.1
-
APPS.AS_ACCESS_PVT dependencies on AS_ACCESSES
12.2.2
-
APPS.PV_MATCH_V2_PUB dependencies on AS_ACCESSES
12.1.1
-
APPS.AS_GAR_LEADS_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IEX_CASE_OWNER_PUB
12.2.2
-
PACKAGE BODY: APPS.IEX_CASE_OWNER_PUB
12.1.1