<?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 Set Parameter id problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650789#M1094413</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to post the following coding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'RBN' FIELD '9600000000'.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MIR6' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I execute this program, the Document number field is blank in MIR6, &lt;/P&gt;&lt;P&gt;I try to press F1 in the Document number,the Parameter ID is RBN, &lt;/P&gt;&lt;P&gt;which I use correcly in my coding. Can anyone tell me why data is not passed in the Document number field in MIR6?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use the load program in that case its going to shortdump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Oct 2008 17:47:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-22T17:47:43Z</dc:date>
    <item>
      <title>Set Parameter id problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650789#M1094413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to post the following coding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'RBN' FIELD '9600000000'.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MIR6' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I execute this program, the Document number field is blank in MIR6, &lt;/P&gt;&lt;P&gt;I try to press F1 in the Document number,the Parameter ID is RBN, &lt;/P&gt;&lt;P&gt;which I use correcly in my coding. Can anyone tell me why data is not passed in the Document number field in MIR6?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use the load program in that case its going to shortdump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 17:47:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650789#M1094413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T17:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter id problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650790#M1094414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Document number is a select option.You cannot fill it by SET parameter ID.instead you have to use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;reportname&amp;gt; WITH param1 = ''&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT SAPMM08N WITH SO_BELNR-LOW = '9600000000'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 18:05:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650790#M1094414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T18:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter id problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650791#M1094415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Pass the value to a variable. This variable must have the same data type that has the parameter id RBN and then pass it to the parameter id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;something like this :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data var1 type ....  

set parameter id 'RBN' field var1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 18:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650791#M1094415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T18:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter id problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650792#M1094416</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;I got the same in my system, maybe because there are a lot of subscreens(this subscreens are selections-screens) or there is any "FREE" statament in the PBO screens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexandre&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 18:21:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650792#M1094416</guid>
      <dc:creator>alexandre_docarmorocha</dc:creator>
      <dc:date>2008-10-22T18:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter id problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650793#M1094417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you need to pass many parameters like year, company code,  vendor.  instead you can call MIR4. why can't you try that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 18:40:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650793#M1094417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T18:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter id problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650794#M1094418</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;SET PARAMETER ID should work for SELECT-OPTIONS also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per SAP Help: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On a selection screen, you link fields to parameters using the MEMORY ID addition in the PARAMETERS or SELECT-OPTIONS statement. If you specify an SPA/GPA parameter ID when you declare a parameter or selection option, the corresponding input field is linked to that input field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the Link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/EN/9f/db9e0435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/EN/9f/db9e0435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 19:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-id-problem/m-p/4650794#M1094418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T19:00:36Z</dc:date>
    </item>
  </channel>
</rss>

