<?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: Reg parameter table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184567#M1000273</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;Parameter table in Method call is Basically used when call method Dynamically and pass the actual parameter dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error you have mentioned occured when the specified and actual parameter are different.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just follow the procedure and criteria for using parameter table in case of method call in this link.Hope you will get to know the reason for the runtime error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm&lt;/A&gt;&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;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Jul 2008 09:01:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-28T09:01:53Z</dc:date>
    <item>
      <title>Reg parameter table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184564#M1000270</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;plz check my below program and exaplain me how to make use of parameter table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS cl_abap_objectdescr DEFINITION LOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS add DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    METHODS add IMPORTING x TYPE i&lt;/P&gt;&lt;P&gt;                          y TYPE i&lt;/P&gt;&lt;P&gt;                EXPORTING z TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "add DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS add IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD add.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    z = x + y.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "ADD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "ADD IMPLEMENTATION&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;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : x TYPE i VALUE 10,&lt;/P&gt;&lt;P&gt;         y TYPE i VALUE 20,&lt;/P&gt;&lt;P&gt;         z TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA :  it_ptab TYPE abap_parmbind_tab,&lt;/P&gt;&lt;P&gt;          wa_ptab TYPE abap_parmbind.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : obj TYPE REF TO add.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : add TYPE string VALUE 'ADD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_ptab-name = 'X'.&lt;/P&gt;&lt;P&gt;wa_ptab-kind = cl_abap_objectdescr=&amp;gt;exporting.&lt;/P&gt;&lt;P&gt;GET REFERENCE OF  X INTO wa_ptab-value.&lt;/P&gt;&lt;P&gt;INSERT wa_ptab INTO TABLE it_ptab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_ptab-name = 'Y'.&lt;/P&gt;&lt;P&gt;wa_ptab-kind = cl_abap_objectdescr=&amp;gt;exporting.&lt;/P&gt;&lt;P&gt;GET REFERENCE OF  Y INTO wa_ptab-value.&lt;/P&gt;&lt;P&gt;INSERT wa_ptab INTO TABLE it_ptab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_ptab-name = 'Z'.&lt;/P&gt;&lt;P&gt;wa_ptab-kind = cl_abap_objectdescr=&amp;gt;importing.&lt;/P&gt;&lt;P&gt;GET REFERENCE OF  Z INTO wa_ptab-value.&lt;/P&gt;&lt;P&gt;INSERT wa_ptab INTO TABLE it_ptab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT obj&lt;/P&gt;&lt;P&gt;    TYPE&lt;/P&gt;&lt;P&gt;      (add)&lt;/P&gt;&lt;P&gt;    PARAMETER-TABLE&lt;/P&gt;&lt;P&gt;      it_ptab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE : z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dump analysis is as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime Errors         DYN_CALL_METH_PARAM_NOT_FOUND&lt;/P&gt;&lt;P&gt;Except.                CX_SY_DYN_CALL_PARAM_NOT_FOUND&lt;/P&gt;&lt;P&gt;Date and Time          2008.07.28 02:10:02&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Short text&lt;/P&gt;&lt;P&gt;     Formal parameter not found during dynamic method call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 07:08:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184564#M1000270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T07:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Reg parameter table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184565#M1000271</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;Check this Link.Here is a Example -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapnet.ru/abap_docu/ABAPCALL_METHOD_ABAP_OBJECTS.htm" target="test_blank"&gt;http://www.sapnet.ru/abap_docu/ABAPCALL_METHOD_ABAP_OBJECTS.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out the reason of error here-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sapabap.iespana.es/manuales/abap46/abapcall_method_abap_objects.htm" target="test_blank"&gt;http://sapabap.iespana.es/manuales/abap46/abapcall_method_abap_objects.htm&lt;/A&gt;&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;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 07:11:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184565#M1000271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T07:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Reg parameter table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184566#M1000272</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;When to use parameter table addition with CREATE OBJECT statement?&lt;/P&gt;&lt;P&gt;and how to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With example in SAP HELP I tried but its leading to dump as in my program shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 07:38:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184566#M1000272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T07:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reg parameter table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184567#M1000273</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;Parameter table in Method call is Basically used when call method Dynamically and pass the actual parameter dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error you have mentioned occured when the specified and actual parameter are different.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just follow the procedure and criteria for using parameter table in case of method call in this link.Hope you will get to know the reason for the runtime error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm&lt;/A&gt;&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;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 09:01:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184567#M1000273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T09:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reg parameter table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184568#M1000274</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;You can Refer to the link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapnet.ru/abap_docu/ABAPCREATE_OBJECT_ABAP_OBJECTS.htm" target="test_blank"&gt;http://www.sapnet.ru/abap_docu/ABAPCREATE_OBJECT_ABAP_OBJECTS.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 09:19:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-parameter-table/m-p/4184568#M1000274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T09:19:39Z</dc:date>
    </item>
  </channel>
</rss>

