<?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 Splitting a character in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283624#M1388710</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 have a source field for text which is of length 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The target table field is a table type(the table type field is of 132) and it is dynamic.i.e a field symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have to split the field 2000 length into lines of 132 and move to the dynamic table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e in this case the total number of records will be 16 in the dynamic table.Later I have to download the table(Which is a field of the main target table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help how to do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Oct 2009 11:47:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-30T11:47:18Z</dc:date>
    <item>
      <title>Splitting a character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283624#M1388710</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 have a source field for text which is of length 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The target table field is a table type(the table type field is of 132) and it is dynamic.i.e a field symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have to split the field 2000 length into lines of 132 and move to the dynamic table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e in this case the total number of records will be 16 in the dynamic table.Later I have to download the table(Which is a field of the main target table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help how to do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 11:47:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283624#M1388710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T11:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283625#M1388711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM &lt;STRONG&gt;RKD_WORD_WRAP&lt;/STRONG&gt; with outputlen = 132&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 11:51:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283625#M1388711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T11:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283626#M1388712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please not that I am working in CRM environment and few FM like 'RKD_WORD_WRAP ' does not exist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 11:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283626#M1388712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T11:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283627#M1388713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
len = strlen( lv_string ).
lv_offset_mx = 131.
lv_offset_mn = 0.

div = CEIL(len / 132).

do div times.
clear wa.
wa-line = lv_string+lv_offset_mn(lv_offset_mx).
append wa to itab.
lv_offset_mn = 131.
enddo.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 11:58:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283627#M1388713</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-10-30T11:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283628#M1388714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check [this web log |http://wiki.sdn.sap.com/wiki/x/S4adAw]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 12:04:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283628#M1388714</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-10-30T12:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283629#M1388715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ther is a small change&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_offset_mn = lv_offset_mn + 131.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 12:09:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-character/m-p/6283629#M1388715</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-10-30T12:09:53Z</dc:date>
    </item>
  </channel>
</rss>

