Technical specifications are how you communicate your product’s functionalities to the outside world. The way you write your technical specifications will determine how comprehensible they are and, therefore, how effective they are. You can write a technical specification in different ...
Discy Latest Articles
What is Oracle ERP?
Oracle Enterprise Resource Planning (ERP) software is a system that streamlines and automates business processes. Businesses use Oracle ERP to standardize accounting practices, manage supply chains, and streamline daily operations. Oracle ERP integrates business functions, such as manufacturing, financial management, ...
Oracle Apex: Dynamic Action Execute JavaScript Code
In this tutorial, you will learn how to execute JavaScript code using a dynamic action in Oracle Apex. You can execute the JavaScript code directly through the dynamic action, or you can declare the JavaScript function on the page and ...
Oracle Apex: Dynamic Action Set Value Example
In this tutorial, you will learn how to set value for an item using dynamic action in Oracle Apex. You can set the value in Oracle Apex using the following set type methods: Set Types for action Set Value Static ...
Oracle Apex: Dynamic Action Set Focus Example
In Oracle Apex, dynamic action can be created to set focus to a particular item, button, etc. on a particular condition. For example, you want to set focus to a particular item on page load or on list change event ...
Oracle Apex: Dynamic Action Refresh
In this tutorial, you will learn how to create a dynamic action to refresh a report region on the select list change event. Suppose you have an employee report, and you have a requirement to filter the report result on ...
Oracle Apex: Dynamic Action to Disable Objects
This Oracle Apex tutorial shows you how to disable items, buttons, and other objects using the dynamic action. Creating Dynamic Action to Disable Objects In the following example, we will create a dynamic action on a button on the click ...
Oracle Apex: Dynamic Action to Clear Items
You can create dynamic action to clear items in Oracle Apex. Follow these steps: Creating Dynamic Action to Clear Items In the below example, I am creating dynamic action on a button for the click event to clear items. Do ...
CSS + [Plus] Selector
To apply CSS to an adjacent sibling selector, you use the CSS + selector for the first element, followed by a plus (+) sign and a selector for the sibling element. CSS + (Plus) Selector Example In the following example, ...
Oracle PL/SQL: Check if record exists
Below are the examples to check if a record exists using PL/SQL in Oracle. Check if record exists using the Count() function The following Oracle PL/SQL block will use the count() function in implicit cursor to count the records for ...