Skip to Content
0
Jul 03, 2020 at 12:15 PM

Creating a new ABAP-Report: should I use includes ?

1383 Views

When creating an ABAP-Report: what is the current best-practice in regards to using includes? Use them or not? In the past it was like this:

Report Y_MY_REPORT.

Include Y_MY_REPORT_top.
Include Y_MY_REPORT_cld.
Include Y_MY_REPORT_sel.
Include Y_MY_REPORT_cli.

...does this still make sense?! (Why?) Or should I just put all the code in the report itself?! (I use AdT on case that maters).