Posts by Venkatesh Balasubramanian

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

Multiple selection in select list item – Oracle Apex 4.2

Description: To select multiple values from select list item in Oracle Application Express 4.2. Step 1: Create Select list item. Step 2: Step 3: Output: Summary: The screenshot showed that multiple values from the select…

Read More

How to set background in Oracle Apex 5 application using CSS

Description: To set background in Oracle Apex 5 application using CSS (Cascading Style Sheets). Step 1: Create a HTML Region. Step 2: Put a required image into Shared Components. Step 3: In this region, source CSS can be added for setting background. Output:   Summary: To set up the background covering image in oracle with the help…

Read More

SLIDESHOW OF IMAGES IN APEX

Description: Websites that include many images, such as art or photo gallery sites, can benefit by presenting some (or all) of their images in slide show format. Slideshow of various Images on an Apex Page can be achieved using HTML, JavaScript, CSS, and jQuery.   Step 1: Uploading all the images in the Workspace   Shared ComponentsàFilesàImagesàCreateàSelect Application nameàChoose image fileàUpload.   Step 2: Source code   Give the following code in the Page Region source. Make sure that all the images are uploaded in the Workspace.   Source Code: <div id=”slideshow”>   //opening the Slider division…

Read More

Setting the VO query dynamically in OAF

Description: Generally, while creating the View Objects, we define a query to it. While rendering the OAF page, these view objects get executed (either by framework or by the java…

Read More