In the last section, we have seen events and types of events in VBCS. Also, we have seen how to invoke events in VBCS. In this section, we will see how to create custom events in VBCS. What are custom events? Custom events are like lifecycle events, but they are not limited to lifecycles. Custom […]
How to Create Business Objects using Data Manager in VBCS
In this section, we will see how to create business objects in VBCS using a data manager. Data Manager is used to manage data stored in business objects while developing VBCS applications. Let us create an excel sheet with Location data as shown below: Save this file as Location.xlsx. Now navigate to VBCS —>Business Objects—->Data […]
How to Populate List of Values with Fusion Data in VBCS
In this section, we will see how to populate a field’s list of values (LOV) with fusion data in VBCS. We will populate payable payment Terms from fusion as List of value for Payment Term field in VBCS page. Follow below steps to achieve this: Step1: Test REST API for Payment Term in Postman. For […]
Understanding Backend and Service Connection in VBCS
Backend in VBCS: A backend is representation of known resources like Integration cloud, that visual builders understand. A backend contains a list of “servers” to help connect to this backend. Each server can be thought to encapsulate the details needed to connect to this type of resource like authentication, URL, etc. Backend is basically the […]
How to Add Export Data functionality to VBCS page
Export data functionality can be added to the VBCS page using the Export Data component. To use the Export data component, we need to install it. Navigate to Components and search for “Export Data”. Click on Install. Click on Install. Once it is installed, it will appear under the Installed tab. Create a new Web […]
Understanding Business Rules in VBCS Business Objects
Understanding Business Rules in VBCS Business Objects In this section, we will try to understand business rules in VBCS business Objects. Business rules are used to validate business objects and fields and trigger action based on events or field changes. Business Rules can be access using below navigation in VBCS: We can define 5 types […]
How to Restrict User for running ESS Job
In this section, we will see how to restrict ESS job to specific user. Let us create simple BIP report and ESS job based on BIP report. Follow steps mentioned in this below blog post to create Simple BIP report and ESS Job. We have created below ESS Job as: When we create ESS Job […]
How to Fix ERP Cloud Adapter Connection issue in GEN3
Issue Description: Sometimes in Gen3 OIC instance, while using ERP Cloud Adapter connection in Integration, we get below error, and we cannot use ERP cloud adapter connection in Integration: Resolution: This issue occurs when below required service WSDL are not sync in service catalog in oracle fusion. Follow the steps below to resolve this issue: […]
Introduction To Business Objects in Oracle VBCS
What are business Objects: Business Objects (BO) are like tables in VBCS which are used to store application data. Like database tables, business objects provide the structure for the data. Business Objects are stored in a database. Business objects can be accessed by REST endpoints. Let us navigate to VBCS and create business objects. Let […]
Events and Event Listeners in VBCS
In this section, we will see Events and Event Listeners in VBCS. What are Events? Event occurs when something happens in application. Example- Page Load, button click etc. Event Listener listens to events and then starts one or more action chains. So, every event is associated with event listener and one or more action chains. […]