<?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: Type conflict during dynamic method call. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306809#M1026929</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;Apologies ... for confusion ... actually both are required ...&lt;/P&gt;&lt;P&gt;the type 'E' as well as CL_GUI_CONTAINER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below code worked for me ... &lt;/P&gt;&lt;P&gt;check out how I cast it to the parent class type ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******************************************************************&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  DATA : lv_container   TYPE seoclsname VALUE 'CL_GUI_CUSTOM_CONTAINER',
         lv_control     TYPE seoclsname VALUE 'CL_GUI_ALV_GRID',
         lv_method      TYPE string VALUE 'SET_TABLE_FOR_FIRST_DISPLAY',
         lt_par_tab     TYPE abap_parmbind_tab,
         ls_param       LIKE LINE OF lt_par_tab,
         lref_cont      TYPE REF TO cl_gui_container,
         lv_data        TYPE REF TO data.

CREATE OBJECT lref_container
      TYPE
        (lv_container)
      EXPORTING
        container_name = 'ALV_AREA'.

    ls_param-name = 'I_PARENT'.
    ls_param-kind = 'E'.
    lref_cont ?= lref_container.
    GET REFERENCE OF lref_cont INTO lv_data.
    ls_param-value = lv_data.
    INSERT ls_param INTO TABLE lt_par_tab.

**  Now create ALV Control.
    CREATE OBJECT lref_alv_ctrl
      TYPE
        (lv_control)
      PARAMETER-TABLE
        lt_par_tab.

**  Set table for 1st display
    DATA : lv.
    lv = lref_alv_ctrl-&amp;gt;mc_fc_print.

    CALL METHOD lref_alv_ctrl-&amp;gt;(lv_method)
      EXPORTING
        i_structure_name = 'T001'
      CHANGING
        it_outtab        = lt_company.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Varun Verma on Aug 12, 2008 4:19 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Aug 2008 10:49:19 GMT</pubDate>
    <dc:creator>former_member69765</dc:creator>
    <dc:date>2008-08-12T10:49:19Z</dc:date>
    <item>
      <title>Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306800#M1026920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While executing the following program I get the error "Type conflict during dynamic method call.":&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: container_r  TYPE REF TO object,
      grid_r       TYPE REF TO object,
      itab_saplane TYPE TABLE OF saplane.

* IMPORTANT NOTE: class names must be in UPPER CASE
DATA: str_cnt TYPE seoclsname VALUE 'CL_GUI_CUSTOM_CONTAINER',
      str_gui TYPE seoclsname VALUE 'CL_GUI_ALV_GRID',
      meth_name TYPE STRING VALUE 'SET_TABLE_FOR_FIRST_DISPLAY'.

TYPE-POOLS abap.

DATA: ptab    TYPE abap_parmbind_tab,
      wa_ptab LIKE LINE OF ptab,
      ref     TYPE REF TO data.

CREATE OBJECT container_r TYPE (str_cnt)
  EXPORTING container_name = 'CUSTOM_CONTROL1'. " Name of the custom control area (UC!)

* Construct parameter itab
GET REFERENCE OF container_r INTO ref.
wa_ptab-name  = 'I_PARENT'.  " Must be upper-case
wa_ptab-value = ref.

INSERT wa_ptab INTO TABLE ptab.

*   EXPORTING i_parent = container_r.
CREATE OBJECT grid_r TYPE (str_gui)
  PARAMETER-TABLE ptab.

SELECT * FROM saplane INTO CORRESPONDING FIELDS OF TABLE itab_saplane.

* Cannot call set_table_for_first_display directly...
CALL METHOD grid_r-&amp;gt;(meth_name)
  EXPORTING I_STRUCTURE_NAME = 'SAPLANE'  " Type of the rows in the internal table  (UC!)
  CHANGING  IT_OUTTAB = itab_saplane.     " The internal table itself

