oracle-apex-19.1

How does on implement Oracle Apex region authorization

好久不见. 提交于 2021-02-11 13:41:17
问题 The bind variable :app_region_id works region however it does not work for the authorization scheme SQL statement for region SELECT WORKSPACE,APPLICATION_ID , PAGE_ID, REGION_ID, REGION_NAME,AUTHORIZATION_SCHEME, :app_region_id from apex_application_page_regions where region_id = :app_region_id Authorisation scheme Scheme type: Exists SQL Query SQL Query: Select 1 from apex_application_page_regions where region_id = :app_region_id; which bind variable should I use to achieve region

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

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

How to convert string value returned from oracle apex 20.1 multiselect item into comma separated numbers array

旧时模样 提交于 2020-07-10 10:29:17
问题 I have a multi select enabled select list. I want to use all the selected ids inside an IN () operator in pl/sql query. Selected values are returned as below, "1","5","4" I want to use em as numbers as below, 1,5,4 My query is like, UPDATE EMPLOYEE SET EMPSTAT = 'Active' WHERE EMPID IN (:P500_EMPIDS); 回答1: This is the employee table: SQL> select * from employee; EMPID EMPSTAT ---------- -------- 1 Inactive 2 Inactive 4 Inactive 5 Inactive SQL> This is a way to split comma-separated values