Application Development 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: 

module poll getting disabled after error message

former_member185116
Active Participant
0 Kudos

hello all,

in the module pool screen below,

in the above screen when the total fields are empty i am raising an error message "Press Enter Button to get Total'.

but after after displaying this error message the whole screen is getting disabled for input, (i.e nothing is happening if i press enter button)..

i have written a code to get sum when i press enter button..

how do i eliminate this...

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Please change the Message type as warning.

Message 'Press Enter Button to get total' type 'W' Display like 'E'.

Try this. If you pass the Error message the screen will not display in Editable mode.

Thanks,

Dhina..

4 REPLIES 4

Former Member
0 Kudos

Hi,

Please change the Message type as warning.

Message 'Press Enter Button to get total' type 'W' Display like 'E'.

Try this. If you pass the Error message the screen will not display in Editable mode.

Thanks,

Dhina..

0 Kudos

hi dhina,

u r right,

solved my problem,

thanks a lot for u r quick reply...

Former Member
0 Kudos

hi vinay,

     ur error message type may type 'E'.pls change to 'I'.its a information type but display like 'E'.

for example,

    Message 'Press Enter Button to get total' type 'I' Display like 'E'.

Former Member
0 Kudos

Hi,

If you are validating for fields say  FIELD1 and FIELD2, you can validate like this also.

Process after Input

*Include chain and endchain.

chain.

field FIELD1 .

field FIELD2.

module validation on chain input.

endchain.

In the module validation, write your validation code and pop the error(which you need to display).

So the remaining fields in group should be enabled.

Thanks

Vijay