<?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: report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962290#M67718</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;If you don't have any parameters or selction options or radio buttons... etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way could be, give an information message as a first statement in your start of selection.  In that message you can write whatever the text you want to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this work out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye..&lt;/P&gt;&lt;P&gt;Santala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Aug 2005 13:59:53 GMT</pubDate>
    <dc:creator>former_member700946</dc:creator>
    <dc:date>2005-08-11T13:59:53Z</dc:date>
    <item>
      <title>report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962286#M67714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have completed a report but the problem is that in my report I have no select-options or parameters. What do I have to do to have a screen before executing the report, where to write some text? (Now, when executing the program it shows up the final list). &lt;/P&gt;&lt;P&gt;I tried this:&lt;/P&gt;&lt;P&gt;selection-screen begin of block raport with frame title text-111.&lt;/P&gt;&lt;P&gt;selection-screen begin of line .&lt;/P&gt;&lt;P&gt;selection-screen comment (20) text-222 .&lt;/P&gt;&lt;P&gt;selection-screen end of line .&lt;/P&gt;&lt;P&gt;selection-screen end of block raport .&lt;/P&gt;&lt;P&gt;But it's not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2005 13:35:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962286#M67714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-11T13:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962287#M67715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like you need to have at least one PARAMETERS or SELECT-OPTIONS statement in order for the selection-screen to be thrown.  Here is a work around.  Put a display only field at the end of your text line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

selection-screen begin of block raport with frame title text-111.
selection-screen begin of line .
selection-screen comment (20) text-222 .
selection-screen position 79.
parameters: p_check.
selection-screen end of line .
selection-screen end of block raport .

at selection-screen output.

  loop at screen.
    screen-input = '0'.
    modify screen.
  endloop.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2005 13:45:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962287#M67715</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-08-11T13:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962288#M67716</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;so set an dummy-parameter (without function)&lt;/P&gt;&lt;P&gt;'test' at your sel-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2005 13:47:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962288#M67716</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-08-11T13:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962289#M67717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, have you used LSMW?  when launch LSMW, you can see a modal screen popup with the introduction content before entering LSMW. (using tcode LSMW)&lt;/P&gt;&lt;P&gt;If you can that effect, you can develop a smiliar effect in your application. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN &amp;lt;scrn&amp;gt;&lt;/P&gt;&lt;P&gt;     STARTING AT &amp;lt;X1&amp;gt; &amp;lt;Y1&amp;gt;&lt;/P&gt;&lt;P&gt;     ENDING AT   &amp;lt;X2&amp;gt; &amp;lt;Y2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;scrn&amp;gt; is a modal screen, and X Y is the axis position for show screen.&lt;/P&gt;&lt;P&gt;You can add it in the Initialize event. With no parameter or select-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will be helpful&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: zhenglin gu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2005 13:50:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962289#M67717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-11T13:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962290#M67718</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;If you don't have any parameters or selction options or radio buttons... etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way could be, give an information message as a first statement in your start of selection.  In that message you can write whatever the text you want to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this work out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye..&lt;/P&gt;&lt;P&gt;Santala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2005 13:59:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962290#M67718</guid>
      <dc:creator>former_member700946</dc:creator>
      <dc:date>2005-08-11T13:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962291#M67719</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;If you want text area in selection screen,refer this standard SAP program.&lt;/P&gt;&lt;P&gt;SAPTEXTEDIT_TEST_EVENTS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2005 08:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962291#M67719</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-08-12T08:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962292#M67720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi George,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wouldnt it be a good idea to create a screen containing the required static text which you may call at the start of the START-OF-SELECTION event followed by the program logic for your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 14:04:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962292#M67720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T14:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962293#M67721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you dont require a selection screen, why do you want it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still if you wabt it.. you can add some parameters&lt;/P&gt;&lt;P&gt;and then make them invisible in the event&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 14:20:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962293#M67721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T14:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962294#M67722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Use &amp;lt;b&amp;gt;Initialization&amp;lt;/b&amp;gt; event.&lt;/P&gt;&lt;P&gt;Hope it will useful.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 14:25:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/962294#M67722</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-03-08T14:25:21Z</dc:date>
    </item>
  </channel>
</rss>

