<?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: Dynamic Transporting fields in Modify Internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639771#M27196</link>
    <description>&lt;P&gt;Yep, as documented. No internal table solution here, as we have it for SORT.&lt;/P&gt;
  &lt;P&gt;You have to prepare a set of fields and leave those empty, which you don't need.&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jan 2018 08:27:07 GMT</pubDate>
    <dc:creator>retired_member</dc:creator>
    <dc:date>2018-01-30T08:27:07Z</dc:date>
    <item>
      <title>Dynamic Transporting fields in Modify Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639766#M27191</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;Need to modify an internal table by transporting many fields but in dynamic way. As of now it is working good for one field. When I tried with multiple fields it is throwing error.&lt;/P&gt;
  &lt;P&gt;Below code is working fine for one field. &lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;DATA lv_fields TYPE string.
lv_fields = 'BSART'.
MODIFY lt_data FROM lw_data TRANSPORTING (lv_fields) WHERE ebeln = lw_temp-ebeln.
&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Below code is throwing error as two fields are used. &lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;DATA lv_fields TYPE string.
lv_fields = 'BSART BSTYP'.
MODIFY lt_data FROM lw_data TRANSPORTING (lv_fields) WHERE ebeln = lw_temp-ebeln.
&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Please provide a suggestion to use dynamic transporting with multiple fields.&lt;/P&gt;
  &lt;P&gt;Thanks in advance.&lt;/P&gt;
  &lt;P&gt;Regards,&lt;/P&gt;
  &lt;P&gt;Senthil kumar K&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 06:36:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639766#M27191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-30T06:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Transporting fields in Modify Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639767#M27192</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;DATA lv_field1 TYPE string.
DATA lv_field2 TYPE string.
lv_field1 = 'BSART'.
lv_field2 = 'BSTYP'.
MODIFY lt_data FROM lw_data TRANSPORTING (lv_field1) (lv_field2) WHERE ebeln = lw_temp-ebeln.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Jan 2018 06:42:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639767#M27192</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2018-01-30T06:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Transporting fields in Modify Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639768#M27193</link>
      <description>&lt;P&gt;What is the error.?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 06:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639768#M27193</guid>
      <dc:creator>former_member196331</dc:creator>
      <dc:date>2018-01-30T06:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Transporting fields in Modify Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639769#M27194</link>
      <description>&lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Getting error as &lt;STRONG&gt;ITAB_ILLEGAL_COMPONENT&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 07:55:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639769#M27194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-30T07:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Transporting fields in Modify Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639770#M27195</link>
      <description>&lt;P&gt;Hi Horst,&lt;/P&gt;
  &lt;P&gt;Thanks for your quick response. Very much appreciated.&lt;/P&gt;
  &lt;P&gt;So for each field we need to declare separate data object. &lt;/P&gt;
  &lt;P&gt;Thought there will be an option to have only one data object for N fields. So in that case it will become fully dynamic thus helping developer not to consider number of data objects to be declared even if the fields count are varying.&lt;/P&gt;
  &lt;P&gt;Thanks and Regards,&lt;/P&gt;
  &lt;P&gt;Senthil kumar K&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 08:18:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639770#M27195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-30T08:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Transporting fields in Modify Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639771#M27196</link>
      <description>&lt;P&gt;Yep, as documented. No internal table solution here, as we have it for SORT.&lt;/P&gt;
  &lt;P&gt;You have to prepare a set of fields and leave those empty, which you don't need.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 08:27:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-transporting-fields-in-modify-internal-table/m-p/639771#M27196</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2018-01-30T08:27:07Z</dc:date>
    </item>
  </channel>
</rss>

