<?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: Issue in Submit program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-submit-program/m-p/8199470#M1626116</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;In this case you need to use another internal table which is of type S_VBELN . Ex : it_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that you have to append the record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_vbeln-sign = 'I'&lt;/P&gt;&lt;P&gt;wa_vbeln-option = 'EQ' &lt;/P&gt;&lt;P&gt;wa_vbeln-low = w_inv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append wa_vbeln to it_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now use this&lt;/P&gt;&lt;P&gt;submit B VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;with P_DAYS = '4'&lt;/P&gt;&lt;P&gt;with P_KALSM = 'ZATCIN'&lt;/P&gt;&lt;P&gt;with S_VBELN = it_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the new record will be appended with the values which are passing,. SO u wil have two rows in the S_VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkatesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Aug 2011 09:44:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-08-26T09:44:26Z</dc:date>
    <item>
      <title>Issue in Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-submit-program/m-p/8199469#M1626115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a report program A and B. I am trying to call report program B from my report progam A using the SUBMIT functionality. &lt;/P&gt;&lt;P&gt;While calling the program B, i am using the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        submit B VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;               with P_DAYS = '4'&lt;/P&gt;&lt;P&gt;               with P_KALSM = 'ZATCIN'&lt;/P&gt;&lt;P&gt;               with S_VBELN-LOW = w_inv.   "w_inv will be having some document number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Issue here is, in the report program B, at the initialisation stage they have hardcoded value for S_VBELN-LOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  S_VBELN-LOW = '990090914'.&lt;/P&gt;&lt;P&gt;  APPEND S_VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, when i exeucte the main program A, the B program is called with selection screen but the S_VBELN is overwritten with the hardocded value '990090914'. W_inv is not assigned to the field VBELN in the selection scree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help why this is happening and please suggest a solution to over come this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Deepa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 09:40:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-submit-program/m-p/8199469#M1626115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-26T09:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-submit-program/m-p/8199470#M1626116</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;In this case you need to use another internal table which is of type S_VBELN . Ex : it_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that you have to append the record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_vbeln-sign = 'I'&lt;/P&gt;&lt;P&gt;wa_vbeln-option = 'EQ' &lt;/P&gt;&lt;P&gt;wa_vbeln-low = w_inv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append wa_vbeln to it_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now use this&lt;/P&gt;&lt;P&gt;submit B VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;with P_DAYS = '4'&lt;/P&gt;&lt;P&gt;with P_KALSM = 'ZATCIN'&lt;/P&gt;&lt;P&gt;with S_VBELN = it_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the new record will be appended with the values which are passing,. SO u wil have two rows in the S_VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkatesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 09:44:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-submit-program/m-p/8199470#M1626116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-26T09:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-submit-program/m-p/8199471#M1626117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for the help. It worked &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 10:55:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-submit-program/m-p/8199471#M1626117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-26T10:55:01Z</dc:date>
    </item>
  </channel>
</rss>

