<?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 not working as expected in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853071#M1320000</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am calling a report (rep2) which has LDB,with selection parameters as table.&lt;/P&gt;&lt;P&gt;i am calling this frm a report (rep1) using a loop.&lt;/P&gt;&lt;P&gt;basicaly rep2 is to be called multiple times with different sets of selection parameters from rep1.&lt;/P&gt;&lt;P&gt;but becasue of similar declarations of varioables in rep1 and rep2 ,rep2 is not generating list as per its selections..&lt;/P&gt;&lt;P&gt;how to sovle?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jun 2009 09:31:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-25T09:31:15Z</dc:date>
    <item>
      <title>Submit not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853071#M1320000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am calling a report (rep2) which has LDB,with selection parameters as table.&lt;/P&gt;&lt;P&gt;i am calling this frm a report (rep1) using a loop.&lt;/P&gt;&lt;P&gt;basicaly rep2 is to be called multiple times with different sets of selection parameters from rep1.&lt;/P&gt;&lt;P&gt;but becasue of similar declarations of varioables in rep1 and rep2 ,rep2 is not generating list as per its selections..&lt;/P&gt;&lt;P&gt;how to sovle?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 09:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853071#M1320000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-25T09:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Submit not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853072#M1320001</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;how ur using submit statements...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you use like this to pass ur values to rep2 selection-screen parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT ITAB.

...................
...................

SUBMIT rep2 TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                          SPOOL PARAMETERS &amp;lt;spool_par_name&amp;gt;
                          WITH PNPPERNR-LOW EQ ITAB-PERNR
                          AND RETURN.

........................
........................

ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i specified only one parameter of rep2 i.e PNPPERNR-LOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this how many parameters are exists on selection screen of rep2, those and all you pass the vales which u need to pass.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 09:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853072#M1320001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-25T09:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Submit not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853073#M1320002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you explain what params ar eu passing and how.&lt;/P&gt;&lt;P&gt;Did u debug to check if the params are getting mapped correctly ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 09:43:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853073#M1320002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-25T09:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Submit not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853074#M1320003</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;That code i wrote for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to know that wat type of values you have to pass to the parameters of REP2 from REP1 in SUBMIT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you tell me wat type of parameters ur having in REP2  and wat ur passing from REP1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 09:46:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853074#M1320003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-25T09:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Submit not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853075#M1320004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I made 2 copies of RFITEMAP,&lt;/P&gt;&lt;P&gt;rep1 calls rep2 with changed posting dates,&lt;/P&gt;&lt;P&gt;using set and get i want to get a value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but rep2 ahs same varialbes as rep1.&lt;/P&gt;&lt;P&gt;is this why,rep2 doesnt calcualte according to changed parameters?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 09:48:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853075#M1320004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-25T09:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Submit not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853076#M1320005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after using get..&lt;/P&gt;&lt;P&gt;i think i am unable to delete the parameter from memory.&lt;/P&gt;&lt;P&gt;FREE MEMORY ID 'K'.&lt;/P&gt;&lt;P&gt;pls correct&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 10:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853076#M1320005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-25T10:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Submit not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853077#M1320006</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;yes you are right.. try to clear the memory id..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax: FREE MEMORY [ID &amp;lt;key&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through this link for sample code for free:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb3beb358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb3beb358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 11:03:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-not-working-as-expected/m-p/5853077#M1320006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-25T11:03:09Z</dc:date>
    </item>
  </channel>
</rss>

