|
|
|
|
|
Re: ENTER PROCEDURE [message #168186 is a reply to message #168176] |
Wed, 19 April 2006 04:05 |
|
Maaher
Messages: 7065 Registered: December 2001
|
Senior Member |
|
|
From forms help | 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;
|
MHE
|
|
|