INCLUDE incl [IF FOUND].
The statement INCLUDE includes the Include program incl at this position in a source text. During syntax checking and generation of the program by the ABAP Compiler, the application is replaced by the source text of the Include program. The included INCLUDE program must consist of full statements.
If the specified Include program does not exist, a syntax error will be triggered. This error message
can be suppressed as of Release 6.40 by specifiying the addition IF FOUND.
These lines display the framework program of the function group ABAP_DOCU, which represents the ABAP keyword documentation on the
SAP NetWeaver Application Server ABAP.
It contains solely INCLUDE statements that include the actual source text.
*--------------------------------------------------------*
* System plus User-defined Include-files.
*
*--------------------------------------------------------*
INCLUDE labap_docutop. " Global Data
INCLUDE labap_docuf01. " Class for docu display
INCLUDE labap_docuuxx. " Function Modules
*--------------------------------------------------------*
* User-defined Include-files (if necessary). *
*--------------------------------------------------------*
INCLUDE labap_docuo01. " PBO Modules
INCLUDE labap_docui01. " PAI Modules
INCLUDE labap_docue01. " Handling of Runtime Events