Search Results fv_ccr_data_load_pkg
Overview
The APPS.FV_CCR_DATA_LOAD_PKG package is a component of the Oracle E-Business Suite Federal Government reporting infrastructure, specifically associated with the Central Contractor Registration (CCR) integration for vendor and trading partner data. In Oracle EBS 12.1.1 and 12.2.2, CCR-related processing supports the validation, registration, and synchronization of supplier information with external government registries. The package encapsulates the programmatic logic required to ingest external CCR data files, transform their contents, and load or update the corresponding records within the EBS vendor and organization schema.
The package header carries the RCS identifier FVCCRLDS.pls 120.0, dated 2004/12/06, indicating that the package has been a stable element of the FV (Federal Vendor/CCR) module for many release cycles. As an OTHER-classified API, it is not part of Oracle's published public API surface, and its procedures are intended for controlled internal invocation rather than broad customer extension.
Key Procedures and Functions
The ETRM metadata documents two callable elements within the package:
- MAIN — The primary driver procedure. Its signature exposes parameters for file location, file name, file type, update type, a DUNS number, an XML import indicator, and an insert-data indicator. This confirms that
MAINorchestrates the end-to-end file-based load process: it accepts an external data file, determines the processing mode based on the supplied flags, and dispatches the appropriate load, update, or insert logic. The presence oferrbufandretcodeout-parameters indicates the procedure is designed to be called from an Oracle concurrent program, with standard success/failure reporting back to the concurrent manager. - GET_TERRITORY_CODE — A helper function that resolves a territory (country) code, most likely translating external CCR country references into the internal territory identifiers used by Oracle EBS. It supports the data normalization step within
MAIN.
Tables Accessed
The documented tables referenced through APPS synonyms reflect the package's role as a data-loading utility:
- FV_CCR_FILE_TEMP — A staging table holding the raw contents of the incoming file prior to validation and transformation.
- FV_CCR_BPN_CLOB_DATA — Stores CLOB-based payload data, consistent with XML or large-text CCR extracts.
- FV_CCR_VENDORS and FV_CCR_VENDORS_S — The base and secondary (translation) vendor tables where CCR supplier records are persisted.
- FV_CCR_ORGS — Stores organization-level CCR registration data.
- FV_CCR_PROCESS_GT — A global temporary table used for intermediate processing within a session.
- FV_CCR_PROCESS_REPORT — Captures processing outcomes and error reporting for review.
- FND_TERRITORIES and FND_LOOKUP_VALUES — Standard reference tables used to validate and decode territory and lookup values, supporting
GET_TERRITORY_CODE. - DUAL and PLITBLM — Utility references for scalar selection and PL/SQL table handling.
Usage Notes
FV_CCR_DATA_LOAD_PKG is not referenced by any other documented package, which indicates it is a top-level entry point rather than a reusable library. It is most appropriately invoked from a concurrent program registration, with MAIN serving as the executable procedure and its file-location, file-name, file-type, update-type, and flag parameters mapped to concurrent program arguments. The errbuf/retcode pair confirms this pattern.
Because the package is classified as OTHER and carries an noship header marker, direct custom calls should be undertaken with caution. In 12.2.2 online patching environments, any custom wrapper must respect editioning and the APPS synonym layer. Typical runtime flow is: stage the file into FV_CCR_FILE_TEMP, validate against FND_TERRITORIES and FND_LOOKUP_VALUES, process through FV_CCR_PROCESS_GT, and persist results into the vendor, organization, and report tables.
-
PACKAGE: APPS.FV_CCR_DATA_LOAD_PKG
12.1.1
-
PACKAGE: APPS.FV_CCR_DATA_LOAD_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FV_CCR_DATA_LOAD_PKG, status:VALID,
-
PACKAGE: APPS.FV_CCR_DATA_LOAD_PKG
12.2.2
-
PACKAGE: APPS.FV_CCR_DATA_LOAD_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FV_CCR_DATA_LOAD_PKG, status:VALID,
-
PACKAGE BODY: APPS.FV_CCR_DATA_LOAD_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FV_CCR_DATA_LOAD_PKG, status:VALID,
-
PACKAGE BODY: APPS.FV_CCR_DATA_LOAD_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FV_CCR_DATA_LOAD_PKG, status:VALID,
-
SYNONYM: APPS.FV_CCR_PROCESS_GT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_PROCESS_GT, status:VALID,
-
SYNONYM: APPS.FV_CCR_VENDORS_S
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_VENDORS_S, status:VALID,
-
SYNONYM: APPS.FV_CCR_PROCESS_REPORT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_PROCESS_REPORT, status:VALID,
-
SYNONYM: APPS.FV_CCR_PROCESS_REPORT
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_PROCESS_REPORT, status:VALID,
-
SYNONYM: APPS.FV_CCR_ORGS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_ORGS, status:VALID,
-
PACKAGE: APPS.FV_CCR_BPN_LOAD_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FV_CCR_BPN_LOAD_PKG, status:VALID,
-
SYNONYM: APPS.FV_CCR_VENDORS_S
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_VENDORS_S, status:VALID,
-
SYNONYM: APPS.FV_CCR_PROCESS_GT
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_PROCESS_GT, status:VALID,
-
SYNONYM: APPS.FV_CCR_FILE_TEMP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_FILE_TEMP, status:VALID,
-
SYNONYM: APPS.FV_CCR_FILE_TEMP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_FILE_TEMP, status:VALID,
-
SYNONYM: APPS.FV_CCR_BPN_CLOB_DATA
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_BPN_CLOB_DATA, status:VALID,
-
SYNONYM: APPS.FV_CCR_ORGS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_ORGS, status:VALID,
-
SYNONYM: APPS.FV_CCR_VENDORS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_VENDORS, status:VALID,
-
SYNONYM: APPS.FV_CCR_VENDORS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FV_CCR_VENDORS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.AP_APPROVAL_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AP_APPROVAL_PKG, status:VALID,
-
PACKAGE: APPS.FV_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FV_UTILITY, status:VALID,
-
PACKAGE: APPS.FV_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FV_UTILITY, status:VALID,
-
SYNONYM: APPS.FND_TERRITORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_TERRITORIES, status:VALID,
-
APPS.FV_CCR_DATA_LOAD_PKG dependencies on FV_CCR_DATA_LOAD_PKG
12.1.1
-
APPS.FV_CCR_DATA_LOAD_PKG dependencies on FV_CCR_DATA_LOAD_PKG
12.2.2
-
PACKAGE: APPS.FND_CONCURRENT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_CONCURRENT, status:VALID,
-
PACKAGE: APPS.FND_CONCURRENT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_CONCURRENT, status:VALID,
-
SYNONYM: APPS.FND_LOOKUP_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_LOOKUP_VALUES, status:VALID,
-
SYNONYM: APPS.FND_LOOKUP_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_LOOKUP_VALUES, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
PACKAGE: APPS.FND_REQUEST
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_REQUEST, status:VALID,
-
PACKAGE: APPS.FND_REQUEST
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_REQUEST, status:VALID,
-
APPS.FV_CCR_DATA_LOAD_PKG dependencies on FND_LOOKUP_VALUES
12.2.2
-
APPS.FV_CCR_DATA_LOAD_PKG dependencies on FND_LOOKUP_VALUES
12.1.1
-
PACKAGE BODY: APPS.FV_CCR_DATA_LOAD_PKG
12.1.1
-
PACKAGE BODY: APPS.FV_CCR_DATA_LOAD_PKG
12.2.2
-
PACKAGE: APPS.FND_FILE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_FILE, status:VALID,
-
PACKAGE: APPS.FND_FILE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_FILE, status:VALID,
-
PACKAGE: APPS.FND_LOG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_LOG, status:VALID,
-
PACKAGE: APPS.FND_LOG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_LOG, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
SYNONYM: PUBLIC.DUAL
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DUAL, status:VALID,
-
SYNONYM: PUBLIC.DUAL
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:DUAL, status:VALID,