Posts by Venkatesh Balasubramanian

Query to get the details of invoice with tax information’s

Description: Query to get the details of invoice with tax information’s select ctx.customer_trx_id, case when (    hrloc.address_line_1 is not null and (   hrloc.address_line_2 is not null or hrloc.address_line_3 is not…

Read More

Query to fetch Customer Statement of Account Details

Description: Query to fetch Customer Statement of Account Details SELECT   rc.customer_name “Customer_Name”, rc.customer_number “Customer_Number”, hou.NAME operating_unit, DECODE (ps.CLASS, ‘INV’, ‘Invoice’, ‘DM’, ‘Debit Memo’, ‘DEP’, ‘Deposit’, ‘CM’, ‘Credit Memo’, ‘PMT’, ‘Receipts’…

Read More

Manual Pagination In Oracle Apex

Description: Create items to set count of rows and display Step:1: Create items to set count of rows and display Item to represent pagination. Also, create buttons to navigate different…

Read More

Losing Data During Validation In Apex Tabular Form

Description: Losing Data During Validation In Apex Tabular Form Step:1: On Submit, Before Computation and Validation – Insert into Collections. BEGIN apex_collection.add_member (p_collection_name      => ‘PDVD_MASTER_ITEM_DTLS’, p_c001                 => apex_application.g_f03 (i), p_c002                …

Read More

Key Controlled Report View in APEX

Description: This section describes how to access components in Oracle Application Express using a keyboard. Step:1:  By Default, report should not be visible, So we have added attribute to      region…

Read More

HOLD or UNHOLD in APEX Report

Description: This explains about HOLD / UNHOLD in APEX Report function fun(a) { //alert(a); var str = a.substring(4); // alert(str); str = parseInt(str, 10); str = pad(str,4); //alert(str); var id…

Read More

Freeze Columns in Tabular Form or Report (Classical Report)

Description: This Query explains “How to Freeze/Fix Column Header Row of a Classic Report,” which I found very useful when the number of report columns/rows are more per screen. This…

Read More

Field Locks In Oracle Apex

Description: A lock icon indicates whether a page is currently locked. If a page is unlocked, the icon appears as an open padlock. If the page is locked, the icon…

Read More

Dynamic addition of data on clicking of link in a pop-up

Description:This post displays about Dynamic addition of data on clicking of a link in a pop-up Step:1: On Click of tabular form column of parent report, execute below javascript code…

Read More

Download hidden column in APEX classic report

Description: An expression is an arbitrarily complex combination of operands (variables, constants, literals, operators, function invocations, and placeholders) and operators.   Hidden column cannot be downloaded in classic report if,…

Read More