2008 May 29 7:52 AM
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
2008 May 29 7:53 AM
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
2008 May 29 7:53 AM
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
2008 May 29 7:55 AM
U can check the no. of records in interanl table. If it exceed 1000, use FM "POPUP_TO_DISPLAY_TEXT" to display ur text
2008 May 29 7:56 AM
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