<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Calling super method dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149579#M748902</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Indeed, this is one of the very few occasions where I agree to say that something is not possible within SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Dec 2007 08:17:25 GMT</pubDate>
    <dc:creator>uwe_schieferstein</dc:creator>
    <dc:date>2007-12-21T08:17:25Z</dc:date>
    <item>
      <title>Calling super method dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149571#M748894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to call a method on the super class dynamically in order to be able to provide the parameters in a table. So I tried something like:&lt;/P&gt;&lt;P&gt;  CALL METHOD super-&amp;gt;( 'MY_METHOD' )&lt;/P&gt;&lt;P&gt;    PARAMETER-TABLE lth_parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This leads to the error message "Mit SUPER-&amp;gt; kann nur die vorige Implementierung der eigenen Methode aufgerufen werden.". MY_METHOD is the same method as the one in which I try to place this call but it still complains. However, I can not call it statically since I have quite some optional parameters to provide and there are many different combinations of IS SUPPLIED logics in the called super method. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know hot to call the super method dynamically or statically plus providing the parameters as a table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 14:40:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149571#M748894</guid>
      <dc:creator>michael_halfmann</dc:creator>
      <dc:date>2007-12-17T14:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Calling super method dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149572#M748895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;i haven't figured out yet, which part you want to do dynamically.&lt;/P&gt;&lt;P&gt;Do you want to decide whether it's got to be &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;me-&amp;gt;method&lt;/STRONG&gt; or&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;super-&amp;gt;method&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Or is it mainly the call with parameter table?&lt;/P&gt;&lt;P&gt;Your error implies that the method, you try to call has not been redefined in your actual method. Check whether you get the same error message when you call the method statically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;JW&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 17:27:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149572#M748895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T17:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Calling super method dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149573#M748896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jörg,&lt;/P&gt;&lt;P&gt;my aim is to be able to call the method with a parameter table, therefore I have to call it dynamically. Or is there a way to call it statically but still providing the parameters via a table?&lt;/P&gt;&lt;P&gt;It has to be super-&amp;gt;.... The method is actually redefined so I can call it statically using the statement SUPER-&amp;gt;MY_METHOD( ... ). This leads to no syntax error.&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 07:36:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149573#M748896</guid>
      <dc:creator>michael_halfmann</dc:creator>
      <dc:date>2007-12-18T07:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Calling super method dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149574#M748897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you're going to have to break the inheritance, and code the "super" functionality in a differently named method of the superclass, with the same interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 08:39:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149574#M748897</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2007-12-18T08:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Calling super method dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149575#M748898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;parameter tables are restricted to dynamic calls, but still &lt;/P&gt;&lt;P&gt;you could try to make a semi dynamic call like this:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA: mymethod type string value 'DO_SOMETHING'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;call method SUPER-&amp;gt;(mymethod) PARAMETER-TABLE ptab&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define ptab of type &lt;STRONG&gt;ABAP_PARMBIND_TAB&lt;/STRONG&gt; (remember to include type-pool &lt;EM&gt;ABAP&lt;/EM&gt; to your class definition).&lt;/P&gt;&lt;P&gt;Give one row for each parameter composed of:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NAME&lt;/STRONG&gt; &lt;EM&gt;name of formal parameter in capitals&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;KIND&lt;/STRONG&gt; &lt;EM&gt;one of (I)MPORTING; (E)XPORTING; (C)HANGING; (R)ETURNING/(R)ECEIVING&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;VALUE&lt;/STRONG&gt; &lt;EM&gt;ref to data that points to actual paramter&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that should do the trick&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;JW&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Dec 2007 15:08:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149575#M748898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-20T15:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calling super method dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149576#M748899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried that, but couldn't get it to work.  Have you actually got it working?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Dec 2007 18:24:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149576#M748899</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2007-12-20T18:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calling super method dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149577#M748900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It tried this too and it did not work. Since we can call only the very same method in the superclass is does not make sense to allow dynamic calling of this SUPER method. At least this is my explanation of the observed behaviour.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not really sure if the following sample report &lt;STRONG&gt;ZUS_SDN_CALL_METHOD_DYNAMIC&lt;/STRONG&gt; is helpful at all but it might give you some new ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZUS_SDN_CALL_METHOD_DYNAMIC&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  zus_sdn_call_method_dynamic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: abap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_superclass DEFINITION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_superclass DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PROTECTED SECTION.&lt;/P&gt;&lt;P&gt;    METHODS:&lt;/P&gt;&lt;P&gt;      my_method_1&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          value(id_text)  TYPE clike.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_superclass DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_subclass  DEFINITION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_subclass DEFINITION&lt;/P&gt;&lt;P&gt;  INHERITING FROM lcl_superclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    METHODS:&lt;/P&gt;&lt;P&gt;      constructor&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          value(io_parent)  TYPE REF TO lcl_superclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PROTECTED SECTION.&lt;/P&gt;&lt;P&gt;    DATA:&lt;/P&gt;&lt;P&gt;      mo_super    TYPE REF TO lcl_superclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    METHODS:&lt;/P&gt;&lt;P&gt;      my_method_1 REDEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_subclass  DEFINITIO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_superclass IMPLEMENTATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_superclass IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD my_method_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE: / 'SUPER: my_method_1 &amp;amp;', id_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "my_method_1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_superclass IMPLEMENTATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_subclass IMPLEMENTATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_subclass IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD constructor.&lt;/P&gt;&lt;P&gt;    super-&amp;gt;constructor( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    me-&amp;gt;mo_super = io_parent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    me-&amp;gt;my_method_1( 'normal call' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "constructor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD my_method_1.&lt;/P&gt;&lt;P&gt;    DATA:&lt;/P&gt;&lt;P&gt;      ld_data    TYPE REF TO data,&lt;/P&gt;&lt;P&gt;      ld_string  TYPE string,&lt;/P&gt;&lt;P&gt;      ld_method  TYPE string,&lt;/P&gt;&lt;P&gt;      ls_param   TYPE abap_parmbind,&lt;/P&gt;&lt;P&gt;      lt_params  TYPE abap_parmbind_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE: / 'SUBCLASS: my_method_1 &amp;amp;', id_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    super-&amp;gt;my_method_1( 'super called' ).  " ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ld_method = 'MY_METHOD_1'.&lt;/P&gt;&lt;P&gt;    CALL METHOD me-&amp;gt;mo_super-&amp;gt;(ld_method)&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        id_text = 'super (partially) dynamically called'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLEAR: ls_param.&lt;/P&gt;&lt;P&gt;    ls_param-name = 'ID_TEXT'.&lt;/P&gt;&lt;P&gt;    ls_param-kind = 'E'.  " exporting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ld_string = 'super (fully) dynamically called'.&lt;/P&gt;&lt;P&gt;    GET REFERENCE OF ld_string INTO ls_param-value.&lt;/P&gt;&lt;P&gt;    INSERT ls_param INTO TABLE lt_params.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD me-&amp;gt;mo_super-&amp;gt;(ld_method)&lt;/P&gt;&lt;P&gt;      PARAMETER-TABLE&lt;/P&gt;&lt;P&gt;        lt_params.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "my_method_1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_subclass IMPLEMENTATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  go_super    TYPE REF TO lcl_superclass,&lt;/P&gt;&lt;P&gt;  go_sub      TYPE REF TO lcl_subclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  BREAK-POINT.&lt;/P&gt;&lt;P&gt;  CREATE OBJECT go_super.&lt;/P&gt;&lt;P&gt;  CREATE OBJECT go_sub&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      io_parent = go_super.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Dec 2007 23:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149577#M748900</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-12-20T23:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Calling super method dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149578#M748901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answer. I fear that what I want to do is not possible. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example program calls the method on another object of the superclass. That would be a workaround for some cases. Unfortunately in my case I really need to call the super-method on the same object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 08:04:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149578#M748901</guid>
      <dc:creator>michael_halfmann</dc:creator>
      <dc:date>2007-12-21T08:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Calling super method dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149579#M748902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Indeed, this is one of the very few occasions where I agree to say that something is not possible within SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 08:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-super-method-dynamically/m-p/3149579#M748902</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-12-21T08:17:25Z</dc:date>
    </item>
  </channel>
</rss>

