Oracle Rest Data Service (ORDS) Unavailable issue in Apache Tomcat

Sometimes the ORACLE REST DATA SERVICES shows some of the  below unexpected and annoying errors which prevents to launch Oracle Apex Instances: 404 Not found REST  data service not available The request could not be mapped to any database….. and so on I found the below solution and you can …

How to Refresh Report on modal dialog window closed in Oracle Apex

Create a Dynamic Action Named “Refresh Report” Event = Dialog Closed Selection Type = JavaScript Expression Client-Side Condition  > JavaScript Expression

Add a True Action Action = Refresh Selection Type = Region Region = Employee List (set your own region here) Apply Changes and run the page. you will …

How to get Screen Resolution of system in Oracle Apex

Create 2 Text Items P1_SCREEN_WIDTH P1_SCREEN_HEIGHT 2. Create a Dynamic Action Named “get Screen Resolution” Event = Page Load True Action = Set Value Set Type = JavaScript Expression JavaScript Expression =

Affected Elements > Selection Type :  Item(s) Item(s): P1_SCREEN_WIDTH Fire on Initialization :Yes Create another True action under …

How to force Upper case text in a text field In Oracle Apex

Go to the Item Property Advanced > Custom Attributes Type the below Code:

for Lower Case:

when you save and run the page, you will see what ever the user types, inline it will be auto converted to upper case. Thank You

How to show mouse over tool tip of a item in Oracle Apex

Go to the item property Advanced > Custom Attributes Type the below code:

When you put mouse on “Employee Name” text field ( as example) it will show the tool tip ‘Employee Name’ Thank You

How to Redirect page In Oracle Apex

Create a Page Process as shown below: Name: Redirect Page Source PL/SQL Code:

Execution Options > Point >  Before Header Sequence : 1 When this page will be called, automatically before loading this calling page, it will be redirect to the page 101. you can set your own destination …