Missing Value on Alphanumeric

Discussions about CSEntry
Post Reply
Marc-Olivier Z
Posts: 16
Joined: September 30th, 2016, 12:48 pm

Missing Value on Alphanumeric

Post 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
shafique arif
Posts: 68
Joined: August 25th, 2013, 1:21 am

Re: Missing Value on Alphanumeric

Post 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;
Post Reply