<?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 with selection screen parameters - getting blank values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477149#M1418334</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;basically these are import parameters in a function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with the code as you suggested, but I'm still getting blank value for planning scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Dec 2009 10:32:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-24T10:32:28Z</dc:date>
    <item>
      <title>Submit program with selection screen parameters - getting blank values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477146#M1418331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I'm submitting a program with selection screen parameters. when I pass '000' (I_TPLSCN  )value for Planning Scenario and when this goes to selection screen then I don't see value for Planning scenario as '000'(I_TPLSCN  ) but the value is blank in selection screen. I'm using the below code for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT RMCPAMRP WITH MATNR_GL EQ I_MATNR   SIGN 'I'
                  WITH WERKS_GL EQ I_WERKS   SIGN 'I'
                  WITH PLSCN    EQ I_TPLSCN  SIGN 'I'
    via selection-screen        AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone please help me how to display value '000' rather than blanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Dec 2009 09:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477146#M1418331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-24T09:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with selection screen parameters - getting blank values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477147#M1418332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I_MATNR, I_TPLSCN and I_WERKS are variable then try with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT rmcpamrp
  WITH matnr_gl = i_matnr
  WITH plscn    = i_tplscn
  WITH werks_gl = i_werks
  via selection-screen        
   AND RETURN .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I_MATNR, I_TPLSCN and I_WERKS are of type range then try  with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT rmcpamrp
  WITH matnr_gl IN i_matnr
  WITH plscn    IN i_tplscn
  WITH werks_gl IN i_werks
via selection-screen        
   AND RETURN&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pawan Kesari on Dec 24, 2009 3:33 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Dec 2009 10:02:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477147#M1418332</guid>
      <dc:creator>Pawan_Kesari</dc:creator>
      <dc:date>2009-12-24T10:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with selection screen parameters - getting blank values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477148#M1418333</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;Just remove &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SIGN 'I'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;from &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WITH PLSCN    EQ I_TPLSCN  SIGN 'I'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is bcos PLSCN is not a select-option. It is a parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit Mittal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Dec 2009 10:29:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477148#M1418333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-24T10:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with selection screen parameters - getting blank values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477149#M1418334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;basically these are import parameters in a function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with the code as you suggested, but I'm still getting blank value for planning scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Dec 2009 10:32:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477149#M1418334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-24T10:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with selection screen parameters - getting blank values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477150#M1418335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried with the below again, but still getting blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT rmcpamrp
  WITH matnr_gl = i_matnr
  WITH plscn    = i_tplscn
  WITH werks_gl = i_werks
  via selection-screen
   AND RETURN .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Dec 2009 10:35:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477150#M1418335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-24T10:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with selection screen parameters - getting blank values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477151#M1418336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the values in variable just before they are passed ...&lt;/P&gt;&lt;P&gt;This code worked fine for me... check you how you declared the variables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : i_matnr TYPE marc-matnr VALUE 'AAAAA',
       i_tplscn TYPE plsc-plscn VALUE '111'  ,
       i_werks TYPE marc-werks  VALUE '1010' .

SUBMIT rmcpamrp
  WITH matnr_gl = i_matnr
  WITH plscn    = i_tplscn
  WITH werks_gl = i_werks
  VIA SELECTION-SCREEN
   AND RETURN .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Dec 2009 10:44:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477151#M1418336</guid>
      <dc:creator>Pawan_Kesari</dc:creator>
      <dc:date>2009-12-24T10:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with selection screen parameters - getting blank values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477152#M1418337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we pass '000' or enter manually on screen of that program, it will AUTOMATICALLY get blank, bcos zero 0 means blank for that field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you change the code to 001, (any &lt;STRONG&gt;NON-ZERO value&lt;/STRONG&gt;  ), then u will be able to see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit Mittal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Dec 2009 10:48:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477152#M1418337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-24T10:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with selection screen parameters - getting blank values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477153#M1418338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, the issue here is with Planning Scenario '000'. when I pass '000' as planning scenario, but after passing, in selection screen I can see blank value rather 000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Dec 2009 10:48:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477153#M1418338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-24T10:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with selection screen parameters - getting blank values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477154#M1418339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its a numc 3 value.. dats why you are not getting 000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;even if you execute RMCPAMRP and give 00 in planning scenario.. press ENTER. you will see that it will be changed to blank..&lt;/P&gt;&lt;P&gt;and it is a parameter.. PARAMETERS:     PLSCN LIKE PLSC-PLSCN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so it will automatically change to blank... hope you get my point...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Dec 2009 10:49:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-selection-screen-parameters-getting-blank-values/m-p/6477154#M1418339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-24T10:49:15Z</dc:date>
    </item>
  </channel>
</rss>

