APEX
ConTech by RoOUG 2022
We’re always happy to help conferences with a mobile Conference App to use on their conferences. Most of all when the conference is small or new. It just feels good to help people out. Especially when these people share the same interest. For us that is Oracle in general and Read more…
APEX Database JoelKallmanDay
ORA-06502: When loading data in the APEX data-loader
My contribution to this years contribution to #JoelKallmanDay Recently I created a data-load within APEX to load about 3500 lines of excel-sheet into a temporary table. I created the table for receiving the data using the Data Workshop, as shown in the image. I now had a neat little table Read more…
APEX
Consume Digest API with PLSQL
In my personal blog, I have created an digest authenticated API use nodejs. Only thing it does is to authenticate with digest and output a json string when you are authenticated. I made it so that I can consume it in PLSQL. Here is the code snippet I used in Read more…
APEX
Google Analytics: custom dimensions
Google Analytics allow developers to collect custom data (parameters) and create custom dimensions to make use custom data. In this blog, i will try to go through the steps of creating custom dimensions and make use of the custom dimensions. I will be using previous blog mentioned Search Event, in Read more…
APEX
Connect Google Analytics to your APEX application
prerequisite: Any APEX application you have access to Google Account Go to google analytics ( make sure you have google analytics enabled ) and then go to the following section of the admin page and click on Create Account Once Account is created switch to the newly created account by Read more…
APEX OraCloud
Adding a login-message to your always free Oracle Cloud APEX instance
I used Dimitri’s great blog on how to get started on the Oracle Always Free cloud and APEX. Great work Dimitri.. Thanks for this. We’re used to add a login-message to our instances, so we can easily see on what instance we’re logging in. Alas.. The Oracle Always Free instances Read more…
APEX JavaScript PL/SQL
And that’s how the cookie crumbles
owa_cookie.send does not write the cookie to the browser because the “Reload on Submit” setting is not set at page level.
APEX PL/SQL
On APEX LOV’s and how to define their queries
The goal in defining LOV queries is to have them stored in a compiled way, having the benefit of database dependencies and making use of the SQL optimizer.
APEX Automation JavaScript
Automating APEX using Node.js and Puppeteer
Did you know that Chrome now ships with the feature Headless Chrome it is a tool for automated testing. For example, you may want to run some tests against a real web page, create a PDF of a page, or just inspect how the browser renders an URL, you can Read more…