Muhammad Abdul Qaium is a Database Engineer/Oracle Apex Developer/BI Developer (in Connecticut, USA) who is an Oracle Certified Cloud Architect Professional, OCI Autonomous DB specialist as well as Oracle Business Intelligence Foundation Suite 11g Certified Implementation Specialist with extensive expertise in Database design , PL/SQL, Oracle Apex, Microsoft SSIS, ETL, Power BI, Qlik Sense, BI Publisher, Jasper Report, OBIEE. Contact: qaiuminfo@gmail.com
Search This Blog
Saturday, January 25, 2025
Java to Oracle database Connection Using JDBC
Saturday, January 18, 2025
Confirmation Alert Before Submit / Conditional Button execution using one button JavaScript in Oracle Apex
Using below code you can take a confirmation before execution even you can do conditional button press and execution.
Friday, January 17, 2025
Interactive Grid Alternating Row Color
1. Put the CSS into Page properties Inline->
.customAlternatingRow .a-IRR-table tr:nth-child(odd) td{background-color:#bac3cc}
.customAlternatingRow .a-IRR-table tr:nth-child(even) td{background-color:#dceaf7}
.customRowHighlight .a-IRR-table tr:hover td{background-color:rgba(103,159,214,.55)}Tuesday, January 14, 2025
Audit Log Sample Trigger
create or replace TRIGGER "SCHEMA"."UDS_CALL_LOG_INFO_BIU"
BEFORE INSERT OR UPDATEON "APEX_UDS"."UDS_CALL_LOG_INFO"
FOR EACH ROW
BEGIN
IF INSERTING THEN
IF :NEW.MASTER_ID IS NULL THEN
SELECT UDS_CALL_LOG_INFO_SEQ.NEXTVAL
INTO :NEW.MASTER_ID
FROM DUAL;
END IF;
:NEW.CREATED_DATE := LOCALTIMESTAMP;
:NEW.CREATED_BY:=nvl(v('APP_USER'),USER);
ELSIF UPDATING THEN
:NEW.EDIT_DATE := LOCALTIMESTAMP;
:NEW.EDITED_BY:=nvl(v('APP_USER'),USER);
END IF;
EXCEPTION
WHEN OTHERS THEN
dbms_output.put_line ('An error was encountered '||SQLCODE||' -ERROR- '||SQLERRM);
END UDS_CALL_LOG_INFO_BIU;
How to Implement Password Hide/Show in Login Page
Follow these steps to enable users to toggle between hiding and showing their password on the login page. Step 1: Add the Function and Glob...