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

will STOP work in RAISE

Former Member
0 Likes
482

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?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
463

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?

2 REPLIES 2
Read only

Former Member
0 Likes
463

Hi,

STOP will not work. as the stop statement, the control goes to the end of selection.

Reward.

Read only

Former Member
0 Likes
464

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.