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

pop up in module pool

Former Member
0 Likes
579

Hi forum,

My requirement is whenever i change entry which is greater than 1000 in table control i should get a pop up message 'wrong entry'.

Pls help me. its very urgent...

regards

mallika

1 ACCEPTED SOLUTION
Read only

prasanth_kasturi
Active Contributor
0 Likes
547

hi,

in PAI

use chanin... endchain in flow logic and in the module between chain and endchain

write a validation

use message type i

if value > 1000.

message 'WRONG ENTRY' type 'I'.

endif.

regards

prasanth

Hi forum,

My requirement is whenever i change entry which is greater than 1000 in table control i should get a pop up message 'wrong entry'.

Pls help me. its very urgent...

regards

mallika

3 REPLIES 3
Read only

prasanth_kasturi
Active Contributor
0 Likes
548

hi,

in PAI

use chanin... endchain in flow logic and in the module between chain and endchain

write a validation

use message type i

if value > 1000.

message 'WRONG ENTRY' type 'I'.

endif.

regards

prasanth

Read only

sangeetha_sk
Participant
0 Likes
547

U can check the no. of records in interanl table. If it exceed 1000, use FM "POPUP_TO_DISPLAY_TEXT" to display ur text

Read only

Former Member
0 Likes
547

Hi

U need to eraise an error message into the loop of PAI

PROCESS PAI.

   LOOP AT ITAB.
      FIELD ITAB-FIELD1 MODULE CHECK_VALUE.
   ENDLOOP.

MODULE CHECK_VALUE.
     IF ITAB-FIELD1 > 1000.
        MESSAGE E208(00) WITH 'Value is wrong'.
     ENDIF.
ENDMODULE.

Max