الاثنين، 26 سبتمبر 2022

How to Solve Ords Issue : The request could not be mapped to any database.

 The request could not be mapped to any database. 

Check the request URL is correct, and that URL to database mappings have been correctly configured






this issue because the PDB in not Open 
Login as sysbda
and run 
alter pluggable database all open;





then
Stop ORDS App from tomcat and start it again 


Ords will work Fine Now







الأربعاء، 15 يونيو 2022

how to expand navigation menu by default in oracle APEX

how to expand navigation menu by default  in oracle APEX 
Ceate Dyanmic Action on Page  
event : Page Load 
action : Execute Server-side Code

$("#t_PageBody").removeClass("js-navCollapsed"); 
$("#t_PageBody").addClass("js-navExpanded"); 
$("#t_Button_navControl").addClass("is-active"); 
$("#t_Button_navControl").attr("aria-expanded","true");

 


How to Solve Ords Issue : The request could not be mapped to any database.

 The request could not be mapped to any database.  Check the request URL is correct, and that URL to database mappings have been correctly c...