<?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 REPORT statement issue in abap in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388525#M1841414</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;P&gt;Well, I agree. I was assuming there's some logic yet for processing in first report :). Maybe there isn't.&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 May 2014 14:19:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-05-15T14:19:45Z</dc:date>
    <item>
      <title>SUBMIT REPORT statement issue in abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388520#M1841409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing issue while doing SUBMIT REPORT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below are the details for the Issue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. We want to execute another report ZTEST2 from one report , so we have written code in report ZTEST1 as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUBMIT ZTEST2 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. It goes to ZTEST2 successfully but when we execute ZTEST2 and click on BACK buttton , it directly goes to ZTEST1 selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead we want to go ZTEST2 program's selection screen. As this back button is standard ALV button is there any way we can handle this without creating new PF-STATUS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sanjana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 13:27:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388520#M1841409</guid>
      <dc:creator>sanjana_lingras</dc:creator>
      <dc:date>2014-05-15T13:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT REPORT statement issue in abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388521#M1841410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanjana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think you can. My suggestion is to use a parameter ID, like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;EM&gt;counter = 0.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;set parameter id 'counter'&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;do.&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;SUBMIT ZTEST2 AND RETURN.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;get parameter id 'counter'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;if counter &amp;gt;= 2.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exit.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;EM&gt;enddo.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;so you'll resubmit every time your counter &amp;lt; 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;And inside ZTEST2 at:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;EM&gt;initialization.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; add 1 to counter.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set parameter id 'counter'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;start-of-selection&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; counter = 0.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set parameter id 'counter'&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;so if you execute you reset the counter and your program will resubmit&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;in ztest 2 after executing you'll press back and resubmit will present the selection screen. If you press back now, counter is 2 and program will leave the DO instruction.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Edgar&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 13:42:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388521#M1841410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-15T13:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT REPORT statement issue in abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388522#M1841411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Edgar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We do not want to make any changes in ZTEST2 , is it possible to do anything in calling program only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sanjana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 13:56:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388522#M1841411</guid>
      <dc:creator>sanjana_lingras</dc:creator>
      <dc:date>2014-05-15T13:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT REPORT statement issue in abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388523#M1841412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's very limiting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It depends, there are some things you can do if you ztest2 does something that is traceable.&lt;/P&gt;&lt;P&gt;Without any more info I suggest to check time-lapse between submit calls. If it's inferior to 2 seconds I'd suppose user want's to leave.&lt;/P&gt;&lt;P&gt;mind you the syntax is wrong:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;do.&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;g_initial = get time. &lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;&lt;EM style="font-size: 12px; color: #333333;"&gt;SUBMIT ZTEST2 AND RETURN.&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;g_final = get time. &lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;EM style="font-family: inherit; font-weight: inherit;"&gt;if g_final - g_initial &amp;lt;= 2.&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exit.&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;endif.&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;enddo.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;For the user is in most cases transparent, only if he remains a lot of time in selection screen he'll remain there.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;SPAN style="font-weight: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;SPAN style="font-weight: inherit; font-family: inherit;"&gt;regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Edgar&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 14:10:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388523#M1841412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-15T14:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT REPORT statement issue in abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388524#M1841413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exclude the '&lt;STRONG&gt;AND RETURN&lt;/STRONG&gt;' statement. Use ' &lt;SPAN class="L0S52"&gt;&lt;STRONG&gt;SUBMIT&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;ZTEST2 VIA &lt;/STRONG&gt;&lt;SPAN class="L0S52"&gt;&lt;STRONG&gt;SELECTION-SCREEN&lt;/STRONG&gt;'&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 14:15:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388524#M1841413</guid>
      <dc:creator>satyabrata_sahoo3</dc:creator>
      <dc:date>2014-05-15T14:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT REPORT statement issue in abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388525#M1841414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;P&gt;Well, I agree. I was assuming there's some logic yet for processing in first report :). Maybe there isn't.&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 14:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388525#M1841414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-15T14:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT REPORT statement issue in abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388526#M1841415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satyabrata,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This worked &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/776/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sanjana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 14:24:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388526#M1841415</guid>
      <dc:creator>sanjana_lingras</dc:creator>
      <dc:date>2014-05-15T14:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT REPORT statement issue in abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388527#M1841416</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;Use &lt;STRONG&gt;SUBMIT &amp;lt;program name&amp;gt; via selection screen&lt;/STRONG&gt;....this will take u to selection screen of the prog first&lt;/P&gt;&lt;P&gt;and when u press back it will return back again to the called selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 14:24:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-statement-issue-in-abap/m-p/10388527#M1841416</guid>
      <dc:creator>narendar_naidu</dc:creator>
      <dc:date>2014-05-15T14:24:43Z</dc:date>
    </item>
  </channel>
</rss>

