Analytics Catalog/Oracle Fusion ERP/Reports under version control
Explore the catalogModulesReporting tools guideThe export ceilingThe report that lies quietly
Oracle Fusion · Reporting operations · Reference

Reports under version control, deployed like software

Custom financial reports are code: queries, layouts, parameters, permissions. Most teams still deploy them by hand, one file at a time, through a web screen. This is the pipeline pattern that ends that, as implemented in production.

RuleA report deploys with its data model and its permissions, from version control, after a diff a reviewer has read, over a backup taken first.
Neverlet a pipeline write to production unattended. Every stage is a button a named person presses; the automation does the mechanics, people keep the judgment.
The manual failure modessix habits, each one a production incident waiting.
Manual habitWhat it breaks
Archives in shared foldersNo version history, no diffs, no way to see what changed between releases.
One object at a time archive and unarchiveReports deployed without their paired data models, and nobody notices until the render fails with the missing-definition error Oracle support note 3046302.1 documents.
Permissions re-applied by handAfter every unarchive, roles are granted again manually; omissions surface as access tickets, and Oracle support note 2391562.1 covers reports that still fail to render after the grants.
No backup before deployA broken deploy leaves no clean version to restore. The rollback is an archaeology project.
Review by eyeballTwo browser tabs and good intentions instead of a readable diff of the query and layout.
Audit trail by emailWho changed what, when, and why lives in inboxes and calendars, unanswerable at audit.

None of this is one team’s bad luck. How to migrate reports between environments without the one-at-a-time archive ritual is a recurring Oracle customer-forum question spanning at least 2019 to 2024, and a small industry of automation scripts exists purely to work around it. Oracle’s own documentation positions the catalog utility for use with an outside source-control tool, which says plainly that the product ships without versioning of its own.

Each habit above has caused real production incidents in the field, practitioner-reported. The fix is not more care. It is removing the manual mechanics entirely, the same way software teams did a decade ago.

The pipeline, stage by stagefour stages, every one gated by a person.
Sync dev to version control Diff read before any write Backup, deploy target saved first Verify or roll back, one click
Development to test to production, the same four stages every time. Nothing runs unattended; every arrow is a person pressing a button.
StageWhat happens
SyncReports, their data models, and their permissions are pulled together from the development environment through the catalog service and committed to version control, tied to a change request.
DiffA side-by-side, browser-readable diff of query, layout, and parameters is generated against the target environment before any write. Reviewers read changes instead of eyeballing two tabs.
Backup, deployThe target version is backed up first and retained for a fixed window, then the new version and its permissions deploy together. Permissions are captured before and after; a mismatch fails the pipeline.
Verify, roll backFiles and renders are confirmed in place. If anything is wrong, one click restores the pre-deploy backup.

Promotion runs development to a sandbox on production to live paths, with the same backup-deploy-verify pattern at each hop. The path can grow gates, a dedicated staging tier, sign-offs, deploy windows, without changing the stages themselves.

What the auditor getsthe SOX control families, provided by construction.
ControlHow the pipeline provides it
Change historyEvery version of every report in version control, with diffs between any two releases.
Segregation of dutiesThe developer edits; a different named person presses each gate; the log records who pressed what, when, under which change request.
RecoverabilityA pre-deploy backup exists for every write, retained on a stated window, restorable in one click.
Access integrityPermissions travel with the report and are verified after deploy; drift fails loudly instead of surfacing as tickets.

These four rows are the control families a SOX walkthrough tests on report changes: change management, segregation of duties, recoverability, and access. The manual process fails them one interview at a time; the pipeline provides them by construction, and the evidence is the pipeline log rather than a folder of screenshots assembled the week before the audit.

This is the same discipline this catalog applies to numbers, applied to the reports that produce them: versioned, diffed, tied, and reversible. Which reporting tool the pipeline serves matters less than the pattern; the reporting tools guide covers the tool choice itself.

The recordthe known issues, linked at the source.
Known issueOn the record
Teams ask for automated migrationOracle customer-forum threads 579561, 707069, and 21523, spanning 2019 to 2024.
Data model lost or unlinked after a moveOracle support notes 3046302.1, 2789165.1, and 2924399.1; forum thread 15998.
Report fails to render despite granted permissionOracle support note 2391562.1; recurring permission threads 482381 and 810746.
Archive and unarchive drops folder permissionsForum thread 816304 reports permissions not copied even with the keep-permissions option; unarchived content inherits the target folder’s grants per Oracle’s own docs.
Environment refreshes wipe catalog workThreads 807258 and 493128: archiving the Custom folder before every refresh is standard survival advice, done by hand.
Patches overwrite delivered-folder editsOracle support note 2412231.1 made shipped catalog content read-only outright; only content in the Custom folder survives updates. The canonical migration guidance is support note 1572602.1.
No native versioning or rollbackOracle’s own catalog utility documentation positions it for use with outside source control; the moving-catalog-objects chapter describes the manual path this pipeline replaces.

That is the case in the vendor’s own words and its customers’ own threads. The pipeline on this page is the standing answer to every row.

Use case
Problem
Custom report deploys are manual, unversioned, and unaudited: reports ship without their data models, permissions reset silently, and a bad deploy has nothing to roll back to.
What we build
The pipeline pattern on this page, on your repository and your environments: sync, diff, backup-deploy, verify, with a person at every gate.
What you get
Report releases that behave like software releases: reviewed from a diff, recoverable in one click, and answerable at audit from one log.
Still deploying reports one file at a time through a web screen?
We ship this pipeline on your environments, gates and all.
Talk to us
Terms on this page
CI/CD
Continuous integration and delivery: changes flow through automated, repeatable pipeline stages instead of manual steps.
ERP
Enterprise resource planning, the system whose reports this pipeline moves.
data model
The query half of a report. Deploys with its layout, or the render breaks.
diff
A readable comparison of two versions: what changed, line by line.
version control
The repository holding every version of every report, forever.
change request
The ticket a release answers to. Every pipeline action links back to one.
gate
A stage that waits for a named person to press the button.
rollback
Restoring the pre-deploy backup. Here, one click.
SOX
Sarbanes-Oxley, the United States law behind financial reporting controls and audits.