Showing posts from December, 2024

Button hover, Page Background, Interactive Report heading and Tabs Design

Button hover design ============= Inline CSS: ======== # btn_css {     border-color: #001317;     background-color: #00b227;     border-style: solid;     border-width: 0px 0px 3px;     box-shadow: 0 -1px 0 rgb(255 255 255 / 10%) inset;     border-ra…

Dashboard | Oracle APEX

Step:1 ===== Create a New Region. Type: Cards SQL Query: SELECT  1 SL, 'https://thumbs.dreamstime.com/b/colorful.jpg' ICON, 'Total Sell' TITEL, 'TK.'||TO_CHAR(SUM(PAID),'99,99,99,999')||'/-' TOTAL, APEX_PAGE.G…

Link and Button hover design

Step:1 ==== /* Column and Button Design */ . pb-com {     background: linear-gradient(#599bb3, #408c99);     box-shadow: 0px 2px 4px -2px #276873;     color: rgb(13, 13, 13);     font-weight: 600;     width: 100% !important;     text-align: left !i…

Button click then loading/removeLoading (Not null item Validation)

Step:1 ===== / Button click then loading/removeLoading function loading() {   waiter = waitingPopup(); } function removeLoading() {   if (waiter) {     waiter.remove();   } } function waitingPopup() {   $("body").prepend(     '<div …

Case using WHEN condition in SQL

AND ( case           when :P22011_TYPE=' ALL '      then 'TRUE'                      when :P22011_TYPE=' PENDING '  then              (CASE WHEN  ( Quantity - Quantity_received ) >  0 THEN  'TRUE'  ELSE  'FALSE…

Report Refresh without Page load when Button Press

Step: 1 =====   Create Button. Name: Show_Report  Dynamic Action: Refresh_Report  Action: Execute Javascript code  Code :  apex.region(" GENERAL_REPORT_VIEW ").refresh();   Step: 2 =====   Select Report Region. Static ID:  GENERAL_REPORT…

Insert to Session Log

CREATE TABLE   ZLOGINS_SESSIONS (   ZTIME               DATE                      DEFAULT SYSDATE,   ZUTIME              DATE,   SESSION_ID          VARCHAR2(100 BYTE)        DEFAULT sys_guid(),   USER_ID             VARCHAR2(100 BYTE),   MENU_CODE  …

How to Auto generate Primary Key in existing data

Note : My PK Column LINE_NO. Step : 1 ===== Create Sequence SEQ_DEPT_2 Step : 2 ===== CREATE OR REPLACE PROCEDURE CREATE_PK_LINE_NO (    p_vrno               OUT    VARCHAR2) IS    v_vrno            NUMBER;  BEGIN     SELECT  SEQ_DEPT_2 .NEXTVAL  …

Load More
That is All