Listing 2.1  Codefragment zum Einbinden eines Includes
REPORT zptb00_business_transaction.
INCLUDE zptb00_constants.
PARAMETERS:
  net_price TYPE p DECIMALS 2.
DATA:
  gross_price TYPE p DECIMALS 2.
* con_sales_tax is in include zptb00_constants defined.
  Gross_price = net_price + net_price * con_sales_tax.