| Case Number | 00076674 |
| Oracle Module | General Ledger (GL) |
| EBS Version | R12 |
| Functional Area | Period Management / GL Period Statuses |
| Related Patches | None |
F (Frozen) in GL_PERIOD_STATUSES.N (Never Opened) so they can be opened normally through the period management process.GL periods were erroneously placed into Frozen status (closing_status = 'F') — possibly through a bulk period close operation or administrative error — for periods that contain no actual transaction data. Resetting the closing status to N (Never Opened) allows the periods to be opened through normal GL period management.
Run the data check queries to confirm all counts return zero for the affected periods across all transaction sources:
SELECT COUNT(*) FROM ap_invoices_all WHERE gl_date >= '<start_date>'; SELECT COUNT(*) FROM ra_cust_trx_line_gl_dist_all WHERE gl_date >= '<start_date>'; SELECT COUNT(*) FROM ap_invoice_distributions_all WHERE accounting_date >= '<start_date>'; SELECT COUNT(*) FROM mtl_material_transactions WHERE transaction_date >= '<start_date>'; SELECT COUNT(*) FROM rcv_transactions WHERE transaction_date >= '<start_date>'; SELECT COUNT(*) FROM pa_cost_distribution_lines_all WHERE gl_date >= '<start_date>';
All queries must return 0 before proceeding. Do not apply this fix if any transaction data exists in the affected periods.
Run data_fix.sql. A backup of all affected GL_PERIOD_STATUSES rows is created before any changes are made.
Update GL_PERIOD_STATUSES to set closing_status = 'N' for all periods that are currently Frozen (closing_status = 'F') starting from the affected date range.
Issue COMMIT. Verify the affected periods now show status Never Opened in the GL Open/Close Periods form and can be opened normally.
| File | Description |
|---|---|
| data_fix.sql | Pre-check queries to verify no transaction data exists in affected periods (AP, AR, inventory, receiving, PA); creates backup of GL_PERIOD_STATUSES rows; resets closing_status from 'F' (Frozen) to 'N' (Never Opened) for the affected period range. |
| Table | Action |
|---|---|
| GL_PERIOD_STATUSES | Update closing_status from 'F' to 'N' for affected periods |