Daily Archives: March 24, 2025

Implementing Inline Child Reports in Oracle APEX Interactive Reports

Introduction/ Issue:  In Oracle APEX, users often need to display additional details related to a record without navigating to a new page. This can be achieved by creating an inline…

Read More

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

New TDS rate creation

Business requested a new TDS rate for the supplier to apply at invoice level.  Steps: Load new recovery tax rate.  Navigator: Setup and Maintenance à Financials à Manage tax codes …

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

New tax rate creation

Business requested a new VAT to apply the tax at the invoice level. Steps:   Go to Set up and Maintenance > Financials > Transaction Tax > Manage Tax Rates and…

Read More

Oracle R12 SQL Query – Price List or Fee Schedule for Customer

select HP.PARTY_NAME “Customer Name”,HCAA.ACCOUNT_NUMBER,HCAA.ACCOUNT_NAME,qph.name “Price List Name”,HCSUA.SITE_USE_CODE,HCSUA.LOCATION from qp_list_headers qph,APPS.HZ_CUST_ACCOUNTS_ALL HCAA,APPS.HZ_CUST_ACCT_SITES_ALL HCASA,APPS.HZ_CUST_SITE_USES_ALL HCSUA,APPS.HZ_PARTIES HPWhere hcaa.account_number = –Customer Account Numberand HCAA.CUST_ACCOUNT_ID = HCASA.CUST_ACCOUNT_IDand HCASA.CUST_ACCT_SITE_ID = HCSUA.CUST_ACCT_SITE_IDAND HCSUA.PRICE_LIST_ID = QPH.LIST_HEADER_IDAND HCAA.PARTY_ID=HP.PARTY_ID

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