Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

avoiding validations in Dialog programming

Former Member
0 Likes
459

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.

3 REPLIES 3
Read only

balbino_soaresferreirafil
Active Participant
0 Likes
438

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

Read only

Former Member
0 Likes
438

Hi,

you must be declare variable in main program.Then follow it.

If screen field is not initial

validate.

endif.

L.Velu

Read only

Former Member
0 Likes
438

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..