<?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: Internal table text data in new window in SAP SCRIPT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967759#M700377</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;Can you check the window height? That might be causing the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Oct 2007 17:03:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-23T17:03:43Z</dc:date>
    <item>
      <title>Internal table text data in new window in SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967756#M700374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is print the header text data at the end of the main window &amp;amp; also at last page which is in the form internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a new window for this &amp;amp; I am extracting the header text data into internal table &amp;amp; using the variables in the new window script. But it is displaying only the last line........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please I am in need of help regarding this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 14:58:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967756#M700374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T14:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table text data in new window in SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967757#M700375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;display the internal tables lines with offsetting in each line separately to print the all lines&lt;/P&gt;&lt;P&gt;/  &amp;amp;ITAB-LINES+0(50)&amp;amp;&lt;/P&gt;&lt;P&gt;/  &amp;amp;ITAB-LINES+51(50)&amp;amp;&lt;/P&gt;&lt;P&gt;/  &amp;amp;ITAB-LINES+101(50)&amp;amp;&lt;/P&gt;&lt;P&gt;/  &amp;amp;ITAB-LINES+151(50)&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND SEE THE OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 15:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967757#M700375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T15:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table text data in new window in SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967758#M700376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anji,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for quick response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But even inthis case also it is displaying the last line only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my print program the code is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT LINES1 . &lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          WINDOW  = 'INVTXTMG'&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          ELEMENT = 1&lt;/P&gt;&lt;P&gt;          WINDOW  = 2.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;        PERFORM PROTOCOL_UPDATE.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script Editor:&lt;/P&gt;&lt;P&gt;&amp;amp;LINES1-TDLINE+0(45)&amp;amp;&lt;/P&gt;&lt;P&gt;&amp;amp;LINES1-TDLINE+45(70)&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal table consists of atleast 5 lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Waiting for your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 16:51:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967758#M700376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T16:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table text data in new window in SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967759#M700377</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;Can you check the window height? That might be causing the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 17:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967759#M700377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T17:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table text data in new window in SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967760#M700378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The window height is 2.00 CM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 17:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967760#M700378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T17:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table text data in new window in SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967761#M700379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;ur code seems to be OK. try increasing the window space and see.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 12:17:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967761#M700379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T12:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table text data in new window in SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967762#M700380</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;Though I increased the height &amp;amp; width of the window it is displaying only the last line........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me with this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 17:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-text-data-in-new-window-in-sap-script/m-p/2967762#M700380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T17:01:19Z</dc:date>
    </item>
  </channel>
</rss>

