HASFILTER

Die Funktion HASFILTER liefert TRUE, wenn die Recordvariable gesetzte Filter enthält.

Informationen

Die Funktion HASFILTER berücksichtigt die aktuelle Filtergruppe (FILTERGROUP).

Beispiel

WITH Customer DO
  BEGIN
    FILTERGROUP(2);
    SETFILTER("Salesperson Code", 'PS');
    FILTERGROUP(0);
    IF HASFILTER THEN
      MESSAGE('Es sind Filter gesetzt!')
    ELSE
      MESSAGE('Es sind keine Filter gesetzt!')
  END;
Es sind keine Filter gesetzt!