CALL SCREEN 100.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any help would be appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 09:10:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306800#M1026920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T09:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306801#M1026921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;Not sure why are you complicating it when it could have been very simple !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nevertheless ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creating a object of Custom container is correct.. no errors here.&lt;/P&gt;&lt;P&gt;Creating an object of ALV GRID.. here .. it should be like this - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OBJECT grid_r TYPE (str_gui)&lt;/P&gt;&lt;P&gt;  i_parent = container_r&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean its not required that you find the reference, get it into table and pass the table ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For an simple example refer some controls related example here:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.abaplearning.com/index.php?option=com_content&amp;amp;view=section&amp;amp;id=2&amp;amp;Itemid=14" target="test_blank"&gt;http://www.abaplearning.com/index.php?option=com_content&amp;amp;view=section&amp;amp;id=2&amp;amp;Itemid=14&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you will have to register since this section is for members only..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Let us know at which statement you are getting the error .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 09:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306801#M1026921</guid>
      <dc:creator>former_member69765</dc:creator>
      <dc:date>2008-08-11T09:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306802#M1026922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply. Unfortunately I still get the &lt;EM&gt;same&lt;/EM&gt; error if I apply your modifications to my code. If your solution did work for you, can you please post the entire program so I can check where the problem lies?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And to answer your other question: The program is intentionally this complex; its only purpose is to improve my understanding of ABAP Objects. However, the type error resulting from executing the program is very uninformative... So I hope someone can help me pinpoint the problem in the &lt;EM&gt;original program&lt;/EM&gt; (without simplifying it) so I can fix it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, the above program is based on this more straightforward variant:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: container_r  TYPE REF TO cl_gui_custom_container,
      grid_r       TYPE REF TO cl_gui_alv_grid,
      itab_saplane TYPE TABLE OF saplane.

CREATE OBJECT container_r
  EXPORTING container_name = 'CUSTOM_CONTROL1'. " Name of the custom control area

CREATE OBJECT grid_r
  EXPORTING i_parent = container_r.

SELECT * FROM saplane INTO CORRESPONDING FIELDS OF TABLE itab_saplane.

CALL METHOD grid_r-&amp;gt;set_table_for_first_display
  EXPORTING I_STRUCTURE_NAME = 'SAPLANE'  " Type of the rows in the internal table
  CHANGING  IT_OUTTAB = itab_saplane.     " The internal table itself

