Posts by Venkatesh Balasubramanian

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

Displaying of 7 Consecutive Dates in Report Header

Description: Displaying of 7 Consecutive Dates in Report Header   Step 1:   Create a date field for selecting the date. Step 2:   Create a report for displaying the…

Read More

Comments Differentiation in Oracle APEX

Description: Comments Differentiation is some recent requirement as new advancements in CSS been implemented. Customer requires differentiation in Image when some comment been added. It has been implemented with css…

Read More

Blank Row Restriction in Oracle APEX

Description: Blank Row Restriction is to avoid unwanted addition of rows in detail report (tabular Form) when a blank row already exists. This functionality can be achieved by Javascript. It…

Read More

Avoid wrapping of fields in APEX Interactive reports

Description: Due to many columns in the report, the Data will be wrapped automatically. Resolution:   In report attributes, assign the static ID for the column that you want not…

Read More