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 post exit be called after a RETURN?

daniel_humberg
Product and Topic Expert
Product and Topic Expert
0 Likes
545

I am planning to create some pre and post exits for some web dynpro components in my system.

Will a post exit be called if the method that I am enhancing runs into these statements:

- RETURN

- EXIT (outside a loop)

- RAISE

- RAISE EXCEPTION

- CHECK (with a condition that is false)

?

I am planning to create some pre and post exits for some web dynpro components in my system.

Will a post exit be called if the method that I am enhancing runs into these statements:

- RETURN

- EXIT (outside a loop)

- RAISE

- RAISE EXCEPTION

- CHECK (with a condition that is false)

?

1 REPLY 1
Read only

daniel_humberg
Product and Topic Expert
Product and Topic Expert
470

In case of RETURN, EXIT (outside a loop), and check, it WILL be called.

In case - RAISE

- RAISE EXCEPTION

- CHECK (with a condition that is false)