APEX

RUPEE SYMBOL IN REPORTS IN ORACLE APEX 4.2 USING HTML

Description: Most of the Applications includes Accounts Reports like Employee Payroll Reports, Company Purchase Reports, Invoice Reports, etc.  Now using this method user can add RUPEE symbol in your reports.…

Read More

DYNAMICALLY ADDING ROWS IN TABULAR FORM IN ORACLE APEX 4.2

Description: A good web design involves the better user interaction and the ability to fetch the data in a better way. In Tabular Form, the user can add rows only…

Read More

ADDING A FAVICON TO APEX

Description: A Favicon (Favorite Icon), also known as a Shortcut Icon, Web site Icon, Tab Icon, or Bookmark Icon, is a file containing one or more small icons, associated with…

Read More

Restrict Copy Paste & Right Click In Apex Page

Description: The purpose of this component is to restrict the copy option from the user level of apex page. SCENARIO : Consider in our apex application we are providing any confidential message or data that should not be copied by the user level;…

Read More

Apex.server.process

Description: This function calls a PL/SQL on-demand process defined on page or application level. It’s a wrapper of the jQuery.ajax function and supports all the setting the jQuery function provides but…

Read More

Role based Authorization in Oracle APEX5

Description: To implement Role-based Authorization in Oracle APEX Application, in version 5. Application Item: USER_ROLE Table: ROLE_ACCESS_CONTROL The purpose of this table is to store the privileges on Regions, Buttons, and Items for…

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

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

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