In this post, we will see how to add Icon/Logo to Button in VBCS. Let us create a Page with Button in VBCS as shown below: Also set Chroming property of Button as “Call To Action”. We will add download Icon to this button. Click on StartIcon property. Select Icon. Click on Icon (File-Image). Replace […]
Button Chroming in VBCS
In Oracle Visual Builder Cloud Service (VBCS), the “Chroming” property for a Button controls the visual style or appearance of the button — essentially how it looks in terms of emphasis and display priority. Common Chroming Options in VBCS Buttons: (A) Borderless: Button without border or background — minimal styling. Low emphasis. (B) Call To […]
Configure Implementation and Employee User in Oracle Fusion
For any Oracle Fusion implementation project, we usually create two types of users: Let us check in details regarding each type of user and how to create these users: 1.Implementation User: Implementation users are those users who are implementing system. These are IT consultants who are working on implementation. These users are not actual employee […]
VBCS: ADP VS SDP Difference
In this post, we will see the difference between ADP and SDP in VBCS. In VBCS, data providers serve a bridge between your data and UI components (like table, lists, charts etc.). Two of the most used are: (A) SDP (Service Data Provider) (B) ADP (Array Data Provider) They help the UI know what data […]
How to Create Custom Authentication scheme in Oracle APEX
In this post, we will see how to create custom authentication scheme in Oracle APEX. Custom authentication enables users to log in to APEX application with username and password stored in custom database table. This will provide complete control over the authentication interface. APEX application will validate username and password against data stored in database […]
Authentication Schemes in Oracle APEX
Oracle APEX application can be authenticated using an authentication scheme. The authentication process requires that a user provides some type of credentials such as username and password. Once credentials are verified, application access is given to users. Once a user has been identified, the Oracle APEX engine keeps track of each user by setting the […]
Creating Implementation User using REST API
Creating Implementation User using REST API We can use the REST API below for creating implementation users: REST API Endpoint: /hcmRestApi/scim/Users Method: POST Content-Type: application/json Payload: { “schemas”:[ “urn:scim:schemas:core:2.0:User” ], “userName”:”TEST_DUMMY_USER” }
How to Call Oracle Fusion BIP report from Oracle APEX
In this post, we will walk through the process to call Oracle Fusion BIP report from oracle APEX. Follow below steps to call Fusion BIP report from Oracle APEX. Step1 ===> Create Sample Fusion BIP report. Create sample BIP report in oracle fusion which we will use to call from oracle APEX as shown below: […]
ORDS Part-3: Enable ORDS for Custom Schema using PLSQL
In the Last post, we have seen how to download and install ORDS with XE database. In this post, we will see how to enable ORDS for schema. Step1: Create New User/New Custom schema. Login to XE database with SYS user. Check all pluggable databases. Show pdbs; Alter session to FREEPDB1: ALTER SESSION SET CONTAINER=FREEPDB1; […]
ORDS Part-1: Introduction to ORDS
Oracle REST Data Services (ORDS) is a middleware tool provided by Oracle that enables you to easily expose Oracle Database data and logic as RESTful web services. It’s a key component for modern application development, allowing seamless integration of database functionality with web, mobile, and cloud applications. ORDS (Oracle REST Data Services) is a Java-based […]
