Limit Clause for the Add Query Command

The Limit clause of the Add Query statement limits the number of items returned from the query.

limit VALUE
  • VALUE is the maximum number of items that should be returned from the query. The query will stop once this number is reached. For example, the following query definition searches for business objects of type Document with a limit of 50. The first 50 Documents found are returned as the result of the query.
add query Document * * limit 50;