Tuesday, August 11, 2020

Method Overloading (Not Supported in OOABAP)(CLASS 15)

  *&---------------------------------------------------------------------*
*& Report  ZOOABAP_CL15
*&Method Overloading (Not Supported in OOABAP)
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*
REPORT ZOOABAP_CL15.
class lcl_ABC1 DEFINITION.
  public SECTION.
    methods ABC.
    methods ABC IMPORTING type i.
    methods ABC importing type c.
    methods ABC IMPORTING type type c.
endclass.