<?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: Problem with Word Wrap in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-word-wrap/m-p/1537343#M245136</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 don't think word wrap is going to split the word, it will atke up teh next sentence. Pass 'N' number of lines to teh table OUT_LINES which are going to be of type c.&lt;/P&gt;&lt;P&gt;Then it will not split..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of g_lines occurs 0,&lt;/P&gt;&lt;P&gt;      g_outline(100),&lt;/P&gt;&lt;P&gt;      end of g_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;populate g_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Theja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Aug 2006 10:52:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-07T10:52:10Z</dc:date>
    <item>
      <title>Problem with Word Wrap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-word-wrap/m-p/1537342#M245135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to display the contents of the Standard Text in the SAPscript output without breaking the words in between.If  I use RKD_WORD_WRAP i need to specify the output length ..but the length may split the word in between which should not happen.What else can I try?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help by posting ur ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;stock&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2006 10:47:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-word-wrap/m-p/1537342#M245135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-07T10:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Word Wrap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-word-wrap/m-p/1537343#M245136</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 don't think word wrap is going to split the word, it will atke up teh next sentence. Pass 'N' number of lines to teh table OUT_LINES which are going to be of type c.&lt;/P&gt;&lt;P&gt;Then it will not split..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of g_lines occurs 0,&lt;/P&gt;&lt;P&gt;      g_outline(100),&lt;/P&gt;&lt;P&gt;      end of g_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;populate g_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Theja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2006 10:52:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-word-wrap/m-p/1537343#M245136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-07T10:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Word Wrap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-word-wrap/m-p/1537344#M245137</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;Just pass ' ' to your DELIMITER parameter, it will not break your contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like,&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            = p_text&lt;/P&gt;&lt;P&gt;              delimiter           = ' '&lt;/P&gt;&lt;P&gt;              outputlen           = 35&lt;/P&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;              out_line1           = text_line1&lt;/P&gt;&lt;P&gt;              out_line2           = text_line2&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;              outputlen_too_large = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Naimesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2006 11:20:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-word-wrap/m-p/1537344#M245137</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2006-08-07T11:20:41Z</dc:date>
    </item>
  </channel>
</rss>

