saravanakumar
Member
Hi Everybody,
If i am providing "RETURN NO-APPLY" with in ANY-PRINTABLE trigger for the field then i am not able to enter any value to the same. Can anyone explain me briefly what exactly RETURN NO-APPLY does here?
Why is it happening so???
If i am providing "RETURN NO-APPLY" with in ANY-PRINTABLE trigger for the field then i am not able to enter any value to the same. Can anyone explain me briefly what exactly RETURN NO-APPLY does here?
Why is it happening so???
Please do the needful. Thanks in advance.DEFINE VARIABLE field1 AS CHARACTER NO-UNDO.
DEFINE FRAME frame1
field1.
ON ANY-PRINTABLE OF field1 IN FRAME frame1
DO:
RETURN NO-APPLY.
END. /** ON ANY-PRINTABLE OF field1 **/
/** Start of Main **/
UPDATE field1 WITH FRAME frame1.