How to Set ORDS 22.1 Configuration Path on Linux for Apache Tomcat When deploying Oracle REST Data Services (ORDS) 22.1 on Apache Tomcat in Linux, a common issue is the dreaded: 404 Not Found The request could not be mapped to any database This…
Create bat file : set ORACLE_HOME=c:\DevSuiteHome_1 set PATH=%ORACLE_HOME%\bin;%ORACLE_HOME%\jdk\jre\bin;%ORACLE_HOME%\jdk\jre\bin;%ORACLE_HOME%\jdk\jre\bin;%ORACLE_HOME%\jlib;%ORACLE_HOME%\jdk\bin c:\DEVSUITEHOME_1\BIN\rwserver server=repsrvr autosta…
If you’ve worked with Oracle Forms , you know how convenient the Enter key is for moving between fields or directly to action buttons like Save or Update . In Oracle APEX , this behavior doesn’t exist by default—but with a little JavaScript , we ca…
E:\ords>"C:\Program Files\Java\jdk-15.0.1\bin\java" -jar ords.war install Enter a number to select the type of installation [1] Install or upgrade ORDS in the database only [2] Create or update a database pool and install/upgra…
To prevent the same user from logging in multiple times simultaneously in Oracle APEX, you can implement session management using a custom login process and a session tracking table. Here’s how to do it step by step: Step 1: Create a Session Tracking …
In Oracle APEX, you can create interactive classic reports that allow users to select a record and pass its values into a page item, without refreshing the whole page . One common case is setting an item like :P5_ID When a user clicks on a value (lik…
In oracle Apex when you want to delete from a collection : Item Name : P101_DELETE_ID In Link add the code : javascript:getID(&SEQ_ID.) Link Text : <span class="fa fa-trash-o"></span> Add the function at "Function and G…