I am an Oracle APEX Architect and Senior Consultant with 9+ years of hands-on experience in designing, developing, and modernizing enterprise applications using Oracle APEX, Oracle Database, SQL/PLSQL, and ORDS. My professional journey spans pharmaceutical consulting, insurance, healthcare, and enterprise product development, where I have delivered scalable, secure, and performance-optimized solutions for Indian and global clients.
Currently, I work as a Senior Consultant at Ernst & Young (EY), focusing on application architecture, data migration, performance tuning, advanced reporting, and system integrations. As an Oracle ACE Associate, I strongly believe in architectural clarity, best practices, and mentoring teams to build long-term sustainable Oracle solutions.
In this Short Video Vikas has explained, how can we customize the APEX login page template using APEX declarative templates options. https://youtu.be/s4T6_5okY5M
In this Short Video Vikas has explained, how can we setup the APEX application header image. Availble Options Text Image Image and Text both https://youtu.be/VqggHl6mJdw
How to add Auto Increment line number on Add Row button in interactive grid Oracle APEX. In Oracle APEX, Interactive Grids provide a powerful way to interact with and manipulate…
How to Get Device ID in Oracle APEX? Create a page with a page item and paste below Javascript in Function and Global Variable Declaration section as per screenshots. Copy CodeCopiedUse a…
1. apex.page.confirm Signature 1. This example shows a confirmation dialog with the text ‘Delete Department’. If the user chooses to proceed with the delete, the current page is submitted with…
How to upload multiple files in apex collection using Oracle APEX. Create a blank page where there will be a page item and a button as per screenshot. Create a…
How to Set and Get Item Value Using Javascript In Oracle APEX? 1. Get Item Value In Oracle APEX Using Javascript API. Copy CodeCopiedUse a different Browserapex.item( "P6_NAME" ).getValue(); $(…
Solution 1 : Copy CodeCopiedUse a different BrowserWITH t AS (SELECT sal, ename, DENSE_RANK () OVER (ORDER BY sal DESC) AS rnk FROM emp) SELECT sal, ename FROM t WHERE…
Disable Right Click and Copy Paste In Oracle APEX. If you want to disable right click and Copy paste from your whole application then use below code globle page. Create…