<?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: Problem with TRANSPORTING  field inside a loop in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-transporting-field-inside-a-loop/m-p/3277738#M783771</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MODIFY TABLE IT_ITAB FROM WA_ITAB TRANSPORTING  FKART TABIX.&lt;/P&gt;&lt;P&gt;use the above code and let me know whether table is modified or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jan 2008 22:52:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-09T22:52:30Z</dc:date>
    <item>
      <title>Problem with TRANSPORTING  field inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-transporting-field-inside-a-loop/m-p/3277737#M783770</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;Problem with TRANSPORTING  field inside a loop&lt;/P&gt;&lt;P&gt;Please see code below and advice &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The &lt;STRONG&gt;fields dont get updated FKART &amp;amp; TABIX&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;        VBELN LIKE VBRK-VBELN,&lt;/P&gt;&lt;P&gt;        FKART LIKE VBRK-FKART,&lt;/P&gt;&lt;P&gt;        VKORG LIKE VBRK-VKORG,&lt;/P&gt;&lt;P&gt;        TABIX LIKE SY-TABIX,&lt;/P&gt;&lt;P&gt;       END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : WA_ITAB LIKE LINE OF ITAB.&lt;/P&gt;&lt;P&gt;DATA : IT_ITAB LIKE STANDARD TABLE OF ITAB WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT VBELN FKART VKORG FROM VBRK INTO TABLE IT_ITAB&lt;/P&gt;&lt;P&gt;                         WHERE VBELN IN S_VBELN&lt;/P&gt;&lt;P&gt;                         AND   VKORG = P_VKORG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOOP AT IT_ITAB INTO WA_ITAB.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR i_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WA_ITAB-TABIX = SY-TABIX.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WA_ITAB-FKART = 'RAS'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MODIFY TABLE IT_ITAB FROM WA_ITAB TRANSPORTING TABIX  FKART.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table doesnt get modified ?????&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDLOOP.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 22:34:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-transporting-field-inside-a-loop/m-p/3277737#M783770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T22:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with TRANSPORTING  field inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-transporting-field-inside-a-loop/m-p/3277738#M783771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MODIFY TABLE IT_ITAB FROM WA_ITAB TRANSPORTING  FKART TABIX.&lt;/P&gt;&lt;P&gt;use the above code and let me know whether table is modified or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 22:52:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-transporting-field-inside-a-loop/m-p/3277738#M783771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T22:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with TRANSPORTING  field inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-transporting-field-inside-a-loop/m-p/3277739#M783772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramesh,&lt;/P&gt;&lt;P&gt;use &lt;STRONG&gt;MODIFY  IT_ITAB FROM WA_ITAB TRANSPORTING TABIX FKART.&lt;/STRONG&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;Amal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 00:44:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-transporting-field-inside-a-loop/m-p/3277739#M783772</guid>
      <dc:creator>former_member671224</dc:creator>
      <dc:date>2008-01-10T00:44:32Z</dc:date>
    </item>
  </channel>
</rss>

