<?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: skip first screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562392#M857251</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; Not sure , but try AN RETURN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SUBMIT RM07DOCS WITH MATNR IN S_MATNR&lt;/P&gt;&lt;P&gt;                                WITH BUDAT IN S_BUDAT &lt;STRONG&gt;AND RETURN&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Mar 2008 12:30:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-19T12:30:32Z</dc:date>
    <item>
      <title>skip first screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562387#M857246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need small help with calling transaction MB51.  This is code that i use:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;set parameter id 'MAT' field wa_output-matnr.
call transaction 'MB51' and skip first screen.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code calls MB51 with full filled MATNR-LOW on selection screen of MB51.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to full fill the field "posting date" (BUDAT-LOW) because this filed doesen't have a parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tomi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 10:55:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562387#M857246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T10:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: skip first screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562388#M857247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tomi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

"Assume S_MATNR contains the materials 
"       S_BUDAT contains the posting date to be passed to MB51 transaction

SUBMIT RM07DOCS WITH MATNR IN S_MATNR
                                WITH BUDAT IN S_BUDAT.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Balaji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 12:00:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562388#M857247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T12:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: skip first screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562389#M857248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works... but the problem is if I call the program RM07DOCS from ALV grid. After leaving from MB51 I would like to stay in my program. In your example after pressing F3 system exit from my calling program. any solution for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advace,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tomi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 12:26:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562389#M857248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T12:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: skip first screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562390#M857249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try SUBMIT.. AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SUBMIT RM07DOCS WITH MATNR IN S_MATNR
                                WITH BUDAT IN S_BUDAT
                                 AND RETURN. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Balaji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 12:29:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562390#M857249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T12:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: skip first screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562391#M857250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry man! The solution is adding the statement "AND RETURN" &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much! 10 points for this &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 12:29:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562391#M857250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T12:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: skip first screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562392#M857251</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; Not sure , but try AN RETURN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SUBMIT RM07DOCS WITH MATNR IN S_MATNR&lt;/P&gt;&lt;P&gt;                                WITH BUDAT IN S_BUDAT &lt;STRONG&gt;AND RETURN&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 12:30:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen/m-p/3562392#M857251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T12:30:32Z</dc:date>
    </item>
  </channel>
</rss>

