oracle-apex

APEX ORACLE How to use one form to insert data into multiple tables

半世苍凉 提交于 2021-02-10 20:51:21
问题 I was wondering if you can help me out with my current problem which is to insert data into multiple tables in my relational database using a single form. I am fairly new to APEX but do have a little bit of background on mysql and php programming. In the past, I normally achieve such task by creating a view of all the columns from different table that I want to populate and using a simple insert commands but doing the same thing in apex gives me and error stating that "ORA-01779: cannot

Actions Menu Interactive Grid

拜拜、爱过 提交于 2021-02-10 18:06:40
问题 Is there any way to remove 'Chart' from Actions Menu in an Interactive Grid? 回答1: So I posted a short answer that should have honestly probably been a comment with a link to https://hardlikesoftware.com/weblog/2017/01/24/how-to-hack-apex-interactive-grid-part-2/ Then I had some time and decided to try to actually execute this and got to a solution thanks to https://community.oracle.com/thread/4324589 where they also further reference https://community.oracle.com/thread/4319050 So you know

Actions Menu Interactive Grid

独自空忆成欢 提交于 2021-02-10 18:02:38
问题 Is there any way to remove 'Chart' from Actions Menu in an Interactive Grid? 回答1: So I posted a short answer that should have honestly probably been a comment with a link to https://hardlikesoftware.com/weblog/2017/01/24/how-to-hack-apex-interactive-grid-part-2/ Then I had some time and decided to try to actually execute this and got to a solution thanks to https://community.oracle.com/thread/4324589 where they also further reference https://community.oracle.com/thread/4319050 So you know

Dynamic Action refresh all reports in a page

时间秒杀一切 提交于 2021-02-05 08:08:31
问题 I have a page with to many reports When I change an Item I want to refresh all the reports on the page I have one dynamic action (on item change) that as a lot of refresh (true) actions to refresh all the reports. I want to know if theres a way/comand/DynamicAction/Code that refreshes all the reports in the page with a single DynamicAction? Thanks in advance 回答1: Create a single JavaScript action the executes the following $('.refreshme').trigger('apexrefresh'); And apply the refreshme class

Dynamic Action refresh all reports in a page

被刻印的时光 ゝ 提交于 2021-02-05 08:05:05
问题 I have a page with to many reports When I change an Item I want to refresh all the reports on the page I have one dynamic action (on item change) that as a lot of refresh (true) actions to refresh all the reports. I want to know if theres a way/comand/DynamicAction/Code that refreshes all the reports in the page with a single DynamicAction? Thanks in advance 回答1: Create a single JavaScript action the executes the following $('.refreshme').trigger('apexrefresh'); And apply the refreshme class

Dynamic Action refresh all reports in a page

 ̄綄美尐妖づ 提交于 2021-02-05 08:03:12
问题 I have a page with to many reports When I change an Item I want to refresh all the reports on the page I have one dynamic action (on item change) that as a lot of refresh (true) actions to refresh all the reports. I want to know if theres a way/comand/DynamicAction/Code that refreshes all the reports in the page with a single DynamicAction? Thanks in advance 回答1: Create a single JavaScript action the executes the following $('.refreshme').trigger('apexrefresh'); And apply the refreshme class

Oracle Apex Home URL issue- Fixed page not dynamic

耗尽温柔 提交于 2021-01-29 18:46:00
问题 I was earlier facing problem with logging into application in apex. i later realised problem was with home url where page id was set to admin page, so any other user could not access it. I have set authentication an authorization schemes like pages specific to admin/manager/employee. However if i set any other page id in home url, all authorizations fail and nomatter which user i use to login, only that page shows up and other pages are not coming up. Please help. 回答1: Vini, Based on your

Oracle Apex 4.2 Dynamic action with custom event “beforeunload” not working

▼魔方 西西 提交于 2021-01-29 14:15:05
问题 So i have created a custom dynamic action that is supposed to run "beforeunload" (in case user closes the tab/browser unexpectedly or navigates away from the page in a manner not intended). This dynamic action runs a simple plsql procedure ( http://prntscr.com/qz0a6c ). A few days ago the Chrome browser updated to version 80 and in this new version "beforeunload" is disallowed and now my dynamic action does not work. Does anyone have an idea on how I could build this functionality differently

Multiple conditions on single button with Dynamic Action in Oracle Apex

半城伤御伤魂 提交于 2021-01-29 11:49:34
问题 Please see below screen shot I have one button "Add Row" on the top and items in a single row of Oracle Apex Form. I have add 10 Rows with same items list on each click of the top button. Could you please help on this how can I achieve this. 回答1: if I understood you correctly and you want a dynamically determined amount of files to upload, there are many options for that Easiest 1 - upload one at a time, and show the user older files that were uploaded. Easiest 2 - Use the "Allow multiple

Oracle apex select list and hide values

*爱你&永不变心* 提交于 2021-01-29 10:38:43
问题 I have scenario that allow the student to choose desire of majors by defining three select list. I have three majors : CS , IT and IS. For example if the student In the first desire he chosen CS from select list then in the second select list the CS major I want it don't appear in the list . For the second select list if he chosen IT then IT don't appear in the third desire where the last select list will contain only IS . is there any idea how can I do this scenario ? Thanks 回答1: One option