<?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: Doubt in SUBMIT command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596452#M866100</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't have SPACE value for both LOW and HIGH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't want any value for the delivery creation date field, save the variant without any values.&lt;/P&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, 02 Apr 2008 14:11:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-02T14:11:44Z</dc:date>
    <item>
      <title>Doubt in SUBMIT command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596450#M866098</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 am calling rvv50r10a program in my report using submit command. I created a variant in the selection screen of rvv50r10a. Now I want Deliv.creation date to have space for both low and high value. Am not able to save the high value as SPACE in the variant. How to make the high value as space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vanathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 10:19:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596450#M866098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T10:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in SUBMIT command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596451#M866099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look at the following code and put space as high and low value in the range table for delivery creation date. Instead of creating a variant try doing it as in the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'JOB_OPEN'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;JOBNAME = JOBNAME1&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;JOBCOUNT = JOBCOUNT1&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;CANT_CREATE_JOB = 1&lt;/P&gt;&lt;P&gt;INVALID_JOB_DATA = 2&lt;/P&gt;&lt;P&gt;JOBNAME_MISSING = 3&lt;/P&gt;&lt;P&gt;OTHERS = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RHALEINI&lt;/P&gt;&lt;P&gt;WITH SELECTION-TABLE RSPAR_TAB1&lt;/P&gt;&lt;P&gt;WITH PCHOTYPE EQ 'P'&lt;/P&gt;&lt;P&gt;WITH PCHPLVAR EQ '01'&lt;/P&gt;&lt;P&gt;WITH PCHZTR_D EQ 'X'&lt;/P&gt;&lt;P&gt;WITH RCVPRN EQ S_PART&lt;/P&gt;&lt;P&gt;VIA JOB JOBNAME1 NUMBER JOBCOUNT1&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;WRITE / TEXT-A00.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'JOB_CLOSE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;JOBCOUNT = JOBCOUNT1&lt;/P&gt;&lt;P&gt;JOBNAME = JOBNAME1&lt;/P&gt;&lt;P&gt;STRTIMMED = 'X'&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;CANT_START_IMMEDIATE = 1&lt;/P&gt;&lt;P&gt;INVALID_STARTDATE = 2&lt;/P&gt;&lt;P&gt;JOBNAME_MISSING = 3&lt;/P&gt;&lt;P&gt;JOB_CLOSE_FAILED = 4&lt;/P&gt;&lt;P&gt;JOB_NOSTEPS = 5&lt;/P&gt;&lt;P&gt;JOB_NOTEX = 6&lt;/P&gt;&lt;P&gt;LOCK_FAILED = 7&lt;/P&gt;&lt;P&gt;INVALID_TARGET = 8&lt;/P&gt;&lt;P&gt;OTHERS = 9.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 13:47:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596451#M866099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T13:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in SUBMIT command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596452#M866100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't have SPACE value for both LOW and HIGH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't want any value for the delivery creation date field, save the variant without any values.&lt;/P&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, 02 Apr 2008 14:11:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596452#M866100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T14:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in SUBMIT command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596453#M866101</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 understand that you want to have space in both low and high field of delivery date for the called program... which means you dont want to pass any value to the date selection parameter of the called program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, the solution is Do not populate any field - kind, sign etc for the delivery date... i.e. ignore this field while populating the selection parameter table for calling the program using Submit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Tapas&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;Pls reward if useful or answered&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 18:05:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596453#M866101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T18:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in SUBMIT command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596454#M866102</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;Donot input anything in the Deliv.creation date and save the variant it is equivalent to space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 18:11:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-submit-command/m-p/3596454#M866102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T18:11:36Z</dc:date>
    </item>
  </channel>
</rss>

