Aashik Arsan / Uncategorized / 17 Feb 2026

Script to import standard purchase order

Introduction:  This blog contains an plsql interface script to import standard purchase order.   Script: DECLARE CURSOR PHEADER IS SELECT * FROM XX_PO_IMP_STG_TABLE;   CURSOR PLINE (P_PO_NUMBER VARCHAR2) IS SELECT * FROM XX_PO_IMP_STG_TA...

Read More

Aashik Arsan / Uncategorized / 17 Feb 2026

Query to get Journal Entry Reserve Ledger Report

Introduction:  This blog contains an SQL query that can be used to run the Journal Entry Reserve Ledger Report. Cause of the issue:  The business requires a report that contains Journal Entry Reserve Ledger Report with some additional columns. But...

Read More

Manikandan M / Uncategorized / 16 Feb 2026

Connect Your Oracle Cloud VCNs Like a Pro: The Complete Local Peering Gateway Guide

Everything you need to know about establishing secure, private connectivity between VCNs in OCI Introduction If you’re running applications across multiple Virtual Cloud Networks (VCNs) in Oracle Cloud Infrastructure, you’ve probably wondered how ...

Read More

Manikandan M / Uncategorized / 16 Feb 2026

Mastering Red Hat Satellite: A Complete Guide to Automated Patch Management

Streamline Your RHEL Infrastructure with Lifecycle Management and Content Views Managing a fleet of Red Hat Enterprise Linux servers can be challenging, especially when it comes to keeping systems patched, secure, and compliant. Red Hat Satellite ...

Read More

Anushka Sur / SQL Queries / 10 Feb 2026

Building an Operational Metrics Dashboard for Banking Operations

Introduction  A mid-sized financial services organization needed to provide real-time visibility into critical operational metrics across 25 branches. The operations team was managing branch performance, transaction processing efficiency, and regu...

Read More

Anushka Sur / Uncategorized / 10 Feb 2026

Optimizing Slow Transaction Query in Banking Data Analysis

Introduction A critical financial institution was facing severe performance degradation in their daily transaction analysis reports. The primary SQL query that aggregates customer transaction data and calculates spending patterns was taking 45-60 ...

Read More

Palanikumar K / Oracle Application Blog / 02 Feb 2026

Create a Dynamic List Item in Oracle Form

Procedure :- “ADD_LIST_ELEMENT‘” Using the following procedure  Syntax        ADD_LIST_ELEMENT(list_id ITEM, list_index VARCHAR2, list_label VARCHAR2, list_value VARCHAR2);  Syntax Specifications list_id: Specifies the unique ID that Oracle ...

Read More

Palanikumar K / Oracle Application Blog / 02 Feb 2026

Create a Clock Timer’s in Oracle Form

Create a Timer: Declare a variable of timer data type.      Initialize a variable with one second number data type.      Use a CREATE_TIMER built-in with the timer’s name, interval and it’s status repeats every one second on timer̵...

Read More