<?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: Converting 2 internal tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007719#M409398</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt; You can use the function module&lt;/P&gt;&lt;P&gt;RKD_WORD_WRAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_docs.&lt;/P&gt;&lt;P&gt;refresh t_out.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RKD_WORD_WRAP'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    textline                  = it_DOCS-data&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DELIMITER                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   OUTPUTLEN                 = 255&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   OUT_LINES                 = t_out&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   OUTPUTLEN_TOO_LARGE       = 1&lt;/P&gt;&lt;P&gt;   OTHERS                    = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;append lines of t_out to t_final. "For each loop pass&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Mar 2007 10:59:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-07T10:59:41Z</dc:date>
    <item>
      <title>Converting 2 internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007718#M409397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I've get binary data from a sap function module in an internal table in structure DOCS (line length 1024). The next FM needs this data in an internal table in structure SOLISTI1 (line length 255). How do I have to convert these tables?&lt;/P&gt;&lt;P&gt;Thanks for any hints!&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 10:55:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007718#M409397</guid>
      <dc:creator>Peter_Lintner</dc:creator>
      <dc:date>2007-03-07T10:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Converting 2 internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007719#M409398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt; You can use the function module&lt;/P&gt;&lt;P&gt;RKD_WORD_WRAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_docs.&lt;/P&gt;&lt;P&gt;refresh t_out.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RKD_WORD_WRAP'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    textline                  = it_DOCS-data&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DELIMITER                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   OUTPUTLEN                 = 255&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   OUT_LINES                 = t_out&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   OUTPUTLEN_TOO_LARGE       = 1&lt;/P&gt;&lt;P&gt;   OTHERS                    = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;append lines of t_out to t_final. "For each loop pass&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 10:59:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007719#M409398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T10:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: Converting 2 internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007720#M409399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, this does not solve my problem, because the FM delivers 5 rows for each original row. The 5th ist just 4 bytes long and not 255.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 11:14:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007720#M409399</guid>
      <dc:creator>Peter_Lintner</dc:creator>
      <dc:date>2007-03-07T11:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Converting 2 internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007721#M409400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I've solved the problem myself by writing a temporary file and reading it with the the new length.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 14:40:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007721#M409400</guid>
      <dc:creator>Peter_Lintner</dc:creator>
      <dc:date>2007-06-22T14:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Converting 2 internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007722#M409401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I've solved the problem myself by writing a temporary file and reading it with the the new length.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 14:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-2-internal-tables/m-p/2007722#M409401</guid>
      <dc:creator>Peter_Lintner</dc:creator>
      <dc:date>2007-06-22T14:49:40Z</dc:date>
    </item>
  </channel>
</rss>

