2 minutes read

Business objects (BOs) are elements that allow you to persist the application data. It is a logical representation of your business entities. Our platform converts the logical definition into a technical database and simplifies the technical complexity for you.

You can create the required data objects, add attributes, define relationships with other BOs, add validations and operations, and change properties using Data Editor. This simplifies the technical aspects involved in database management.

E.g.

Assume that you are creating an Application to onboard customers for a bank, BOs are created to store the details of the Account, Beneficiary, Customer, and  Transactions.

What are the Attributes of a BO?

If BOs are building blocks, then attributes are the columns in it.

You can use attributes to define the structure of the data that are put into a BO.

E.g.

In the Customer BO, Attributes could be Name, Address, Phone number, Email etc.

Can I define relationships between BOs?

To define relationships between the BOs, you can link attributes from one BO to another. 

E.g.

Accounts and transactions are two separate business objects (BOs). They are linked together so that each account can have multiple transactions.