Search Results collection_call_id
Overview
APPS.ARFV_COLLECTION_CALLS is a reporting view in the Oracle E-Business Suite Receivables (AR) module, registered under the FND Design Data reference AR.ARFV_COLLECTION_CALLS. It presents collection call activity recorded against customers, combining call details, customer information, collector details, and the associated operating unit into a single denormalised structure intended for inquiry and reporting. The view carries a status of VALID and is owned by the APPS schema. The "ARFV" prefix indicates that it belongs to the family of Receivables reporting views that Oracle ships for its standard application forms and reports. As with other objects in this family, Oracle flags it as Internal Use Only: Oracle Corporation does not support direct access to application data through this object except from standard Oracle Applications programs. The primary key exposed by the view is COLLECTION_CALL_ID, a NUMBER(15) column that uniquely identifies each collection call. In EBS 12.1.1 and 12.2.2 the view is available in the APPS schema and is queried by collection and credit management functionality.
Underlying Base Objects
The view is defined over a set of base objects, all referenced through APPS synonyms. The transactional core is AR_CUSTOMER_CALLS, which stores the collection call records themselves, and AR_NOTES, which holds the free-text notes attached to those calls. AR_COLLECTORS supplies the collector assignment referenced by COLLECTOR_ID. Customer and site information is sourced from the TCA (Trading Community Architecture) model: HZ_CUST_ACCOUNTS, HZ_CUST_ACCOUNT_ROLES, HZ_CUST_SITE_USES, HZ_PARTIES, HZ_ORG_CONTACTS, and HZ_RELATIONSHIPS. Operating unit context is resolved through HR_ALL_ORGANIZATION_UNITS, with AP listed as an additional dependency. This relationship means the view performs the joins required to present a collection call together with the responsible collector, the contacted party and location, and the correct operating unit, without requiring the caller to reconstruct those joins manually.
Key Columns
- COLLECTION_CALL_ID — NUMBER(15) primary identifier of the collection call.
- CALL_DATE / CALL_TIME — the date and time the call was placed.
- _LA:CALL_STATUS, _LA:CUSTOMER_RESPONSE, _LA:OUTCOME, _LA:FOLLOW_UP_ACTION, _LA:FOLLOW_UP_COMPLETE_FLAG — translated (language) lookup display values decoded from the underlying codes.
- CUSTOMER_LOCATION, CUSTOMER_NAME, CUSTOMER_CONTACT_NAME — customer site, account name, and contact name.
- COLLECTOR_NAME, COLLECTOR_ID — the collector who made the call.
- NOTES — VARCHAR2(2000) free-text conversation notes.
- PROMISE_DATE, PROMISE_AMOUNT — a promise to pay captured during the call.
- FORECAST_DATE, FORECAST_COLLECTIBLE_PERCENT — forecasted collectibility information.
- FOLLOW_UP_DATE — scheduled follow-up date.
- CUSTOMER_ID, CONTACT_ID, ORG_ID — foreign keys to the customer, contact, and operating unit.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY — standard audit columns.
Common Use Cases and Queries
Typical uses include collections productivity reporting, promise-to-pay tracking, and follow-up monitoring. Because the columns are exposed in plain form, standard SQL applies.
Retrieve a single call by identifier:
- SELECT COLLECTION_CALL_ID, CALL_DATE, CUSTOMER_NAME, COLLECTOR_NAME, PROMISE_DATE, PROMISE_AMOUNT FROM APPS.ARFV_COLLECTION_CALLS WHERE COLLECTION_CALL_ID = :p_call_id;
List calls for a customer, filtered by operating unit and date range:
- SELECT CALL_DATE, CUSTOMER_CONTACT_NAME, _LA:OUTCOME, NOTES FROM APPS.ARFV_COLLECTION_CALLS WHERE CUSTOMER_ID = :p_customer_id AND ORG_ID = :p_org_id AND CALL_DATE BETWEEN :p_from AND :p_to ORDER BY CALL_DATE;
Outstanding follow-ups can be identified by filtering on FOLLOW_UP_DATE and the follow-up complete flag, while collector workload is assessed by grouping on COLLECTOR_NAME. All queries should respect the ORG_ID of the operating unit and the Internal Use Only restriction documented by Oracle.
-
VIEW: APPS.ARFV_COLLECTION_CALLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_COLLECTION_CALLS, object_name:ARFV_COLLECTION_CALLS, status:VALID,
-
VIEW: APPS.ARFV_COLLECTION_CALLS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_COLLECTION_CALLS, object_name:ARFV_COLLECTION_CALLS, status:VALID,
-
VIEW: APPS.ARBV_COLLECTION_CALLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_COLLECTION_CALLS, object_name:ARBV_COLLECTION_CALLS, status:VALID,
-
VIEW: APPS.ARBV_COLLECTION_CALLS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_COLLECTION_CALLS, object_name:ARBV_COLLECTION_CALLS, status:VALID,
-
View: ARFV_COLLECTION_CALLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_COLLECTION_CALLS, object_name:ARFV_COLLECTION_CALLS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_COLLECTION_CALLS ,
-
View: ARBV_COLLECTION_CALLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_COLLECTION_CALLS, object_name:ARBV_COLLECTION_CALLS, status:VALID, product: AR - Receivables , description: This shows information about telephone calls made to a customer regarding outstanding account balances. , implementation_dba_data: APPS.ARBV_COLLECTION_CALLS ,
-
View: ARBV_COLLECTION_CALLS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_COLLECTION_CALLS, object_name:ARBV_COLLECTION_CALLS, status:VALID, product: AR - Receivables , description: This shows information about telephone calls made to a customer regarding outstanding account balances. , implementation_dba_data: APPS.ARBV_COLLECTION_CALLS ,
-
View: ARFV_COLLECTION_CALLS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_COLLECTION_CALLS, object_name:ARFV_COLLECTION_CALLS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_COLLECTION_CALLS ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,