<?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 fieldstring to internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fieldstring-to-internal-table/m-p/3379943#M811577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how do i transfer the data from field string into an internal table.&lt;/P&gt;&lt;P&gt;when does an field string end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we do the loop with the field string as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop.&lt;/P&gt;&lt;P&gt;item-bukrs = fieldstring-bukrs.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can some one help me with this.&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Feb 2008 16:45:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-07T16:45:37Z</dc:date>
    <item>
      <title>fieldstring to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fieldstring-to-internal-table/m-p/3379943#M811577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how do i transfer the data from field string into an internal table.&lt;/P&gt;&lt;P&gt;when does an field string end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we do the loop with the field string as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop.&lt;/P&gt;&lt;P&gt;item-bukrs = fieldstring-bukrs.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can some one help me with this.&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 16:45:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fieldstring-to-internal-table/m-p/3379943#M811577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T16:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: fieldstring to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fieldstring-to-internal-table/m-p/3379944#M811578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sanjana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used to do like this: If its a tab space in between the field..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : BEGIN OF in_file OCCURS 0,
data(1000),
END OF in_file.

-----

LOOP AT in_file.
SPLIT in_file AT c_tab INTO
wa_citm_b-type
wa_citm_b-vbeln
wa_citm_b-posnr
wa_citm_b-uepos
APPEND wa_citm_b TO lt_citm_b.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 17:22:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fieldstring-to-internal-table/m-p/3379944#M811578</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-02-07T17:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: fieldstring to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fieldstring-to-internal-table/m-p/3379945#M811579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sadaram,&lt;/P&gt;&lt;P&gt;thank you for the reply, it gets me to know about split.&lt;/P&gt;&lt;P&gt;but i have a fields symbol, which means, it might have variable number of columns for each row, then i cannot use split right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do u know of anyother way round.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 17:46:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fieldstring-to-internal-table/m-p/3379945#M811579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T17:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: fieldstring to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fieldstring-to-internal-table/m-p/3379946#M811580</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; Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Assign component 'BUKRS' of structure &amp;lt;Fs&amp;gt;  to &amp;lt;FS1&amp;gt;&lt;/P&gt;&lt;P&gt;  itab-bukrs = &amp;lt;FS1&amp;gt;     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  this is for field symbols , but i am not sure for field strings&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 18:46:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fieldstring-to-internal-table/m-p/3379946#M811580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T18:46:13Z</dc:date>
    </item>
  </channel>
</rss>

