oracle-apex-18.2

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

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

human readable URLs in Oracle APEX

为君一笑 提交于 2019-12-24 07:16:49
问题 how to make human readable URLs in oracle apex currently my url seems like https://example.com/apex/f?p=107:1:13482402024834::::: what i want my database application url looks like. https://example.com/apex/home i am using oracle apex 18.2 回答1: You can define DAD in the database, and provide name for the apex application in user-interface of application properties the url will have the name of application instead app number, aslo to mask the page numbers you can give alias to pages. 来源: https