<?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: Ragarding For Submit statement with free selection in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175961#M1372504</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you use SUBMIT with RETURN statement? Check sap help on SUBMIT and also see the called program in debug if there is any call screens or some wierd statements&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Sep 2009 21:50:13 GMT</pubDate>
    <dc:creator>former_member191735</dc:creator>
    <dc:date>2009-09-21T21:50:13Z</dc:date>
    <item>
      <title>Ragarding For Submit statement with free selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175958#M1372501</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;Am using in my called program with the beleow statement . but am not able to return back to calling program even if use Return statement. i want to return back from called program to calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Submit Reoprt1 free selections it_texpr .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Sep 2009 13:49:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175958#M1372501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-18T13:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Ragarding For Submit statement with free selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175959#M1372502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi. it will Return if ur not using with  option "USING SELECTION-SCREEN".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;jUST SEE THESE TWO PROGRAMS (copied the example code in sap-help)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZREPORT2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS rsds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: trange TYPE rsds_trange,&lt;/P&gt;&lt;P&gt;      trange_line&lt;/P&gt;&lt;P&gt;        LIKE LINE OF trange,&lt;/P&gt;&lt;P&gt;      trange_frange_t_line&lt;/P&gt;&lt;P&gt;        LIKE LINE OF trange_line-frange_t,&lt;/P&gt;&lt;P&gt;      trange_frange_t_selopt_t_line&lt;/P&gt;&lt;P&gt;        LIKE LINE OF trange_frange_t_line-selopt_t,&lt;/P&gt;&lt;P&gt;      texpr TYPE rsds_texpr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;trange_line-tablename = 'SPFLI'.&lt;/P&gt;&lt;P&gt;trange_frange_t_line-fieldname = 'CONNID'.&lt;/P&gt;&lt;P&gt;trange_frange_t_selopt_t_line-sign   = 'I'.&lt;/P&gt;&lt;P&gt;trange_frange_t_selopt_t_line-option = 'BT'.&lt;/P&gt;&lt;P&gt;trange_frange_t_selopt_t_line-low    = '0200'.&lt;/P&gt;&lt;P&gt;trange_frange_t_selopt_t_line-high   = '0800'.&lt;/P&gt;&lt;P&gt;APPEND trange_frange_t_selopt_t_line&lt;/P&gt;&lt;P&gt;  TO trange_frange_t_line-selopt_t.&lt;/P&gt;&lt;P&gt;trange_frange_t_selopt_t_line-sign   = 'I'.&lt;/P&gt;&lt;P&gt;trange_frange_t_selopt_t_line-option = 'NE'.&lt;/P&gt;&lt;P&gt;trange_frange_t_selopt_t_line-low    = '0400'.&lt;/P&gt;&lt;P&gt;APPEND trange_frange_t_selopt_t_line&lt;/P&gt;&lt;P&gt;  TO trange_frange_t_line-selopt_t.&lt;/P&gt;&lt;P&gt;APPEND trange_frange_t_line TO trange_line-frange_t.&lt;/P&gt;&lt;P&gt;APPEND trange_line TO trange.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FREE_SELECTIONS_RANGE_2_EX'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    field_ranges = trange&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    expressions  = texpr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT zreport1 WITH FREE SELECTIONS  texpr and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : 'hello'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;::::::::::::::::::::::::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Second Report with logocal data base F1S&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZREPORT1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NODES: spfli, sflight, sbook.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****&lt;STRONG&gt;any code&lt;/STRONG&gt;**********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : if you are using Selection-screen of the Report1 (logical Data base it will not come back u need to write code for that in start-of-selection. to leave the screen and return back to calling prog.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2009 12:34:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175959#M1372502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-21T12:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Ragarding For Submit statement with free selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175960#M1372503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually i wrote the logic as u mentioned but and return not working am not using via selection-screen...also&lt;/P&gt;&lt;P&gt;plz help me on this..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2009 13:13:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175960#M1372503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-21T13:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: Ragarding For Submit statement with free selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175961#M1372504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you use SUBMIT with RETURN statement? Check sap help on SUBMIT and also see the called program in debug if there is any call screens or some wierd statements&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2009 21:50:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175961#M1372504</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2009-09-21T21:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Ragarding For Submit statement with free selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175962#M1372505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi raju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;am writing below statement in module pool program. actually Report1 is a Standard Transaction QM10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'sy-ucomm'.&lt;/P&gt;&lt;P&gt;submit Report1 with free selections texar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried with and return also but its not working...please helop on this.....thanks for ur replying....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 11:05:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ragarding-for-submit-statement-with-free-selection/m-p/6175962#M1372505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T11:05:39Z</dc:date>
    </item>
  </channel>
</rss>

