oracle-apex-5.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

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

Is there a way to display dynamic columns in Oracle apex

≡放荡痞女 提交于 2021-02-08 11:15:25
问题 Long story short, I can't use pivot for this task due to the long elements that I need to include in the columns. Although I tried to create a Classic Report based on function in Oracle Apex. The query it's generated correctly but it's not working in the Classic Report. 回答1: A general hint first: Output your variable l_sql to your console using dbms_output.put_line or use some kind of debugging table where you can insert it into. Also be careful about the data type of that variable. If you

Through Apex Item Checkbox checks want to store values in Item field

萝らか妹 提交于 2021-01-29 07:37:30
问题 I used Interactive report APEX_ITEM.CHECKBOX2(p_idx => 1, p_value => ST.ID, p_attributes => DECODE(ST.IS_HEADER_ROW ,'Y', 'DISABLED',NULL)). And I want to use highlighted IDs depending upon checks in Row ID field in Comma delimited format DYNAMICALLY. Further I will use that Row IDs value in another region report and will update values in DB after few validations. 回答1: On button press, you could run this JavaScript which concatenates all nominated checkboxes into a delimited string. $s('P1

How to create and use a multi-select list in APEX ORACLE?

自闭症网瘾萝莉.ら 提交于 2020-05-13 08:13:28
问题 I have a table called Employees with Employee_id and Employee_Name columns. Now i want to create a page with Checkbox in-front of every Employee Name, select the ones that are needed, store them into a temporary table and use them for further operations. The problem i am facing is to how to create that multi select list and store the select values in thee table. Is there an Item for multi select? If not, how should i do it? 回答1: There's the Shuttle item . On the left side, you'd display list

looking for plsql code based on oracle apex layout design

允我心安 提交于 2020-04-30 06:27:09
问题 I have created a hidden item "P1_DOCUMENTS_COUNT" with default of 1. used plsql too increase it when users clicks the button "add row". Created 10 times the following row of items (# for the row number): P1_DOC_DATE_#, P1_DOC_DESCRIPTION_#, P1_DOC_NAME_#, P1_DOC_CATEGORY_#, P1_DOC_FILE_BROWSER_#. at the beginning - rows 2-9 will be hidden. when P1_DOCUMENTS_COUNT = n, show rows 1,2,...n. Issue is I have cancel button on each row, I am looking for a solution so that if none of cancel button