Page 1 of 1

Missing Value on Alphanumeric

Posted: October 1st, 2016, 9:19 am
by Marc-Olivier Z
Morning everyone!
Please, can someone help to know how to avoid any possibility to leave an alphanumeric field empty?
I'm looking for that for a while but I do not make it

Re: Missing Value on Alphanumeric

Posted: October 1st, 2016, 10:10 am
by shafique arif
Try this.

PROC NAME

POSTPROC
if length(strip($))=0 then
errmsg("You can not leave this field blank: Please reenter");
reenter;
endif;