<?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: Resizing screen 0 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/resizing-screen-0/m-p/3063067#M725696</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;See this example code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Parameters: p_peraf TYPE anlp-peraf.

*----------------------------------------------------------------------*
*  MODULE value_list OUTPUT
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
   MODULE value_list OUTPUT.
     SUPPRESS DIALOG.
     LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
     SET PF-STATUS space.
     NEW-PAGE NO-TITLE.
     WRITE text-h03 COLOR COL_HEADING.
     ULINE.
     p_peraf = '01'.
     WRITE: / p_peraf COLOR COL_KEY, '01'.
     HIDE p_peraf.
     p_peraf = '02'.
     WRITE: / p_peraf COLOR COL_KEY, '02'.
     HIDE p_peraf.
     p_peraf = '03'.
     WRITE: / p_peraf COLOR COL_KEY, '03'.
     HIDE p_peraf.
     p_peraf = '04'.
     WRITE: / p_peraf COLOR COL_KEY, '04'.
     HIDE p_peraf.
     p_peraf = '05'.
     WRITE: / p_peraf COLOR COL_KEY, '05'.
     HIDE p_peraf.
     p_peraf = '06'.
     WRITE: / p_peraf COLOR COL_KEY, '06'.
     HIDE p_peraf.
     p_peraf = '07'.
     WRITE: / p_peraf COLOR COL_KEY, '07'.
     HIDE p_peraf.
     p_peraf = '08'.
     WRITE: / p_peraf COLOR COL_KEY, '08'.
     HIDE p_peraf.
     p_peraf = '09'.
     WRITE: / p_peraf COLOR COL_KEY, '09'.
     HIDE p_peraf.
     p_peraf = '10'.
     WRITE: / p_peraf COLOR COL_KEY, '10'.
     HIDE p_peraf.
     p_peraf = '11'.
     WRITE: / p_peraf COLOR COL_KEY, '11'.
     HIDE p_peraf.
     p_peraf = '12'.
     WRITE: / p_peraf COLOR COL_KEY, '12'.
     HIDE p_peraf.
     CLEAR p_peraf.
   ENDMODULE.                    "value_list OUTPUT

   AT LINE-SELECTION.
     CHECK NOT p_peraf IS INITIAL.
     LEAVE TO SCREEN 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Dec 2007 11:07:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-03T11:07:43Z</dc:date>
    <item>
      <title>Resizing screen 0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/resizing-screen-0/m-p/3063065#M725694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, i need help. I'm a newbie...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to resize screen 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want show my search results on a resized screen, without using screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is of great appreciation...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2007 11:04:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/resizing-screen-0/m-p/3063065#M725694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-03T11:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Resizing screen 0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/resizing-screen-0/m-p/3063066#M725695</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;&lt;/P&gt;&lt;P&gt;   Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEAVE SCREEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2007 11:06:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/resizing-screen-0/m-p/3063066#M725695</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-12-03T11:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: Resizing screen 0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/resizing-screen-0/m-p/3063067#M725696</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;See this example code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Parameters: p_peraf TYPE anlp-peraf.

*----------------------------------------------------------------------*
*  MODULE value_list OUTPUT
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
   MODULE value_list OUTPUT.
     SUPPRESS DIALOG.
     LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
     SET PF-STATUS space.
     NEW-PAGE NO-TITLE.
     WRITE text-h03 COLOR COL_HEADING.
     ULINE.
     p_peraf = '01'.
     WRITE: / p_peraf COLOR COL_KEY, '01'.
     HIDE p_peraf.
     p_peraf = '02'.
     WRITE: / p_peraf COLOR COL_KEY, '02'.
     HIDE p_peraf.
     p_peraf = '03'.
     WRITE: / p_peraf COLOR COL_KEY, '03'.
     HIDE p_peraf.
     p_peraf = '04'.
     WRITE: / p_peraf COLOR COL_KEY, '04'.
     HIDE p_peraf.
     p_peraf = '05'.
     WRITE: / p_peraf COLOR COL_KEY, '05'.
     HIDE p_peraf.
     p_peraf = '06'.
     WRITE: / p_peraf COLOR COL_KEY, '06'.
     HIDE p_peraf.
     p_peraf = '07'.
     WRITE: / p_peraf COLOR COL_KEY, '07'.
     HIDE p_peraf.
     p_peraf = '08'.
     WRITE: / p_peraf COLOR COL_KEY, '08'.
     HIDE p_peraf.
     p_peraf = '09'.
     WRITE: / p_peraf COLOR COL_KEY, '09'.
     HIDE p_peraf.
     p_peraf = '10'.
     WRITE: / p_peraf COLOR COL_KEY, '10'.
     HIDE p_peraf.
     p_peraf = '11'.
     WRITE: / p_peraf COLOR COL_KEY, '11'.
     HIDE p_peraf.
     p_peraf = '12'.
     WRITE: / p_peraf COLOR COL_KEY, '12'.
     HIDE p_peraf.
     CLEAR p_peraf.
   ENDMODULE.                    "value_list OUTPUT

   AT LINE-SELECTION.
     CHECK NOT p_peraf IS INITIAL.
     LEAVE TO SCREEN 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2007 11:07:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/resizing-screen-0/m-p/3063067#M725696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-03T11:07:43Z</dc:date>
    </item>
  </channel>
</rss>