CALL SCREEN 100.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:32:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306802#M1026922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T07:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306803#M1026923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well it is quiet simple...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error you are getting is "Type conflict during dynamic method call"&lt;/P&gt;&lt;P&gt;TYPE CONFLICT tells us that there during some method call the type you are passing is not compaitable to what is expected...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now check you code ..&lt;/P&gt;&lt;P&gt;CREATE OBJECT grid_r TYPE (str_gui)&lt;/P&gt;&lt;P&gt;  PARAMETER-TABLE ptab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here, you are creating an object of CL_GUI_ALV_GRID. When you create an object, the CONSTRUCTOR method is called.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you are making a dynamic call .. you need to populate 3 things .. type (Importing, Ecporting or changeng) etc..&lt;/P&gt;&lt;P&gt;NAme which is I_PARENT and the value .. which should be the reference !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you do "GET REFERENCE OF container_r INTO ref." the value of ref is the class name I believe... &lt;/P&gt;&lt;P&gt;You should directly populate the container_r to wa_ptab-value and it should work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this.. meanwhile I will write a code myself to see if it works.. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 08:03:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306803#M1026923</guid>
      <dc:creator>former_member69765</dc:creator>
      <dc:date>2008-08-12T08:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306804#M1026924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CONSTRUCTOR of CL_GUI_ALV_GRID wants a CL_GUI_CONTAINER as parent and you give her an OBJECT (static type). Without inheritance between OBJECT and CL_GUI_CONTAINER there is no polymorphism or casting, so you'll get a type conflict.&lt;/P&gt;&lt;P&gt;With container_r  TYPE REF TO CL_GUI_CONTAINER it works for me, cause container_r now has static type CL_GUI_CONTAINER and dynamic type CL_GUI_CUSTOM_CONTAINER (str_cnt)&lt;/P&gt;&lt;P&gt;regards, Karsten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 09:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306804#M1026924</guid>
      <dc:creator>karsten_korte</dc:creator>
      <dc:date>2008-08-12T09:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306805#M1026925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;I solved it ... IT worked for me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the tutorial and example on the below link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.abaplearning.com" target="test_blank"&gt;http://www.abaplearning.com&lt;/A&gt; (the tutorial is on the front page... )&lt;/P&gt;&lt;P&gt;The tutorial is for all ... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code examples is &lt;A href="http://www.abaplearning.com/index.php?option=com_content&amp;amp;view=section&amp;amp;id=2&amp;amp;Itemid=14" target="test_blank"&gt;http://www.abaplearning.com/index.php?option=com_content&amp;amp;view=section&amp;amp;id=2&amp;amp;Itemid=14&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: This is a members only section so you will have to register&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 09:35:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306805#M1026925</guid>
      <dc:creator>former_member69765</dc:creator>
      <dc:date>2008-08-12T09:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306806#M1026926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help (and the explanation as to why my code yielded a type error)!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 09:54:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306806#M1026926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T09:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306807#M1026927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By the way...&lt;/P&gt;&lt;P&gt;you code gives type conflict because you missed the type E (for exporting) ..&lt;/P&gt;&lt;P&gt;NOT because of CL_GUI_CONTAINER and CUSTOM_CONTAINER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you missed was : "ls_param-kind = 'E'."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you see my example.. I used the CL_GUI_CUSTOM_CONTAINER only and it works..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 10:27:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306807#M1026927</guid>
      <dc:creator>former_member69765</dc:creator>
      <dc:date>2008-08-12T10:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306808#M1026928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for pointing that out. However, if I add&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;wa_ptab-kind  = 'E'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to my code without also adding&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;container_r  TYPE REF TO CL_GUI_CONTAINER,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I still get the same type error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 10:39:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306808#M1026928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T10:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306809#M1026929</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;Apologies ... for confusion ... actually both are required ...&lt;/P&gt;&lt;P&gt;the type 'E' as well as CL_GUI_CONTAINER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below code worked for me ... &lt;/P&gt;&lt;P&gt;check out how I cast it to the parent class type ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******************************************************************&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  DATA : lv_container   TYPE seoclsname VALUE 'CL_GUI_CUSTOM_CONTAINER',
         lv_control     TYPE seoclsname VALUE 'CL_GUI_ALV_GRID',
         lv_method      TYPE string VALUE 'SET_TABLE_FOR_FIRST_DISPLAY',
         lt_par_tab     TYPE abap_parmbind_tab,
         ls_param       LIKE LINE OF lt_par_tab,
         lref_cont      TYPE REF TO cl_gui_container,
         lv_data        TYPE REF TO data.

CREATE OBJECT lref_container
      TYPE
        (lv_container)
      EXPORTING
        container_name = 'ALV_AREA'.

    ls_param-name = 'I_PARENT'.
    ls_param-kind = 'E'.
    lref_cont ?= lref_container.
    GET REFERENCE OF lref_cont INTO lv_data.
    ls_param-value = lv_data.
    INSERT ls_param INTO TABLE lt_par_tab.

**  Now create ALV Control.
    CREATE OBJECT lref_alv_ctrl
      TYPE
        (lv_control)
      PARAMETER-TABLE
        lt_par_tab.

**  Set table for 1st display
    DATA : lv.
    lv = lref_alv_ctrl-&amp;gt;mc_fc_print.

    CALL METHOD lref_alv_ctrl-&amp;gt;(lv_method)
      EXPORTING
        i_structure_name = 'T001'
      CHANGING
        it_outtab        = lt_company.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Varun Verma on Aug 12, 2008 4:19 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 10:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306809#M1026929</guid>
      <dc:creator>former_member69765</dc:creator>
      <dc:date>2008-08-12T10:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict during dynamic method call.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306810#M1026930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! It is good to know that the same can also be accomplished using a widening cast.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 13:24:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-during-dynamic-method-call/m-p/4306810#M1026930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T13:24:10Z</dc:date>
    </item>
  </channel>
</rss>

