Querying ADF BC REST service - RowFinders and REST Shape
JDev: 12.2.1.3.0 Source: GitHub This article talks about querying ADF BC REST services using a RowFinder , and displaying different data sets based on our needs, using REST Shaping . REST Shaping This is a powerful tool provided by ADF BC to determine the kind of data you can expose to the end user. Imagine this use-case where we need to display certain attributes of an employee on the front-end application depending on whether we have an anonymous or an authenticated user, while we retain all the features of the view object (View criteria, custom SQL etc). Creating multiple copies of the same VO is certainly not an option. REST shaping allows you to create metadata on the view object, identified by a unique name, where you can specify which columns may displayed and which all may be hidden. See examples below, which show two shapes created - AuthView and NoAuthView, each showing different data sets. Important Note : Each REST instance suppo...