<?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 Submit statemnt-check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statemnt-check/m-p/2959596#M698207</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I'm calling a standard SAP program RM06ENP0 by using the following statement.&lt;/P&gt;&lt;P&gt;SUBMIT RM06ENP0 AND RETURN&lt;/P&gt;&lt;P&gt;WITH i_ebeln IN s_ebeln&lt;/P&gt;&lt;P&gt;WITH i_ekorg IN s_ekorg&lt;/P&gt;&lt;P&gt;WITH i_ekgrp IN s_ekgrp&lt;/P&gt;&lt;P&gt;WITH WQ_SIMUL EQ SPACE.&lt;/P&gt;&lt;P&gt;The std program RM06ENP0 also has a check box named 'Test Run' as a selection screen parameter which is checked by default because of which submit fails to work.&lt;/P&gt;&lt;P&gt;So how do we uncheck this check box within the submit statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to check whether the checkbox is checked. if it is checked i need to uncheck it.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 03:53:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T03:53:59Z</dc:date>
    <item>
      <title>Submit statemnt-check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statemnt-check/m-p/2959596#M698207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I'm calling a standard SAP program RM06ENP0 by using the following statement.&lt;/P&gt;&lt;P&gt;SUBMIT RM06ENP0 AND RETURN&lt;/P&gt;&lt;P&gt;WITH i_ebeln IN s_ebeln&lt;/P&gt;&lt;P&gt;WITH i_ekorg IN s_ekorg&lt;/P&gt;&lt;P&gt;WITH i_ekgrp IN s_ekgrp&lt;/P&gt;&lt;P&gt;WITH WQ_SIMUL EQ SPACE.&lt;/P&gt;&lt;P&gt;The std program RM06ENP0 also has a check box named 'Test Run' as a selection screen parameter which is checked by default because of which submit fails to work.&lt;/P&gt;&lt;P&gt;So how do we uncheck this check box within the submit statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to check whether the checkbox is checked. if it is checked i need to uncheck it.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 03:53:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statemnt-check/m-p/2959596#M698207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T03:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Submit statemnt-check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statemnt-check/m-p/2959597#M698208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the name of the check box parameter is p_testrun pass the parameter in this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT RM06ENP0 AND RETURN
WITH i_ebeln IN s_ebeln
WITH i_ekorg IN s_ekorg
WITH i_ekgrp IN s_ekgrp
WITH WQ_SIMUL EQ SPACE.
WITH p_testrun = ' '. " give in here&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do not open multiple threads&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 04:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statemnt-check/m-p/2959597#M698208</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-10-11T04:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Submit statemnt-check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statemnt-check/m-p/2959598#M698209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Gopi,&lt;/P&gt;&lt;P&gt;Let me show you the code snippet for slection screen in the standard program RM06ENP0.&lt;/P&gt;&lt;P&gt;+SELECT-OPTIONS: I_EBELN FOR EKKO-EBELN,&lt;/P&gt;&lt;P&gt;                I_EKORG FOR EKKO-EKORG,&lt;/P&gt;&lt;P&gt;                I_EKGRP FOR EKKO-EKGRP,&lt;/P&gt;&lt;P&gt;                I_BSART FOR EKKO-BSART.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(79) TEXT-030.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;parameters:  updall type UPDATE_ALL as checkbox.&lt;/P&gt;&lt;P&gt;PARAMETERS:  WQ_SIMUL LIKE RM06W-SIMUL.&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;DATA: NEWMET LIKE RM06W-SIMUL VALUE 'X'&lt;/P&gt;. "später Parameter+&lt;BR /&gt;&lt;U&gt;The value of NEWMET has a value 'X' which should be changed to space.&lt;/U&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried giving NEWMET = space in the submit stmt of my program, but it didn'twork out. pls tell me how we can do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 04:45:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statemnt-check/m-p/2959598#M698209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T04:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: Submit statemnt-check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statemnt-check/m-p/2959599#M698210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhishek, I saw the standard report.&lt;/P&gt;&lt;P&gt;WQ_SIMUL is the parameter for Test Run.&lt;/P&gt;&lt;P&gt;So what you wrote shoudl be correct. But you can not give NEWMET to the submit program as it is neither a select options nor a parameters of the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to change its value copy the whole reprot into a Zreport and give its default value as ' ' SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT RM06ENP0 AND RETURN
WITH i_ebeln IN s_ebeln
WITH i_ekorg IN s_ekorg
WITH i_ekgrp IN s_ekgrp
WITH WQ_SIMUL EQ SPACE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 05:07:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statemnt-check/m-p/2959599#M698210</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-10-11T05:07:21Z</dc:date>
    </item>
  </channel>
</rss>

