Skip to content

ABAP Keyword Documentation →  ABAP − Reference →  Program Layout →  Introductory Statements for Programs 

INTERFACE-POOL

Quick Reference

Other versions: 7.31 | 7.40 | 7.54

Syntax


INTERFACE-POOL. 

Effect

The statement INTERFACE-POOL introduces an interface pool. It must be the first statement of an interface pool after any include programs are resolved.

Interface pools are edited only with the tool Class Builder in ABAP Workbench. A master program for a global interface including the statement INTERFACE-POOL is generated automatically.

The full name of the master program of an interface pool in the repository starts with the name of the global interface, is padded with the character "=" up to and including position 30, and ends with "IP".

The names of the include programs of an interface pool included by the framework program are constructed in exactly the same way as the name of the interface pool itself, however they have different endings. Unlike in function groups, the actual structure of an interface pool constructed from include programs is the internal responsibility of ABAP Workbench and the ABAP runtime environment and is not displayed in Class Builder.


Note

The statements permitted in an interface pool are listed under Statements in Class Pools and Interface Pools.


Example

The name of the master program of the interface pool of the global interface IF_DEMO_CR_CAR_RENTL_SERVICE is IF_DEMO_CR_CAR_RENTL_SERVICE==IP.