<?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: Single Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142100#M746822</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A module pool program is easy&lt;/P&gt;&lt;P&gt;create a screen 100&lt;/P&gt;&lt;P&gt;add module pbo name module pbo_100.&lt;/P&gt;&lt;P&gt;and a pai module module pai_100 just after the respective event statement in flow logic of the screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the main report call the screen first&lt;/P&gt;&lt;P&gt;and call module pbo as&lt;/P&gt;&lt;P&gt;module pbo_100 output.&lt;/P&gt;&lt;P&gt;enter the desired code here where what you need to be done that is the above code&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Dec 2007 05:03:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-18T05:03:37Z</dc:date>
    <item>
      <title>Single Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142096#M746818</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; The Devlopment All Tcodes  are assign single screen&lt;/P&gt;&lt;P&gt;which will i select tcode  that tcode run&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how will assign all tcodes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 12:00:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142096#M746818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T12:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Single Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142097#M746819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All T-codes are will be present in Table TSTC. Write a qurey slecting all the t-codes from the TSTC and display every tocde in one screen. After clicking on particular t-code that t-code should be saved in one variable  and then use &lt;STRONG&gt;call transaction&lt;/STRONG&gt; statement give the varible name in single codes in which the t-code saved and it will run that t-code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; hope this will help u some...&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reward points if useful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 12:30:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142097#M746819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T12:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Single Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142098#M746820</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;REPORT zstemp.&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;PARAMETERS : tcode LIKE tstc-tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:itab LIKE tstc OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PARAMETER ID 'TCD' FIELD tcode.&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION  tcode .                                 " 'XK03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM tstc INTO TABLE itab UP TO 1000 ROWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE:/ itab-tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&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;Please use copy the above code  in se38 and run once and then change according to your requirement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful..........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 12:47:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142098#M746820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T12:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Single Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142099#M746821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Siva Parvathi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Thanks for your replying&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   i want module pool program &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;Thanks Regards&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 03:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142099#M746821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T03:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Single Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142100#M746822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A module pool program is easy&lt;/P&gt;&lt;P&gt;create a screen 100&lt;/P&gt;&lt;P&gt;add module pbo name module pbo_100.&lt;/P&gt;&lt;P&gt;and a pai module module pai_100 just after the respective event statement in flow logic of the screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the main report call the screen first&lt;/P&gt;&lt;P&gt;and call module pbo as&lt;/P&gt;&lt;P&gt;module pbo_100 output.&lt;/P&gt;&lt;P&gt;enter the desired code here where what you need to be done that is the above code&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 05:03:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-screen/m-p/3142100#M746822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T05:03:37Z</dc:date>
    </item>
  </channel>
</rss>

