Category: Apex

Oracle Apex: Speed up your APEX

Oracle Apex: Speed up your APEX

Sometimes i find my Apex is so slow when saving changes after development into Design page, It was from my problems, Now i find cause that it was (Off Gzip compression) into local server configuration like...

Oracle Apex API  “$s()”

Oracle Apex API “$s()”

The Apex JavaScript API has some very convenient functions to access the values of page items. For example, if you wante to access the contents of a text field with JavaScript, would would need...

How to Run GlassFish V4.1 as a Service on Linux Ubuntu/Debian

How to Run GlassFish V4.1 as a Service on Linux Ubuntu/Debian

source: https://blogs.oracle.com/foo/entry/how_to_run_glassfish_v3 http://computingwithjasper.blogspot.com.eg/2008/01/installing-glassfish-2-on-ubuntu-710.html https://gist.github.com/AmrAbdeen/642183789c0f0ba91613   We already support running GlassFish V3 as a service on Solaris 10 and Windows platforms (see my blog).  I have been investigating how to provide support for automatically starting...

Some audit codes

Some audit codes

Next codes help you to audit your app .. Go head… — Find most accessed pages SELECT application_id, application_name, page_id, page_name, SUM (page_id) page_hit_count FROM apex_workspace_activity_log GROUP BY application_id, application_name, page_id, page_name ORDER BY...

How to looking for item_name into all apps ?

How to looking for item_name into all apps ?

Sometimes you looking for item_  you forget it or not remember whats app include it.. so you use next code to find it…. SELECT workspace, application_id, application_name, page_id, page_name, item_name, item_help_text FROM apex_application_page_items WHERE...