<?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: Submit program RBDMON00 without selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-rbdmon00-without-selection-screen/m-p/6618977#M1440163</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;Check the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Check whether the inputs that you are passing, are sufficient enough to run the standard report (BD87). &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;2. Try to execute BD87 transaction directly with your inputs and check whether it is working in BD87. If you can execute directly in BD87, obviously it should work thru SUBMIT statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you find any problem in executing BD87 report directly, then solve it and replicate the same in passing parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Feb 2010 13:24:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-01T13:24:01Z</dc:date>
    <item>
      <title>Submit program RBDMON00 without selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-rbdmon00-without-selection-screen/m-p/6618975#M1440161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i m calling standard program RBDMON00 (of tcode BD87) in custom program using SUBMIT statement, i declared one selection screen in custom program with required parameter of selection screen of BD87,  now i want to skip selection screen of BD87 (that is selection screen of program RBDMON00), but problem is that it is still showing the selection screen of BD87 while it must skip that.  plz see my code and help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code : REPORT  ZMMR0320_03.&lt;/P&gt;&lt;P&gt;           tables : BTCH2170, EDIDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: TIME_0 LIKE EDIDC-UPDTIM VALUE '000000',&lt;/P&gt;&lt;P&gt;      TIME_24 LIKE EDIDC-UPDTIM VALUE '240000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: begin of block b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: skip 1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: CRETIM  FOR EDIDC-CRETIM DEFAULT TIME_0 TO TIME_24.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: CREDAT  FOR EDIDC-CREDAT DEFAULT SY-DATUM TO SY-DATUM,&lt;/P&gt;&lt;P&gt;                UPDTIM  FOR EDIDC-UPDTIM DEFAULT TIME_0 TO TIME_24,&lt;/P&gt;&lt;P&gt;                UPDDAT  FOR EDIDC-UPDDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: DOCNUM  FOR EDIDC-DOCNUM,&lt;/P&gt;&lt;P&gt;                STATUS  FOR EDIDC-STATUS,&lt;/P&gt;&lt;P&gt;                MESTYP  for EDIDC-MESTYP NO-DISPLAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: skip 2.&lt;/P&gt;&lt;P&gt;PARAMETER: r_idoc radiobutton group RAD user-command RADIO,&lt;/P&gt;&lt;P&gt;           r_re radiobutton group RAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: end of BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF r_re = 'X'.&lt;/P&gt;&lt;P&gt;SUBMIT RBDMON00 WITH sx_docnu in DOCNUM&lt;/P&gt;&lt;P&gt;                WITH sx_creda in CREDAT&lt;/P&gt;&lt;P&gt;                  with sx_creti in CRETIM&lt;/P&gt;&lt;P&gt;                  with sx_updda in UPDDAT&lt;/P&gt;&lt;P&gt;                   with sx_updti in UPDTIM&lt;/P&gt;&lt;P&gt;                  WITH sx_statu in STATUS&lt;/P&gt;&lt;P&gt;                   with sx_mesty in MESTYP&lt;/P&gt;&lt;P&gt;                   AND RETURN.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i also tried like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SUBMIT RBDMON00 WITH SELECTION-TABLE i_rsparams AND RETURN.&lt;/P&gt;&lt;P&gt;   SUBMIT RBDMON00 USING SELECTION-SETS OF PROGRAM 'ZMMR0320_03'.&lt;/P&gt;&lt;P&gt;but still showing selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 11:50:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-rbdmon00-without-selection-screen/m-p/6618975#M1440161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T11:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program RBDMON00 without selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-rbdmon00-without-selection-screen/m-p/6618976#M1440162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The screen is displayed when you submit the values to the program RBDMON00. This is because the screen that is displayed is not a Selection Screen. That is a Module Pool screen that is called and cannot be suppressed.&lt;/P&gt;&lt;P&gt;In case of Selection Screen, we can suppress the display of screen, but not in case of Module Pool Screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Rishi Mirwani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 13:10:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-rbdmon00-without-selection-screen/m-p/6618976#M1440162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T13:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program RBDMON00 without selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-rbdmon00-without-selection-screen/m-p/6618977#M1440163</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;Check the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Check whether the inputs that you are passing, are sufficient enough to run the standard report (BD87). &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;2. Try to execute BD87 transaction directly with your inputs and check whether it is working in BD87. If you can execute directly in BD87, obviously it should work thru SUBMIT statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you find any problem in executing BD87 report directly, then solve it and replicate the same in passing parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 13:24:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-rbdmon00-without-selection-screen/m-p/6618977#M1440163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T13:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program RBDMON00 without selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-rbdmon00-without-selection-screen/m-p/6618978#M1440164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rishi &amp;amp; prem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx for reply.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rishi : i checked this program is executable and screen is defined under selection screen then why it is not bypassing the selection screen? please tell if any other way is there....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;prem : i am passing the same values in original BD87 selection screen and it is working fine, but through submit it is not working.&lt;/P&gt;&lt;P&gt;          please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : when i copied this standard program in Z program then in include RBDMON00F02 i commented these lines then it is working fine with same input, but here i dont have to use Z program so please suggest me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF show_window IS INITIAL.&lt;/P&gt;&lt;P&gt;        CALL SELECTION-SCREEN 1100.       " &lt;STRONG&gt;i Commented this line...then it is not showing selection screen.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        CALL SELECTION-SCREEN 1100 STARTING AT 12 4.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2010 03:19:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-rbdmon00-without-selection-screen/m-p/6618978#M1440164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-02T03:19:44Z</dc:date>
    </item>
  </channel>
</rss>

