<?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: Sap Script - Print Multi line in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-print-multi-line/m-p/4463967#M1057722</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;move data to one more internal table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt;  l_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;  read table itab2 index l_tabix.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    concatenate itab1-field itab2-fields into it_final-field separated by space.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    move itab1-field to it_final-field.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  append it_final.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use it_final data....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Sep 2008 12:45:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-09T12:45:15Z</dc:date>
    <item>
      <title>Sap Script - Print Multi line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-print-multi-line/m-p/4463966#M1057721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I want to print two internal table data in Parallel lines in SAP Script. How to print?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table 1 Data:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ORDER#&lt;/P&gt;&lt;P&gt;KIMBAL&lt;/P&gt;&lt;P&gt;COL/SI&lt;/P&gt;&lt;P&gt;QTY.&lt;/P&gt;&lt;P&gt;NT.WT.&lt;/P&gt;&lt;P&gt;GR.WT.&lt;/P&gt;&lt;P&gt;CTN.NO&lt;/P&gt;&lt;P&gt;1-100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tabel 2 Data:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;100% COTTON KNITTED LADIES CARDIGAN                     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;100% COTTON KNITTED LADIES CARDIGAN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I want to print like this&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORDER#           100% COTTON KNITTED LADIES CARDIGAN&lt;/P&gt;&lt;P&gt;KIMBAL            100% COTTON KNITTED LADIES CARDIGAN&lt;/P&gt;&lt;P&gt;COL/SI&lt;/P&gt;&lt;P&gt;QTY.&lt;/P&gt;&lt;P&gt;NT.WT.&lt;/P&gt;&lt;P&gt;GR.WT.&lt;/P&gt;&lt;P&gt;CTN.NO&lt;/P&gt;&lt;P&gt;1-100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( If possible, i want to print "100% COTTON KNITTED LADIES CARDIGAN" in 2 or more lines.)&lt;/P&gt;&lt;P&gt;&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;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 12:42:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-print-multi-line/m-p/4463966#M1057721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T12:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: Sap Script - Print Multi line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-print-multi-line/m-p/4463967#M1057722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;move data to one more internal table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt;  l_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;  read table itab2 index l_tabix.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    concatenate itab1-field itab2-fields into it_final-field separated by space.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    move itab1-field to it_final-field.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  append it_final.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use it_final data....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 12:45:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-print-multi-line/m-p/4463967#M1057722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T12:45:15Z</dc:date>
    </item>
  </channel>
</rss>

