<?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: How do I split multiple times? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-split-multiple-times/m-p/760635#M36918</link>
    <description>&lt;P&gt;Probably the OP is not pleased with your answer as it's now posted in stackoverflow: &lt;A href="https://stackoverflow.com/questions/54353779/how-do-i-split-multiple-times-in-abap" target="test_blank"&gt;https://stackoverflow.com/questions/54353779/how-do-i-split-multiple-times-in-abap&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 24 Jan 2019 20:11:05 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2019-01-24T20:11:05Z</dc:date>
    <item>
      <title>How do I split multiple times?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-split-multiple-times/m-p/760633#M36916</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
  &lt;P&gt;I want to split my code into a workarea and append this to a an internal table for a later perform.&lt;/P&gt;
  &lt;P&gt;But sometimes the text contains more than 3 numbers for example 3;5;3;6;2;5 but its always 3,6,9,12... number. How can I solve the problem that I want to loop 3 times, then the next 3 numbers and so on? &lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA: text(100) type c,
it_1 TYPE STANDART TABLE LIKE text,
it_2 TYPE STANDART TABLE LIKE text,
it_3 TYPE STANDART TABLE LIKE text,
string(100) TYPE c.


text = '123;2;2'.

SPLIT text AT ';' INTO  wa_1-c1 wa_1-c2 wa_1-c3.

APPEND wa_1-c1 to it_1.
APPEND wa_1-c2 to it_2.
APPEND wa_1-c3 to it_3.

LOOP at it_1 INTO string.
PERFORM task using string.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Jan 2019 14:18:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-split-multiple-times/m-p/760633#M36916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-01-23T14:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do I split multiple times?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-split-multiple-times/m-p/760634#M36917</link>
      <description>&lt;P&gt;F1 on SPLIT command &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SPLIT text AT ';' INTO TABLE ...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;A href="https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abapsplit.htm" target="test_blank"&gt;https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abapsplit.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 14:49:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-split-multiple-times/m-p/760634#M36917</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2019-01-23T14:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do I split multiple times?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-split-multiple-times/m-p/760635#M36918</link>
      <description>&lt;P&gt;Probably the OP is not pleased with your answer as it's now posted in stackoverflow: &lt;A href="https://stackoverflow.com/questions/54353779/how-do-i-split-multiple-times-in-abap" target="test_blank"&gt;https://stackoverflow.com/questions/54353779/how-do-i-split-multiple-times-in-abap&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 20:11:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-split-multiple-times/m-p/760635#M36918</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-01-24T20:11:05Z</dc:date>
    </item>
  </channel>
</rss>

