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

module poll getting disabled after error message

former_member185116
Active Participant
0 Likes
2,845

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
Read only

Former Member
0 Likes
1,887

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
Read only

Former Member
0 Likes
1,888

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

Read only

0 Likes
1,887

hi dhina,

u r right,

solved my problem,

thanks a lot for u r quick reply...

Read only

Former Member
0 Likes
1,887

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

Read only

Former Member
0 Likes
1,887

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