APEX

Refresh Main Page on Dialog Close Using JavaScript in Oracle APEX

Introduction/ Issue:  When working with Oracle APEX, it is common to open a modal dialog for updating records. Once the update is completed and the dialog is closed, refreshing the…

Read More

Using UTL_MATCH for Fuzzy Search in Oracle APEX

Introduction Oracle APEX applications often require efficient search functionality. However, traditional SQL LIKE searches do not handle typos or similar words effectively. A fuzzy search can improve search accuracy by…

Read More

Oracle PLSQL to Generate XML Tag Using Standard Functionality

declare l_ctx dbms_xmlquery.ctxHandle; l_clob clob; begin l_ctx := dbms_xmlquery.newContext(‘select * from <TABLE_NAME>’); dbms_lob.createtemporary(:g_clob,true,dbms_lob.session); :g_clob := dbms_xmlquery.getXml(l_ctx); end;

Read More

Dynamic JSON Storage in Oracle APEX Forms

Introduction Oracle APEX applications often require storing complex, structured data in a flexible way. Instead of creating multiple tables for dynamic data structures, we can leverage JSON storage in a…

Read More

Enhancing User Experience with a Custom Loading Page in Oracle APEX

Introduction: – User experience (UX) plays a crucial role in modern web applications. A smooth and intuitive interface keeps users engaged and improves usability. One common challenge in Oracle APEX…

Read More

Preventing Duplicate Tabs in Oracle APEX Using JavaScript

Introduction: – In modern web applications, users often open multiple tabs of the same page, which can lead to session conflicts, unexpected behavior, or data inconsistencies. To ensure a smooth…

Read More

Hierarchical iframe clear error notification popup in Oracle APEX

Introduction: – This document is about how to hierarchical iframe error message clearance in Oracle APEX. When working with Oracle APEX applications, especially those that incorporate embedded iFrames to load…

Read More

How to customize calendar using APEX API in Oracle APEX

Introduction: – This document is about how to customize calendar using APEX API in Oracle APEX. FullCalendar5 is a powerful JavaScript library for displaying and managing event calendars on web…

Read More

Seamless Navigation Between Oracle APEX Applications

Introduction:– In Oracle APEX, seamless navigation between two applications without requiring users to log in again enhances user experience and efficiency. This can be achieved by securely passing authentication details…

Read More

To Wrap Heading and Column Text in Oracle APEX Interactive Grid

Introduction:     In Oracle APEX, when dealing with dynamic or lengthy data, the default behavior of column headers and cell contents may not always provide the best user experience, especially when…

Read More