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.
Creating APEX Workspace Shared Components
You can not create a shared component at the workspace level. But you can easily copy a shared component LOV from a different application to the current application. To copy a shared component LOV from a different application in the same workspace, go to the shared components > List of Values, thRead more
You can not create a shared component at the workspace level. But you can easily copy a shared component LOV from a different application to the current application.
To copy a shared component LOV from a different application in the same workspace, go to the shared components > List of Values, then click on the Copy button at the top right corner.
It will ask you to select the application from which you can copy the LOV.
See lessIn 19.2, How can I open a Different Block When I collapse a Region?
Hi Greg, What I understood so far, that you are expanding and collapsing the region using the buttons by manually clicking on it, but you want it to happen using the JavaScript or jQuery, and buttons should also not visible. You can try this: Specify a static id for the buttons and create a dynamicRead more
Hi Greg,
What I understood so far, that you are expanding and collapsing the region using the buttons by manually clicking on it, but you want it to happen using the JavaScript or jQuery, and buttons should also not visible.
You can try this:
Specify a static id for the buttons and create a dynamic action for page-load to hide them using the $x_Hide() method. Below is an example:
Now your button with static id “btnExpand” will be hidden.
You can create then a dynamic action to execute JavaScript code to click this button using the following JS code:
Whatever the code is written (using the DA) on click event for the button “btnExpand” will be executed.
Please let me know if it solves the purpose. Thanks.
See lessCreating APEX Workspace Shared Components
Vinish, Unless I'm missing something, I can create an LOV as a Shared component at he application level. How can I create a Shared LOV at the workspace level so all applications in the workspace can share that LOV? Is there a way to automatically import an export of the shared components when theRead more
Vinish,
Unless I’m missing something, I can create an LOV as a Shared component at he application level. How can I create a Shared LOV at the workspace level so all applications in the workspace can share that LOV? Is there a way to automatically import an export of the shared components when the application is created if there is no other way create shared component at workspace level?
Thanks.
Greg Grimes
See lessDynamic Function
To display the sum of the quantity field using JavaScript, you can create a dynamic action on the interactive grid for Save event or lost focus event for the quantity column to execute JavaScript code. First, specify a static id to the grid, for example, "billing" now use the below JavaScript code.Read more
To display the sum of the quantity field using JavaScript, you can create a dynamic action on the interactive grid for Save event or lost focus event for the quantity column to execute JavaScript code. First, specify a static id to the grid, for example, “billing” now use the below JavaScript code. Modify it as per your table columns:
Set the affected items accordingly. For more details, check the following tutorial: Loop Through Interactive Grid in Oracle Apex.
See lessLaunch Page from Image URL
Hi Emma, You need to create a dynamic action on that image or on the static region and choose the event type as Click and the Action as Execute JavaScript code. Then you can open Oracle Apex page from the JavaScript code as shown in the below example: javascript:window.open('f?p=&APP_ID.:2:&Read more
Hi Emma, You need to create a dynamic action on that image or on the static region and choose the event type as Click and the Action as Execute JavaScript code.
Then you can open Oracle Apex page from the JavaScript code as shown in the below example:
The above JS code will open page 2 in a new tab.
See lessIs it possible to automatically reject a booking?
Hi Celinehy, To do this, you need an SQL Update statement something like below: Update YourBookingTable set status = 'REJECTED' where EID = 'E001' and BOOKID != '0006'; Instead of hard-code '0006', you can use your Apex page item and do the same for equipment ID. Now, if there is not only booking idRead more
Hi Celinehy,
To do this, you need an SQL Update statement something like below:
Instead of hard-code ‘0006’, you can use your Apex page item and do the same for equipment ID.
Now, if there is not only booking id ‘0007’ but if any other booking id exists, that will also get rejected. You can also use a date field (PICKUP_DATE) to run the Update statement for a day, that is up to your requirement.
Please let me know if any doubts. Thanks.
See lessHow can I update a field in another table using a form in Oracle Apex?
Hi Vinish! Thank you so much for your help! I can do it now thanks!!
Hi Vinish!
Thank you so much for your help! I can do it now thanks!!
See lessDifference in Current and previous row item value
It depends on the requirement, like the above question, the from clause query is the appropriate solution for this. So if any time, you think that your purpose is not going to solve by simply specifying one or more tables for a data block, then you can use the from clause query feature. This is theRead more
It depends on the requirement, like the above question, the from clause query is the appropriate solution for this.
So if any time, you think that your purpose is not going to solve by simply specifying one or more tables for a data block, then you can use the from clause query feature. This is the only benefit of this.
See lessHow can I update a field in another table using a form in Oracle Apex?
Hi Cilenhy, Yes, it is possible to do, follow these few easy steps: In the form you shown in figure 2, click on the process tab, there you will find a few processes. Now create one more process as PL/SQL code type and write your update statement there. For example: Update equipment_table set availabRead more
Hi Cilenhy,
Yes, it is possible to do, follow these few easy steps:
In the form you shown in figure 2, click on the process tab, there you will find a few processes. Now create one more process as PL/SQL code type and write your update statement there. For example:
That is all but note create this process before the close dialog process of your form page.
You can find the full tutorial in my following blog post: How to Create a PL/SQL Code Process in Oracle Apex?.
Please let me know if still any issues. Thanks.
See lessOracle Apex Interactive Grid select all only select 1 page records
Yes, this selects only the records currently visible in the interactive grid. You can create a dynamic action on the interactive grid on the Page Change or View Change event to execute the same JavaScript code again. Or, if you know the maximum records that the grid is going to contain, for example,Read more
Yes, this selects only the records currently visible in the interactive grid.
You can create a dynamic action on the interactive grid on the Page Change or View Change event to execute the same JavaScript code again.
Or, if you know the maximum records that the grid is going to contain, for example, 100 records, then you can change the heading section to Fixed to Region and specify the region height in pixels, for example, 500 in the attribute section of the grid.
See less