Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
APEX 20.2: Creating Karaoke screens
Thanks. That works fine.
Thanks. That works fine.
See lessAdd dynamically report on apex
I have recently created an Oracle Apex app in which the user can type the SQL query and run to get the Classic Report's output. I am sharing the link below of my GitHub repository. You can further modify the app to save the query with a Name and can recall it on click to view the report. https://gitRead more
I have recently created an Oracle Apex app in which the user can type the SQL query and run to get the Classic Report’s output.
I am sharing the link below of my GitHub repository. You can further modify the app to save the query with a Name and can recall it on click to view the report.
https://github.com/devvinish/sql-command
See lessAdd multiple rows in Interactive Grid in Oracle Apex
how to populate multiple rows in interactive grid from another table and then save the grid using save button
how to populate multiple rows in interactive grid from another table and then save the grid using save button
See lessAdd multiple rows in Interactive Grid in Oracle Apex
how to populate multiple rows in interactive grid from another table and then save the grid using save button
how to populate multiple rows in interactive grid from another table and then save the grid using save button
See lessUnable to login into Apex – login screen doesn’t appear after installation
Hi You can't install two versions of Apex in the same (pluggable) database. You wrote: I see the user APEX_200100 is already getting created in 4th step (@apexins.sql) itself. apexins.sql is the setup for Apex with Apex Builder. When I run 5th step (@apxrtins.sql), it fails with same error. apxrtinsRead more
Hi
You can’t install two versions of Apex in the same (pluggable) database.
You wrote:
apexins.sql is the setup for Apex with Apex Builder.
apxrtins.sql is the run-time only version of Apex.
APEX 20.2: Creating Karaoke screens
You can execute PL/SQL code to read the value from the database using JavaScript. Below is an example: Click on the process tab and then click on the Ajax Callback node and create a process. And add the PL/SQL code in it to get the song words, for example: Declare v_words varchar2(1000); Begin selecRead more
You can execute PL/SQL code to read the value from the database using JavaScript. Below is an example:
Click on the process tab and then click on the Ajax Callback node and create a process. And add the PL/SQL code in it to get the song words, for example:
Give any name to the above Ajax callback process, for example, AjxGetWords. Now call it using JavaScript below:
Try it.
See lessUnable to login into Apex – login screen doesn’t appear after installation
I have the same problem. Please, help. I am running everything on my laptop with hostname MSI. The OS is Windows 10, the database is Oracle 18c (18.4.0.0.0) Express Edition. I installed APEX 20.2 into a pluggable database, under login SYS@pdbname AS SYSDBA. Then, I downloaded ORDS, ran it in installRead more
I have the same problem. Please, help. I am running everything on my laptop with hostname MSI. The OS is Windows 10, the database is Oracle 18c (18.4.0.0.0) Express Edition. I installed APEX 20.2 into a pluggable database, under login SYS@pdbname AS SYSDBA. Then, I downloaded ORDS, ran it in install mode, and finally started it in a standalone mode. The URL: http://MSI:8080/ords/apex_admin shows a Web page with the title ORACLE REST Data Services and with 404 error message:
I checked in the database and – yes- there is no PL/SQL procedure named APEX_ADMIN in any of the following schemas that I have in this pluggable DB: APEX_200200, APEX_INSTANCE_ADMIN_USER, APEX_LISTENER, APEX_PUBLIC_USER, APEX_REST_PUBLIC_USER, ORDS_METADATA, and ORDS_PUBLIC_USER.
See lessWhat is the true status of openModal?
Yes, these functions are deprecated. Use one of the following methods instead: $("#dialogStaticId").dialog("open"); apex.theme.openRegion("myDialogStaticID");
Yes, these functions are deprecated. Use one of the following methods instead:
See lessPL/SQL create xlsx uisng xlsx_builder_pkg can’t open file
What error are you getting? You can also try to find the latest version of xlsx_builder_pkg on Google.
What error are you getting?
You can also try to find the latest version of xlsx_builder_pkg on Google.
See lessJavaScript Expression to pass ListView ID in a DynamicAction, Rel 20.1
Quick update: I have isolated the syntax issue to here this line: alert($(this.triggeringElement).attr(‘data-id’)); The Dynamic Action, as per @afzal 's advice correctly responds to selecting a ListView item. I then changed the DA with the JavaScript: var xTE = this.triggeringElement; alert(xTE.inneRead more
Quick update: I have isolated the syntax issue to here this line: alert($(this.triggeringElement).attr(‘data-id’));
The Dynamic Action, as per @afzal ‘s advice correctly responds to selecting a ListView item.
I then changed the DA with the JavaScript:
var xTE = this.triggeringElement;
alert(xTE.innerText);
This correctly shows the inner text, which means that I am on the right track.
However – a new problem is that when I use the search feature of the ListView, the Dynamic Action does not work anymore. Very confused.