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).