A script-enabled browser is required for this page to function properly.

ENTER Built-in

Description

Validates data in the current validation unit. (The default validation unit is Item.)

Syntax

PROCEDURE ENTER;

Built-in Type restricted procedure

Enter Query Mode yes

Parameters

None

ENTER Example

/*

** Built-in: ENTER
** Example: Force Validation to occur before calling another
** form
*/
BEGIN
Enter;
IF NOT Form_Success THEN
RAISE Form_Trigger_Failure;
END IF;
Call_Form('newcust');
END;


Validation Unit Property

VALIDATE Built-in