0% found this document useful (2 votes)
170 views

VBCS Notes (Learning Path)

A business object provides the structure for data that is stored in a database and accessed through REST endpoints by a web application. Pagination in VBCS loads entries in batches defined by the fetch size and uses scrolling to load more data on scroll. Filtering and sorting in VBCS uses operators defined in JET documentation and allows compound filters while sorting can be done on attributes in ascending or descending order.

Uploaded by

Moha474
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (2 votes)
170 views

VBCS Notes (Learning Path)

A business object provides the structure for data that is stored in a database and accessed through REST endpoints by a web application. Pagination in VBCS loads entries in batches defined by the fetch size and uses scrolling to load more data on scroll. Filtering and sorting in VBCS uses operators defined in JET documentation and allows compound filters while sorting can be done on attributes in ascending or descending order.

Uploaded by

Moha474
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

What is a Business Object?

A  business object is similar to database table, as it provides the structure for your
data; in fact, business objects are stored in a database. Your web application
accesses the business objects through their REST endpoints.

Shell Page is the container for the main content on the page.

All the types are generated at Flow Level

Filter Criterion:
Operators start with $.
There should be no quotes for attributes in filter criterion.

Flows are sets of pages that logically belong to each other.

Pagination in VBCS:

1. Scrolling Options Fetch Size – How many entries to load at a particular time

2. Scrolling Options Scroller – [[document.documentElement]]


Exact load more on scroll like functionality

Filtering and Sorting Data Sets:

VBCS uses OJET in backend. So various operators which are used while filtering are defined
in the JET documentation.

Filters can also be Compound.

Sort Criteria has only two properties:


1. Attribute
2. Direction: Either Ascending or Descending

You might also like