Application Development 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: 

Unreachable statement

Former Member
0 Kudos

Hi experts,

After running the Extended check (SLIN) I got the following message:

Unreachable Statement After Jump Statement EXIT:

DESCRIBE TABLE i_table LINES itab_lines.

(You can hide the message using "#EC *)

My question: How can I eliminate this error?

2 REPLIES 2

former_member404244
Active Contributor
0 Kudos

Hi,

write the statement outside the loop and check.u can also hide the statemnt like this

DESCRIBE TABLE i_table LINES itab_lines. "#EC *.

Regards,

Nagaraj

varma_narayana
Active Contributor
0 Kudos

Hi...

If u have any statements that terminates the Current processing Block / Program such as

Leave to Screen...

Exit..

Stop..

Then any statements after them will not be reachable.

So you need to avoid them.

Paste ur code if u are not able to trace it.

<b>Reward if Helpful.</b>