<?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: Appending data from the fieldstring into itab in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644163#M608935</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mahesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          do n times.&lt;/P&gt;&lt;P&gt;     do p_flds times.&lt;/P&gt;&lt;P&gt;    assign component sy-index of structure &amp;lt;dyn_wa&amp;gt; to &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;LOG = &amp;lt;dyn_field&amp;gt;..&lt;/P&gt;&lt;P&gt;  enddo.&lt;/P&gt;&lt;P&gt;  enddo.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here &amp;lt;b&amp;gt;p_flds&amp;lt;/b&amp;gt; is the no of columns in the Dynamic internal table and &amp;lt;b&amp;gt;n&amp;lt;/b&amp;gt;  is the number of rows of the Dynamic internal table which can be obtained by apllying &amp;lt;b&amp;gt;describe&amp;lt;/b&amp;gt; command on the the Dynamic internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If found use full.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rama Murthy.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Aug 2007 06:32:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-23T06:32:05Z</dc:date>
    <item>
      <title>Appending data from the fieldstring into itab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644161#M608933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Write out data from table.&lt;/P&gt;&lt;P&gt;Loop at &amp;lt;dyn_table&amp;gt; into &amp;lt;dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;do.&lt;/P&gt;&lt;P&gt;assign component sy-index of structure &amp;lt;dyn_wa&amp;gt; to &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  exit.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*if sy-index = 1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; write:/ &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*else.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; write: &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-index = 1.&lt;/P&gt;&lt;P&gt;    LOG = &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt; else.&lt;/P&gt;&lt;P&gt;    LOG = &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;APPEND LOG.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above logic, i was getting all the records into the LOG within a single line, but i'm expeting to get the records by rows and columns into the LOG just like they are in &amp;lt;dyn_table&amp;gt;, and even i'm getting exact expected format, when i uncomment the write:/ statement to display as a list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i get like 001 M001 ABC&lt;/P&gt;&lt;P&gt;instead of  &lt;/P&gt;&lt;P&gt;001&lt;/P&gt;&lt;P&gt;M001&lt;/P&gt;&lt;P&gt;ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here LOG is the structure of TAB512.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pl.give me some inputs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 04:44:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644161#M608933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T04:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Appending data from the fieldstring into itab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644162#M608934</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;I think my question is clear, if not, pl.let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with best regards&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644162#M608934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Appending data from the fieldstring into itab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644163#M608935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mahesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          do n times.&lt;/P&gt;&lt;P&gt;     do p_flds times.&lt;/P&gt;&lt;P&gt;    assign component sy-index of structure &amp;lt;dyn_wa&amp;gt; to &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;LOG = &amp;lt;dyn_field&amp;gt;..&lt;/P&gt;&lt;P&gt;  enddo.&lt;/P&gt;&lt;P&gt;  enddo.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here &amp;lt;b&amp;gt;p_flds&amp;lt;/b&amp;gt; is the no of columns in the Dynamic internal table and &amp;lt;b&amp;gt;n&amp;lt;/b&amp;gt;  is the number of rows of the Dynamic internal table which can be obtained by apllying &amp;lt;b&amp;gt;describe&amp;lt;/b&amp;gt; command on the the Dynamic internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If found use full.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rama Murthy.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 06:32:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644163#M608935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T06:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Appending data from the fieldstring into itab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644164#M608936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mahesh,&lt;/P&gt;&lt;P&gt;       The above code of mine should definitely serve your purpose.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rama Murthy.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 06:35:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644164#M608936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T06:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Appending data from the fieldstring into itab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644165#M608937</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;i got it by a simple move.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 11:49:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644165#M608937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T11:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Appending data from the fieldstring into itab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644166#M608938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 11:53:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-data-from-the-fieldstring-into-itab/m-p/2644166#M608938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T11:53:22Z</dc:date>
    </item>
  </channel>
</rss>

