Posts by Venkatesh Balasubramanian

Creating Lookup and Lookup Values through API

Description: The custom lookup parameters can be passed to the below API’s to insert data into Oracle standard tables fnd_lookup_values and fnd_lookup_types *fnd_lookup_types_pkg.insert_row *fnd_lookup_values_pkg.insert_row Sample script with description to upload…

Read More

ADF Menu | Menu Bar | command Menu Item Skinning

Description: Dropdown menus are a common requirement for web applications. In HTML we can create using elements like ul, li, div e.t.c. In ADF, We can achieve using menu bar…

Read More

The ultimate guide for skinning ADF table

Description: In ADF, Most commonly used component is table. Previously, I searched for so many blogs; I didn’t get any skinning related stuff to fulfill my requirement, then I realized and…

Read More

Progress Bar in Reports in APEX5

Description: APEX can create “Percentage Bars” within a report. This can be achieved using HTML Code in your Report SQL Query. Steps: 1- Create your report: Create an Interactive or Classic Report using SQL query : SELECT CASE WHEN COLUMN <= 30 THEN    ‘<div class=”a-Report-percentChart” style=”background-color:#000000;width:100%;”><div class=”a-Report-percentChart-fill” style=”width:’ || COLUMN || ‘% ; background-color: 330099;”></div><span class=”u-VisuallyHidden”>’ || COLUMN || ‘</span></div>’ || COLUMN || ‘%’ WHEN COLUMN BETWEEN 30 AND 50…

Read More

Displaying subtotal and total based on the group column in BI Publisher Template

Description: Business information processing requires advanced calculations, including complex ranking, subtotals, moving averages, and lead/lag comparisons. These aggregation and analysis tasks are essential in creating business intelligence queries, and are accomplished…

Read More

BI Publisher Report with Excel Template

Description: The below process explains the step by step details about BI publisher report with excel template with screenshots.   Step1: Concurrent Program Create a Concurrent Program with Executable File…

Read More

Append the DataBase value to Tabular Form Read-only Column

Description: “Tabular format” is simply information presented in the form of a table with rows and columns. Most office productivity software programs. The below steps explains how to append the database value…

Read More

Useful SQL Queries – Oracle EBS

Description:  To enhance performance, aggregate and analytic functions can each perform in parallel: multiple processes can simultaneously execute all of these functions. These capabilities make calculations, analysis, and reporting easier…

Read More

Search on Double Click in IR Report

Description: If double-clicking for Adhoc operations are enabled to IR report in the following steps. Place the below code in HTML Header: <script type=”text/javascript”> $(function(){  $(‘.apexir_WORKSHEET_DATA td’).live(‘dblclick’,function(){   $(‘#apexir_SEARCH’).val($(this).text());   gReport.search(‘SEARCH’);  }); }); </script> Summary:  The HTML header to enable…

Read More

Useful Discoverer Queries

Description: One of the distinct steps is to find if all the necessary columns are available in the EUL, and this can be visually done through scanning the Business Areas…

Read More