MatchAllReturnTrue method: SearchFilterGenerator class

Syntax

MatchAllReturnTrue()

Description

Use this method to initiate a temporary composite search filter using the & filter connector between filters. Since successful execution of this method returns True, you can use this method in logical expressions.

Parameters

None.

Returns

A Boolean value.

Example

In the following example, the composite filter consists of two filters joined by the & filter connector:

If &fg.MatchAllReturnTrue() Then
   &fg.NotEqualsString("a", "x");
   &fg.NotEqualsString("b", "y");
   &fg.EndMatchAll();
End-If;