Integrationintermediate

File-Based Data Import (FBDI)

Explain how FBDI enables bulk data loading into Fusion Cloud using standardized Excel templates

File-Based Data Import (FBDI) is Oracle Fusion Cloud's standard mechanism for high-volume data loading — data conversions during implementation, or recurring bulk integrations — analogous in purpose to EBS's Open Interface Tables but implemented entirely differently, since Fusion doesn't expose direct database access to customers. Oracle provides predefined Excel templates (one per business object, like Journals, Suppliers, or Items) with a macro that generates a correctly formatted CSV, zipped into a specific structure Fusion expects.

FBDI is like shipping goods through a standardized freight container system: you must pack your cargo (data) into the exact container dimensions and labeling format the shipping company (Oracle Fusion) requires, drop it at their loading dock (UCM), and then their own crane and forklift operators (ESS import process) take it from there — you can't just walk your goods directly onto the ship (database).

Key Concepts

1
The standard FBDI flow is: populate the Excel template with data, run the built-in macro to generate a .csv.zip file, upload that zip file to the UCM (Universal Content Management) server (Fusion's document repository) using either the UI or REST API, then submit the appropriate Import Scheduled Process (like 'Import Journals' or 'Load Interface File for Import') which validates and loads the staged data into interface tables and then into the final application tables — conceptually mirroring EBS's staging-then-import pattern.
UCM (Universal Content Management)Import Scheduled Process.csv.zip
2
For high-volume or recurring integrations, the entire flow can be automated end-to-end: a program (custom code, OIC, or another tool) builds the CSV file matching the template's exact column layout, zips it, uploads to UCM via REST, and triggers the ESS (Enterprise Scheduler Service) job via REST — no manual Excel interaction required in production automation scenarios.
3
Interviewers frequently probe whether a candidate understands both the manual (Excel template, for one-time conversions) and automated (programmatic CSV generation, for recurring integrations) uses of FBDI, and can explain the sequence: stage file → upload to UCM → submit import process → check status/errors.