entityset

Each entityset correspond to a service entrypoint and can be accessed from a client.

Syntax:

[ ApiDoc ] ( DynamicComponentDependency )* entityset EntitySetName for ReferenceObjectName ( {
( DefaultWhereDefinition | WhereDefinition | OfflineFilterDefinition | FilteringContextListDefinition )+
}| ;)

entityset Activities for BusinessActivity;

Is is possible to reduct the number of available data records by adding a where-clause on the entity set. That will then be added automatically to the resulting query. The entity set name should be plural of the entity. Example

ShopOrders, CustomerOrders, People, Companies.

If the plural noun is same as the singular noun, use the suffix set.Example

InvoiceSeries -> InvoiceSeriesSet.

Note: Avoid using prefix and suffix like LOV, Query, Entity, Qry etc for the entity set name.


         entityset CompletedActivities for BusinessActivity {
            where = "completion_date IS NOT NULL";
         }

Note:   The same entity can be exposed as several entity sets, but with different names.

EntitySetName

Syntax:

<Identifier>

ReferenceObjectName

Syntax:

<Identifier>


This page is generated from IFS Developer Studio at 2021-08-13 08:48.