Skip to content

ABAP Keyword Documentation →  ABAP - Reference →  Declarative statemnts →  Typing 

Generic and Complete Typing

The example shows how to access generically and completely typed formal parameters.

Other versions: 7.31 | 7.40 | 7.54

Source Code

REPORT demo_typing.

CLASS demo_typing DEFINITION.
  PUBLIC SECTION.
    CLASS-METHODS start.
  PRIVATE SECTION.
    TYPES: BEGIN OF struc1,
             cola TYPE i,
             colb TYPE i,
           END OF struc1,
           BEGIN OF struc2,
             colb TYPE i,
             cola TYPE i,
           END OF struc2,
           itab1g TYPE TABLE OF struc1,
           itab2g TYPE TABLE OF struc2,
           itab2c TYPE TABLE OF struc2 WITH NON-UNIQUE DEFAULT KEY.
    CLASS-METHODS sort_itab IMPORTING value(pg) TYPE itab2g
                                     value(pc) TYPE itab2c.
ENDCLASS.

CLASS demo_typing IMPLEMENTATION.
  METHOD start.
    DATA: tab TYPE itab1g,
          wa  LIKE LINE OF tab.
    DO 5 TIMES.
      wa-cola = sy-index.
      wa-colb = 6 - sy-index.
      APPEND wa TO tab.
    ENDDO.
    sort_itab( pg = tab
               pc = tab ).
  ENDMETHOD.
  METHOD sort_itab.
    SORT pg BY cola.
    cl_abap_demo_services=>list_table( pg ).
    SORT pg BY ('COLA').
    cl_abap_demo_services=>list_table( pg ).
    SORT pc BY cola.
    cl_abap_demo_services=>list_table( pc ).
    SORT pc BY ('COLA').
    cl_abap_demo_services=>list_table( pc ).
  ENDMETHOD.
ENDCLASS.

START-OF-SELECTION.
  demo_typing=>start( ).

Description

In the class demo_typing, three table types are declared:

  • itab1g has the line type struc1 with the components cola and colb. It is generic since the primary table key has not been specified.
  • itab2g has the line type struc2 with the components colb and cola. It is generic since the primary table key has not been specified.
  • itab2c has the line type struc2 with the components cola and colb. It is complete since the primary table key has been specified.

The method sort_itab has two formal parameters:

  • pg is typed generically with itab2g.
  • pc is typed completely with itab2c.

In the method start, an internal table tab is declared by referring to itab1g. The key is specified implicitly. This table is filled and passed to the formal parameters of sort_itab.

In sort_itab, both formal parameters are sorted twice. In the first sort, the column cola is specified statically as a sort criterion, in the second sort, it is specified dynamically. The behaviour is as follows:

  • The first SORT statement statically accesses the generically typed formal parameter pg. In this case, the typing with itab2g takes priority in which cola is the second column.
  • The second SORT statement dynamically accesses the generically typed formal parameter pg. In this case, the type of the actual parameter itab1g takes priority in which cola is the first colulmn.
  • The third and fourth SORT statements dynamically or statically access the completely typed formal parameter pc. In these cases, the typing with itab2c takes priority in which cola is the second column.

If components of generically typed formal parameters are accessed dynamically, a runtime error may occur if the components do not exist in the actual parameter.