Hiding Extended program check errors for Includes in ABAP
Posted
by Esti
on Stack Overflow
See other posts from Stack Overflow
or by Esti
Published on 2010-03-08T00:49:56Z
Indexed on
2010/03/08
0:52 UTC
Read the original article
Hit count: 823
How can I stop the ABAP extended program check (SLIN) from reporting errors in include libraries that I may not have write access to?
I like to leave the extended check with as few errors & warnings as possible, usually when I intentionally use something in a way that may cause a warning, I use the pseudo comments ("#EC * etc) to hide the message. This also tells the next programmer that I at least thought about the possible consequences of using something in a particular way.
When these statements are in includes that I have no control over, I would like to hide the messages without changing the offending libraries/includes.
© Stack Overflow or respective owner