SAP INTERFACE DEFERRED ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• DEFERRED INTERFACE
• PUBLIC INTERFACE DEFERRED

INTERFACE, DEFERRED
Short Reference

ABAP_SYNTAX
INTERFACE intf DEFERRED $[PUBLIC$].

What does it do?
This variant of the statement INTERFACE is used to declare the interface intf independently of the location of the actual definition in the program. It does not introduce a declaration part and cannot be ended using ENDINTERFACE. The meaning is the same as for the corresponding variants of the statement CLASS.



Latest notes:

This variant of the statement INTERFACE can also only be specified in the context described under INTERFACE.
NON_V5_HINTS
ABAP_HINT_END

ABAP_EXAMPLE_VX5
Use of the interface intf2 in front of the actual declaration in a type reference in the interface intf1. For this, it must be made known using INTERFACE DEFERRED.
ABEXA 00357
ABAP_EXAMPLE_END

Return to menu