Baizeed Rony Academy

Baizeed Rony Academy Baizeed Rony Academy — Global virtual ICT training & custom software solutions. Enroll today.

Industry-focused courses, hands-on projects and expert mentorship to accelerate careers and empower businesses.

27/12/2025

I got 8 reactions and 10 replies on my recent top post! Thank you all for your continued support. I could not have done it without you. 🙏🤗🎉

26/12/2025

How to Insert Data from Oracle Forms Using a Procedure and integrate custom messages
--------------------------------------------------------------------------------------------------------------

Step 1: Create a Trigger for new customer ID.

--------------------------------------------------------------------------------------------------------------

-- Trigger for Auto Generating ID --

CREATE OR REPLACE TRIGGER NEW_CUSTOMER_TRIGGER

before INSERT ON SUMMIT_ADF.S_CUSTOMER FOR EACH row

BEGIN

IF inserting THEN IF :NEW."ID" IS NULL THEN

SELECT S_CUSTOMER_ID.nextval INTO :NEW."ID" FROM dual;

END IF;

END IF;

END;

/

--------------------------------------------------------------------------------------------------------------

Step 2: Create a procedure to insert data.

--------------------------------------------------------------------------------------------------------------

-- Procedure to Insert Data --

CREATE OR REPLACE PROCEDURE insert_new_customers

(p_name IN VARCHAR2, p_phone IN NUMBER) IS

BEGIN

INSERT INTO s_customer(NAME, PHONE)

VALUES(p_name, p_phone);

COMMIT;

END;

/

--------------------------------------------------------------------------------------------------------------

Step 3: Create a Form module, use a button trigger to invoke the procedure and show message.

--------------------------------------------------------------------------------------------------------------

-- Forms Button Code --

BEGIN

insert_new_customers(:S_CUSTOMER.NAME,:S_CUSTOMER.PHONE);

:SYSTEM.MESSAGE_LEVEL := '10';

UP;

IF NOT FORM_SUCCESS THEN

MESSAGE('Data Inserted');

END IF;

:SYSTEM.MESSAGE_LEVEL := '0';

END;

26/12/2025
26/12/2025

Interactive Grid Automatic column calculation Using JavaScript

Hello viewers welcome to my new video how to calculate oracle apex interactive grid columns using JavaScript.

Step: 1 : First go the interactive grid page

Step: 2 :Then go the Event > Change > Create a Dynamic action > dynamic action properties >when column > give the column name> UNIT_PRICE,QUANTITY

Step 3 : True Action > Execute JavaScript Code.





var unitPrice = ($v("T_UNIT") !== '') ? parseFloat($v("T_UNIT")) : 0;

var quantity = ($v("T_QUANTITY") !== '') ? parseFloat($v("T_QUANTITY")) : 0;



var totalAmount = 0;



if (!isNaN(unitPrice) && !isNaN(quantity)) {

totalAmount = unitPrice * quantity;

}



$s('DEMO_ORDER_TOTAL', totalAmount);





This JavaScript code appears to be calculating a total amount based on unit price and quantity, then updating a field named "DEMO_ORDER_TOTAL" with the calculated value. Let's break down each part:

Variable Declarations:
unitPrice: It's assigned the value of the field "T_UNIT" if it's not an empty string; otherwise, it's assigned 0.
quantity: It's assigned the value of the field "T_QUANTITY" if it's not an empty string; otherwise, it's assigned 0.
totalAmount: Initialized to 0. This variable will store the total calculated amount.
Conditional Statements:
There are conditional (ternary) statements used to check if the values obtained from the fields "T_UNIT" and "T_QUANTITY" are not empty strings. If they are not empty, the values are converted to floating-point numbers using parseFloat(). If they are empty, the values are set to 0.
Calculation:
If both unitPrice and quantity are valid numbers (not NaN), it calculates the total amount by multiplying unitPrice by quantity.
Update Field:
Finally, the calculated totalAmount is assigned to the field "DEMO_ORDER_TOTAL" using $s() function, which presumably updates the value displayed in a UI element.
Here's a simplified breakdown of the code flow:

Get values of unitPrice and quantity from respective fields.
Check if both values are valid numbers.
If yes, calculate the total amount.
Update the field "DEMO_ORDER_TOTAL" with the calculated total amount.
This code is likely used in a web application or some environment where JavaScript is executed to perform dynamic calculations and update the UI accordingly.

Call now to connect with business.

25/12/2025

How to Download Flutter.

24/12/2025

What is Oracle REST Data Services(ORDS) in Oracle Apex?
Oracle REST Data Services(ORDS) in Oracle Apex

Oracle Application Express uses a simple architecture in which pages are dynamically generated using metadata which stored within the Oracle Database.

The Oracle Application Express architecture consists of a web browser, Oracle REST Data Services (the web listener), and an Oracle Database containing Oracle Application Express. The major advantage of this architecture is the separation of the mid-tier and the database tier.

The web listener, Oracle REST Data Services, functions as a communications broker between the Web browser and the Oracle Application Express objects in the Oracle database by mapping browser requests into database stored procedure calls.
After fully installed, a Uniform Resource Locator (URL) is defined for both developers and end users to access Oracle Application Express.

Users need only a Web browser and the required URL. No additional client software is required.

23/12/2025

Oracle APEX does not treat ROWID as a normal column, but you can use it in reports, forms, and processes. Here is a clear explanation with examples.

✅ What is ROWID?

ROWID is a pseudo-column in Oracle that uniquely identifies the physical location of a row in a table.
You can select it but cannot insert/update it.

Example:

SELECT ROWID, t.*
FROM your_table t;

23/12/2025

"Oracle সিস্টেমের সাথে REST এবং SOAP API ইন্টিগ্রেশন করার systems"😍
---------------------------
REST API ইন্টিগ্রেশন: Oracle ডাটাবেস বা অ্যাপ্লিকেশনগুলোর সাথে RESTful ওয়েব সার্ভিস ব্যবহার করে তথ্য আদানপ্রদান করার দক্ষতা।

SOAP API ইন্টিগ্রেশন: Oracle সিস্টেমের সাথে SOAP (Simple Object Access Protocol) ওয়েব সার্ভিস ব্যবহার করে ডেটা সংযোগ এবং প্রসেস করার ক্ষমতা।

সংক্ষেপে, এটি বোঝায় যে আপনি Oracle সিস্টেমকে অন্যান্য সফটওয়্যার বা সার্ভিসের সাথে API এর মাধ্যমে সংযুক্ত করতে এবং তথ্য আদানপ্রদান করতে পারবেন।

23/12/2025

Build intelligent enterprise apps you can trust with Oracle APEX 🚀

Oracle APEX ব্যবহার করে খুব দ্রুত আপনি নিরাপদ, স্কেলেবল ও ইন্টেলিজেন্ট এন্টারপ্রাইজ অ্যাপ্লিকেশন তৈরি করতে পারেন। এতে আছে বিল্ট-ইন সিকিউরিটি, ডেটাবেসের শক্তিশালী পারফরম্যান্স এবং লো-কোড সুবিধা—যার উপর আপনি সম্পূর্ণ ভরসা রাখতে পারেন।

22/12/2025

How to Download Flutter

22/12/2025

How To Upload and show Image Files on Oracle APEX

Address

Mirpur 10
Dhaka
1216

Alerts

Be the first to know and let us send you an email when Baizeed Rony Academy posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Baizeed Rony Academy:

Share