EXPERT RESPONSE
Includes are not called. They are simply inserted "as is" within ABAP code, at the point where they are referenced. Commenting out a SAP include means that that program no longer uses that particular ABAP fragment. Any other programs using the SAP include are unaffected.
I've seen coding like this:
IF cond.
INCLUDE includea.
ELSE.
INCLUDE includeb.
ENDIF.
This is ambiguous coding, so is usually a bad thing to do. Includea and includeb are always included. It isn't conditional.
|