2008 Mar 22 7:38 AM
WE use RAISE statemrnt to leave a function module; now CHECK & EXITare okay if they are within a loop inside an F.M.,----
but can STOP work here?
2008 Mar 22 8:05 AM
stop will not work in function module. it's only using events in reports if u use it in any one of event it directly jumps to end-of-selection. if u use in end-of-selection it leaves the program.
check,exit work in the function module also.
WE use RAISE statemrnt to leave a function module; now CHECK & EXITare okay if they are within a loop inside an F.M.,----
but can STOP work here?
2008 Mar 22 8:01 AM
Hi,
STOP will not work. as the stop statement, the control goes to the end of selection.
Reward.
2008 Mar 22 8:05 AM
stop will not work in function module. it's only using events in reports if u use it in any one of event it directly jumps to end-of-selection. if u use in end-of-selection it leaves the program.
check,exit work in the function module also.