‎2007 Nov 29 12:11 PM
I have some screen fields on the screen. If the screen fields do not have any values then it should not be validated.
If screen field is initial
don't do anything.
else
validate.
endif.
Is there any other way to do the above functionality.Pls help.
‎2007 Nov 29 12:30 PM
Hi Camila.
Try to do this way.
In top include declare one variable with same input name's.
ex.
I have one input named test. So I declared one variable named test.
In PAI module do it.
IF NOT test IS INITIAL.
*your validate logic
ENDIF.
Regards Balbino
Message was edited by:
Balbino Soares Ferreira Filho
‎2007 Nov 29 12:33 PM
Hi,
you must be declare variable in main program.Then follow it.
If screen field is not initial
validate.
endif.
L.Velu
‎2007 Nov 29 12:41 PM
Try using Fields statement with module ..
Fields <screen var name> module <module name> on input..
that means this module will only excute when there is a new entru on <screen var >
No Rewards Plz..