Search Results fnd_file
Overview
FND_FILE is the foundational Oracle EBS PL/SQL package responsible for concurrent program file I/O. Its package body in the APPS schema provides the interface through which concurrent programs, reports, and log-writing routines create, open, write to, and close temporary output and log files managed by the concurrent manager. Rather than writing directly to the operating system, callers invoke FND_FILE, which abstracts the physical file location and naming conventions, tracks open file handles, and resolves the log and output file identifiers assigned by the concurrent manager at runtime. In Oracle EBS 12.1.1 and 12.2.2 the package remains a core, VALID object in the APPLSYS/APPS code environment and is a mandatory dependency for the majority of concurrent-enabled PL/SQL, including Oracle Reports and BI Publisher integration paths. The ETRM metadata records an API classification of OTHER and documents eight public procedures and functions.
Key Procedures and Functions
- PUT — Writes a string to the currently open log or output file without appending a newline; the low-level write primitive.
- PUT_LINE — Writes a string followed by a newline, the most commonly used routine for both log and output text.
- NEW_LINE — Emits a line terminator to the active file, used to separate logical blocks of output.
- PUT_NAMES — Registers the logical file names and associated file types with the package so subsequent write calls resolve to the correct physical handles.
- GET_NAMES — Returns the currently registered file names and types, allowing callers to inspect or reuse the active assignment.
- RELEASE_NAMES — Releases the registered file names, clearing state after processing completes or when switching output targets.
- CLOSE — Closes an open file handle and flushes pending buffered content.
- IS_OPEN — Returns whether a given file handle or logical name is currently open, supporting defensive coding around write calls.
Tables Accessed
FND_FILE resolves its physical filenames through FND_TEMP_FILES and its sequence FND_TEMP_FILES_S. The sequence supplies unique identifiers for temporary file rows, while FND_TEMP_FILES stores the metadata that maps a concurrent request's logical output and log names to concrete operating-system paths. Because the user searched for fnd_temp_files_s, it is worth noting that this sequence is a direct, documented dependency of the FND_FILE package body; every file registration ultimately consumes it. FND_FILE additionally references DUAL, V$PARAMETER (to determine database-level directory and file settings), and the UTL_FILE and UTL_RAW built-ins for physical I/O. FND_TEMP_FILES is accessed through an APPS synonym and is the persistent bridge between the concurrent manager's file allocation and the package's runtime handles.
Usage Notes
FND_FILE is invoked almost exclusively from within concurrent program logic. A typical pattern calls FND_FILE.PUT_NAMES to bind the request's log and output files, writes diagnostic and report lines with PUT_LINE or PUT, then CLOSE and RELEASE_NAMES to finish. It is referenced by 2390 other database objects, reflecting its ubiquity across seeded and custom concurrent programs. Direct invocation from Oracle Forms is uncommon; instead, forms submit concurrent requests whose programs call FND_FILE internally. Custom code should treat the package as a stable, supported utility and avoid writing to FND_TEMP_FILES directly, relying instead on the documented procedures above. The FND_FILE_PRIVATE and FND_CONC_PRIVATE_UTILS packages, also documented as dependencies, perform the lower-level handle management behind this public API.
-
Lookup Type: UTL_FILE_MODE
12.2.2
product: FND - Application Object Library , meaning: UTL_FILE Mode used in FND_FILE , description: UTL_FILE Mode used in FND_FILE ,
-
PACKAGE BODY: APPS.FND_FILE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_FILE, status:VALID,
-
PACKAGE BODY: APPS.FND_FILE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_FILE, status:VALID,
-
Lookup Type: PRP_ATTACHMENT_CONTENT_TYPE
12.1.1
product: PRP - Proposals , meaning: Attachment Content Type , description: Attachment Content Type ,
-
Lookup Type: PRP_ATTACHMENT_CONTENT_TYPE
12.2.2
product: PRP - Proposals , meaning: Attachment Content Type , description: Attachment Content Type ,
-
SYNONYM: APPS.FND_TEMP_FILES_S
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_TEMP_FILES_S, status:VALID,
-
SYNONYM: APPS.FND_TEMP_FILES_S
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_TEMP_FILES_S, status:VALID,
-
SYNONYM: APPS.FND_TEMP_FILES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_TEMP_FILES, status:VALID,
-
PACKAGE: APPS.FND_CONC_PRIVATE_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_CONC_PRIVATE_UTILS, status:VALID,
-
SYNONYM: APPS.FND_TEMP_FILES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_TEMP_FILES, status:VALID,
-
PACKAGE: APPS.CSF_SPATIAL_TTSP_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CSF_SPATIAL_TTSP_PUB, status:VALID,
-
PACKAGE: APPS.CSF_TDS_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CSF_TDS_PUB, status:VALID,
-
PACKAGE: APPS.CSF_TDS_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CSF_TDS_PUB, status:VALID,
-
PACKAGE: APPS.FND_CONC_PRIVATE_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_CONC_PRIVATE_UTILS, status:VALID,
-
PACKAGE: APPS.CSF_SPATIAL_DATALOAD_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CSF_SPATIAL_DATALOAD_PVT, status:VALID,
-
PACKAGE BODY: APPS.JE_IT_TAX_EX_UPGRADE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JE_IT_TAX_EX_UPGRADE, status:VALID,
-
PACKAGE BODY: APPS.GMP_FORM_EFF_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMP_FORM_EFF_PKG, status:VALID,
-
PACKAGE: APPS.FND_FILE_PRIVATE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_FILE_PRIVATE, status:VALID,
-
PACKAGE BODY: APPS.QP_UPDATE_MOBILE_DOWNLOAD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QP_UPDATE_MOBILE_DOWNLOAD, status:VALID,
-
PACKAGE BODY: APPS.MSD_CONC_LOG_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_CONC_LOG_UTIL, status:VALID,
-
PACKAGE: APPS.CSF_TASK_ADDRESS_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CSF_TASK_ADDRESS_PVT, status:VALID,
-
PACKAGE BODY: APPS.MSD_CONC_LOG_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_CONC_LOG_UTIL, status:VALID,
-
PACKAGE BODY: APPS.BIS_RSG_MVLOG_MGT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_RSG_MVLOG_MGT, status:VALID,
-
PACKAGE BODY: APPS.CS_PURGE_KM_SESSION_ATTRS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_PURGE_KM_SESSION_ATTRS_PKG, status:VALID,
-
PACKAGE BODY: APPS.BIL_DO_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIL_DO_UTIL_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMP_FORM_EFF_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMP_FORM_EFF_PKG, status:VALID,
-
PACKAGE BODY: APPS.IEU_MSG_CON_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_MSG_CON_PVT, status:VALID,
-
PACKAGE BODY: APPS.AST_DASHBOARD_REFRESH_PACKAGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AST_DASHBOARD_REFRESH_PACKAGE, status:VALID,
-
PACKAGE BODY: APPS.JAI_PA_SETUP_DEF_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_PA_SETUP_DEF_PKG, status:VALID,
-
PACKAGE: APPS.CSF_SPATIAL_TTSP_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CSF_SPATIAL_TTSP_PVT, status:VALID,
-
PACKAGE BODY: APPS.QP_UPDATE_MOBILE_DOWNLOAD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QP_UPDATE_MOBILE_DOWNLOAD, status:VALID,
-
PACKAGE: APPS.CSF_SPATIAL_DATALOAD_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CSF_SPATIAL_DATALOAD_PUB, status:VALID,
-
PACKAGE BODY: APPS.QPR_DML_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QPR_DML_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEU_MSG_CON_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_MSG_CON_PVT, status:VALID,
-
PACKAGE BODY: APPS.GMP_ITEMS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMP_ITEMS_PKG, status:VALID,
-
PACKAGE BODY: APPS.FA_RX_CONC_MESG_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FA_RX_CONC_MESG_PKG, status:VALID,
-
PACKAGE: APPS.FND_FILE_PRIVATE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_FILE_PRIVATE, status:VALID,
-
PACKAGE BODY: APPS.SOA_DIAG_TST
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:SOA_DIAG_TST, status:VALID,
-
PACKAGE BODY: APPS.JG_UTILITY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JG_UTILITY_PKG, status:VALID,
-
PACKAGE BODY: APPS.JG_UTILITY_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JG_UTILITY_PKG, status:VALID,
-
PACKAGE BODY: APPS.FUN_UPDATE_UPGRADED_TRX_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_UPDATE_UPGRADED_TRX_PKG, status:VALID,
-
PACKAGE BODY: APPS.CS_PURGE_KM_SESSION_ATTRS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_PURGE_KM_SESSION_ATTRS_PKG, status:VALID,
-
PACKAGE BODY: APPS.OKL_CURE_REQUEST_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CURE_REQUEST_PUB, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_INTR_INSERT_TODO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_INTR_INSERT_TODO, status:VALID,
-
PACKAGE BODY: APPS.MSD_PRICE_LIST_PP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_PRICE_LIST_PP, status:VALID,
-
PACKAGE BODY: APPS.BIX_CCI_COLLECT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIX_CCI_COLLECT, status:VALID,
-
PACKAGE BODY: APPS.PO_ASL_UPGRADE_SV3
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PO_ASL_UPGRADE_SV3, status:VALID,
-
PACKAGE BODY: APPS.AMW_PURGE_MVIEW_LOG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_PURGE_MVIEW_LOG, status:VALID,
-
PACKAGE BODY: APPS.PER_MX_SSAFFL_EXTRACT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_MX_SSAFFL_EXTRACT_PKG, status:VALID,
-
PACKAGE BODY: APPS.PJM_CONC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PJM_CONC, status:VALID,