<?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: Method: Internal table as a formal parameter ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036635#M1610360</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually if you wanted to pass an internal table to a method in a global class you could easily enough define the internal table  as a public attribute of the class. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could then reference that internal table in your calling program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EG: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your global class...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  public section.

    types:
      begin of gty_mara,
               matnr type matnr,
               maktx type maktx,
             end  of gty_mara .
    data:
      gt_mara type standard table of gty_mara .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your calling program....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
   data: gt_mara type standard table of zcl_ng_demo=&amp;gt;gty_mara.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Passing / Returning the internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
   gt_mara = gr_demo-&amp;gt;get_material_info( p_matnr ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your method you would use the LIKE typing when defining your parameter and point it towards gt_mara. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course this is only applicable if you creating your own custom global class. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this clarifies things a little.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Jul 2011 00:56:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-07-15T00:56:49Z</dc:date>
    <item>
      <title>Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036628#M1610353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to know wether there is a way to hand an internal table over as formal parameter in a method?&lt;/P&gt;&lt;P&gt;For instance let's say we have the following method in a DEFINITION part of a class:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
            calc_something                    IMPORTING itab TYPE TABLE OF afvv
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course, that doesn't work but that would be very handy. Is there a way of doing that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your answers in advanced.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2011 10:02:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036628#M1610353</guid>
      <dc:creator>former_member232785</dc:creator>
      <dc:date>2011-07-14T10:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036629#M1610354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the problem to have it as TYPE ANY TABLE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternative would be using &lt;STRONG&gt;data references&lt;/STRONG&gt; (TYPE REF TO DATA), then pass reference of table and dereference it inside method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2011 10:28:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036629#M1610354</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2011-07-14T10:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036630#M1610355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;No, you can not do that. Everything in the interface of a method requires a data dictionary reference. What you can do is, create a structure in the dictionary using SE11 and then use this structure to create a table types in the dictionary. Now you can define a variable in the method parameter in reference to this table type, and pass your internal table (use [ ] sign beside the name of the table) to this method in your calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  CALL METHOD abc-&amp;gt;test_method
    EXPORTING
      it_vbap               = lt_vbap[ ]
      it_ztab                = itab[ ]
      it_idoc_data        = edidd[ ]
    IMPORTING
      error_flag           = lv_flag
     ......

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried and tested &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Anid&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2011 10:29:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036630#M1610355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-14T10:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036631#M1610356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, it is possible. You just need to see Marcins' answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2011 10:47:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036631#M1610356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-14T10:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036632#M1610357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;Alternative would be using data references (TYPE REF TO DATA), then pass reference of table and dereference it inside method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;@Marcin, could you provide an completely example ? I didn't catch what you trying to explain &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2011 11:08:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036632#M1610357</guid>
      <dc:creator>former_member232785</dc:creator>
      <dc:date>2011-07-14T11:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036633#M1610358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the formal param of the method is not dynamic(i.e., the internal table will always have a structure of AFVV), then I will do it this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Define a private table "type" in the class:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: ty_t_line TYPE TABLE OF afvv.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Define the formal param using the type defined in Step1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IMPORTING im_tab TYPE ty_t_line&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Marcin, Neil: If the type of the actual param is fixed, do you think using generic table type(TYPE ANY TABLE) or data references(TYPE REF TO data) is required? Your inputs please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2011 12:15:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036633#M1610358</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-07-14T12:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036634#M1610359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to have a table type either in the data dictionary or in the local types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example for local type:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: lyt_tab TYPE TABLE OF your_desired_type

CLASS zcl_test DEFINITION.
  PUBLIC SECTION.
    METHODS:
      test
        IMPORTING it_tab TYPE lyt_tab.
ENDCLASS.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example for dictionary table type:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CLASS zcl_test DEFINITION.
  PUBLIC SECTION.
    METHODS:
      test
        IMPORTING it_tab TYPE dictionary_table_type.
ENDCLASS.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the class builder (se24) when specyfying parameters, you need to have dictionary table type in order to pass internal table to the method. There are only LIKE, TYPE and TYPE REF TO options to specify, there is no TYPE TABLE OF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2011 12:52:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036634#M1610359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-14T12:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036635#M1610360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually if you wanted to pass an internal table to a method in a global class you could easily enough define the internal table  as a public attribute of the class. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could then reference that internal table in your calling program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EG: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your global class...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  public section.

    types:
      begin of gty_mara,
               matnr type matnr,
               maktx type maktx,
             end  of gty_mara .
    data:
      gt_mara type standard table of gty_mara .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your calling program....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
   data: gt_mara type standard table of zcl_ng_demo=&amp;gt;gty_mara.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Passing / Returning the internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
   gt_mara = gr_demo-&amp;gt;get_material_info( p_matnr ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your method you would use the LIKE typing when defining your parameter and point it towards gt_mara. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course this is only applicable if you creating your own custom global class. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this clarifies things a little.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2011 00:56:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036635#M1610360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-15T00:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036636#M1610361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just a sample for the reference thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data:
  lr_data type ref to data.

get reference of gt_itab into lr_data.

call method process_table changing cr_table = lr_data.

** implementation
method process_table 
  changing cr_table type ref to data.
  field-symbols:
    &amp;lt;table&amp;gt;  type table,
    &amp;lt;record&amp;gt; type any,
    &amp;lt;field&amp;gt; type any,
    &amp;lt;vbak&amp;gt; type vbak.
* just some possibilities
ASSIGN cr_table-&amp;gt;* to &amp;lt;table&amp;gt;.
LOOP AT &amp;lt;table&amp;gt; ASSIGNING &amp;lt;VBAK&amp;gt;.
* This will dump if passed reference is not of table with structure VBAK
  &amp;lt;VBAK&amp;gt;-VBELN = 'xxx'.
ENDLOOP.

LOOP AT &amp;lt;table&amp;gt; ASSIGNING &amp;lt;record&amp;gt;.
  ASSIGN FIELD 'VBELN' OF STRUCTURE &amp;lt;record&amp;gt; TO &amp;lt;field&amp;gt;.
  &amp;lt;field&amp;gt; = 'xxx'.
* This will dump if no field VBELN is in the table structure - check SY-SUBRC first
ENDLOOP.

endmethod.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jul 2011 13:15:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036636#M1610361</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-07-24T13:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036637#M1610362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that is a calll-by-reference example, isn't it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jul 2011 13:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036637#M1610362</guid>
      <dc:creator>former_member232785</dc:creator>
      <dc:date>2011-07-24T13:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036638#M1610363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the type of the actual param is fixed(rather "not dynamic"), then what is the need to pass a data reference to the method?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jul 2011 15:22:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036638#M1610363</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-07-24T15:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036639#M1610364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes,Robert, I just wrote &lt;EM&gt;just a sample for the reference thing.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and pretty much shortened.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jul 2011 15:23:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036639#M1610364</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-07-24T15:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036640#M1610365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;none. If you do not check &lt;EM&gt;the pass-by-value&lt;/EM&gt; flag, it is passed by reference anyway. But you have to define a table type if there is nothing useful in DDIC. For public methods, the type must be declared in DDIC, otherwise in local TYPES of class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jul 2011 15:27:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036640#M1610365</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-07-24T15:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Method: Internal table as a formal parameter ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036641#M1610366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 07:05:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/method-internal-table-as-a-formal-parameter/m-p/8036641#M1610366</guid>
      <dc:creator>former_member232785</dc:creator>
      <dc:date>2011-07-25T07:05:51Z</dc:date>
    </item>
  </channel>
</rss>

