<?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 screen modification run time in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification-run-time/m-p/3725609#M896672</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;hello gurus , I m designing a screen for po , in that I want dynamic screen , suppose I have a button , when I wl click that a new window wl come in current scrren , ( like standard FINT tcode , in fi/co ,) hw to do , hw to write code for that , Plz send me some idea .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I m waiting for ur valuable idea .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&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;Joy Chakravorty .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Apr 2008 07:12:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-24T07:12:09Z</dc:date>
    <item>
      <title>screen modification run time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification-run-time/m-p/3725609#M896672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;hello gurus , I m designing a screen for po , in that I want dynamic screen , suppose I have a button , when I wl click that a new window wl come in current scrren , ( like standard FINT tcode , in fi/co ,) hw to do , hw to write code for that , Plz send me some idea .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I m waiting for ur valuable idea .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&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;Joy Chakravorty .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 07:12:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification-run-time/m-p/3725609#M896672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T07:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification run time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification-run-time/m-p/3725610#M896673</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;First define section screen parameters by giving the screen numbers then call the selection screen number in the program when ever it is required&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;Check the following code&lt;/STRONG&gt;*&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK SEL1 WITH FRAME TITLE TIT1.&lt;/P&gt;&lt;P&gt;PARAMETERS: CITYFR TYPE SPFLI-CITYFROM,&lt;/P&gt;&lt;P&gt;            CITYTO TYPE SPFLI-CITYTO.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK SEL1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN INCLUDE BLOCKS SEL1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK SEL2&lt;/P&gt;&lt;P&gt;                          WITH FRAME TITLE TIT2.&lt;/P&gt;&lt;P&gt;PARAMETERS: AIRPFR TYPE SPFLI-AIRPFROM,&lt;/P&gt;&lt;P&gt;            AIRPTO TYPE SPFLI-AIRPTO.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK SEL2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 500.&lt;/P&gt;&lt;P&gt;TART-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  TIT1 = 'Cities for Airports'.&lt;/P&gt;&lt;P&gt;  TIT2 = 'Airports'.&lt;/P&gt;&lt;P&gt;  CALL SELECTION-SCREEN 500 STARTING AT 10 10.&lt;/P&gt;&lt;P&gt;  TIT1 = 'Cities again'.&lt;/P&gt;&lt;P&gt;  CALL SELECTION-SCREEN 1000 STARTING AT 10 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write down the module pool program to handle screens dynamically&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transaction codes are&lt;/P&gt;&lt;P&gt;SE51 -&amp;gt; Screen Painter&lt;/P&gt;&lt;P&gt;SE38 -&amp;gt; ABAP editor&lt;/P&gt;&lt;P&gt;SE93-&amp;gt; Maintain Transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 08:27:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification-run-time/m-p/3725610#M896673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T08:27:28Z</dc:date>
    </item>
  </channel>
</rss>

