NOT ENTERED function
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Returns a TRUE value if a frame field was not modified during the last INSERT, PROMPT-FOR, SET, or UPDATE statement.
Syntax
|
- FRAME frame
- The frame name that contains the field named by the field argument. If you do not name a frame, the NOT ENTERED function starts with the current frame and searches outward until it finds the field you name with the field argument.
- field
- The name of the field or variable you are checking.
Example
This
procedure displays the CustNum, Name,
and CreditLimit for each Customer. For each Customer,
the procedure prompts the user for a new CreditLimit value.
The NOT ENTERED function tests to see if you enter a value. If you
enter a value and it is different from the present value of CreditLimit,
the procedure displays the old and new CreditLimit values.
If you enter the same value or no value, the procedure displays
a message that the CreditLimit has not been changed.
r-nenter.p
|
Note
If you use a field or variable referenced with NOT ENTERED in more than one frame, then the AVM uses the value in the frame most recently introduced in the procedure. To make sure you are using the appropriate frame, use the FRAME option with the NOT ENTERED function to reference a particular frame.