APEX page types | Universal Theme

APEX provides three types of pages till APEX 20.  To create these pages Select Page Mode. Available options include: Note that options Modal and Non-Modal Dialog will only be available for selection where the current application theme contains a default... Read more

How to Add Subscription to Blogger

Feedburner helps to achieve many things like generating site feed url, email subscription to sites. Go to feedburner . Add your Blogger to feedburner  Now get your subscription: click to “Publicize”. and further from left menu “Services” click to Email Subscriptions Get the Feedburner JavaScript code.... Read more

APEX Server Process | apex.server.process | Namespace:server

Namespace:server How to use apex.server.process?  Create an ajax callback process then try out process function to call it. Basic syntax (namspace) process(pName, pDataopt, pOptionsopt) → {Promise} Properties Read more

Create ZIP File using APEX_ZIP

Data TypesThe data types used by the APEX_ZIP package.t_filestype t_files is table of varchar2(32767) index by binary_integer; Reference You might Like Read more

APEX Page Group

Page groups are very helpful for developers to manage application pages. Developer can use Page Groups to club the similar kind of Pages. These groups give the a centralized management for pages, For example if developer needs to build an... Read more

CLOB to BLOB using PLSQL

Create function to convert the CLOB to BLOB Now try with clob to blob conversion You might Like Read more

BLOB to CLOB using APEX_WEB_SERVICE

BLOB2CLOBBASE64 Function This function is used to convert Blob to base64Clob. Syntax: Example : References: apex_web_service.blob2clobbase64 Read more

Getting into ORDS

Firstly we need to enable ORDS. Base url : <SERVER_URL>:<SERVER_PORT>/ords/ To hide the schema name from API endpoint we put any alias in url mapping pattern. BEGIN ORDS.enable_schema( p_enabled => TRUE, p_schema => '<SCHEMA_NAME>', p_url_mapping_type => 'BASE_PATH', p_url_mapping_pattern => '<ANY_ALIAS_INPLACE_OF_SCHEMA_NAME>', p_auto_rest_auth =>... Read more

Restful API using ORDS

Creating Rest API using ORDS ORDS APIs follows the Module, Template, Method. Now let see the Hierarchy of these. Module is top level container, it can contain set of templates .Template is at second level container can contain multiple Handlers.Handler is logical area where... Read more

Consuming ORDS Rest APIs using PL/SQL

Consuming ORDS Rest APIs using PL/SQL API End point : https://apex.oracle.com/pls/apex/ashish_portfolio/hr/test_emp Parameters : deptno, empno Method : GET Without parameters With Parameters Output Read more