<?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: Using the option SUBMIT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330440#M168476</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;try that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT RFITEMGL
WITH SD_SAKNR in s_hkont
WITH SD_BUKRS in s_bukrs
with SO_BUDAT in s_budat
WITH X_AISEL = 'X'
EXPORTING LIST TO MEMORY
AND RETURN.
*with %%DYN009-LOW = s_blart-low
*wwith %%DYN014-LOW = i_bseg_data2-prctr&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the last two  are dynamic selections i think.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax is :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:   GT_EXPRESSIONS         TYPE RSDS_TEXPR.
submit...
 WITH FREE SELECTIONS GT_EXPRESSIONS...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 May 2006 12:10:46 GMT</pubDate>
    <dc:creator>andreas_mann3</dc:creator>
    <dc:date>2006-05-26T12:10:46Z</dc:date>
    <item>
      <title>Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330434#M168470</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 m trying to use SUBMIT for excuting the transaction FBL3N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SUBMIT RFITEMGL&lt;/P&gt;&lt;P&gt;                WITH SD_SAKNR-LOW = s_hkont-low&lt;/P&gt;&lt;P&gt;                with SD_SAKNR-high = s_hkont-high&lt;/P&gt;&lt;P&gt;                WITH SD_BUKRS-LOW = s_bukrs-low&lt;/P&gt;&lt;P&gt;                WITH SD_BUKRS-high = s_bukrs-high&lt;/P&gt;&lt;P&gt;                with %%DYN009-LOW  = s_blart-low&lt;/P&gt;&lt;P&gt;                with %%DYN014-LOW  = i_bseg_data2-prctr&lt;/P&gt;&lt;P&gt;                with SO_BUDAT-LOW = s_budat-low&lt;/P&gt;&lt;P&gt;                with SO_BUDAT-high = s_budat-high&lt;/P&gt;&lt;P&gt;WITH X_OPSEL = space&lt;/P&gt;&lt;P&gt;WITH X_CLSEL = space&lt;/P&gt;&lt;P&gt;                WITH X_AISEL = 'X'&lt;/P&gt;&lt;P&gt;                EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;                AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that the no record details are being fetched and no list is getting generated but when i am passing the same details in the transaction FBL3N directly I can see a report list getting generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I am not sure as to what is happening and why no records are being fetched in case when i m trying to do it through my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Avi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 11:43:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330434#M168470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T11:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330435#M168471</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;Do this, don't specify the low or high, just say SD_SAKNR in S_HKONT. Similary for other as well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RFITEMGL&lt;/P&gt;&lt;P&gt;WITH SD_SAKNR-LOW = s_hkont-low&lt;/P&gt;&lt;P&gt;with SD_SAKNR-high = s_hkont-high&lt;/P&gt;&lt;P&gt;WITH SD_BUKRS-LOW = s_bukrs-low&lt;/P&gt;&lt;P&gt;WITH SD_BUKRS-high = s_bukrs-high&lt;/P&gt;&lt;P&gt;with %%DYN009-LOW = s_blart-low&lt;/P&gt;&lt;P&gt;with %%DYN014-LOW = i_bseg_data2-prctr&lt;/P&gt;&lt;P&gt;with SO_BUDAT-LOW = s_budat-low&lt;/P&gt;&lt;P&gt;with SO_BUDAT-high = s_budat-high&lt;/P&gt;&lt;P&gt;WITH X_OPSEL = space&lt;/P&gt;&lt;P&gt;WITH X_CLSEL = space&lt;/P&gt;&lt;P&gt;WITH X_AISEL = 'X'&lt;/P&gt;&lt;P&gt;EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 11:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330435#M168471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T11:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330436#M168472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     Try this &lt;/P&gt;&lt;P&gt;     SUBMIT RFITEMGL via selection-screen option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 11:47:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330436#M168472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T11:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330437#M168473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do lkike this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fil the s_hkont and other ranges&lt;/P&gt;&lt;P&gt;s_hknot-low = 'hghj'.&lt;/P&gt;&lt;P&gt;s_hknot-high = 'hghj'.&lt;/P&gt;&lt;P&gt;s_hknot-sign = 'I'.&lt;/P&gt;&lt;P&gt;s_hknot-option = 'BT'.&lt;/P&gt;&lt;P&gt;appned s_hkont.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then submit ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RFITEMGL&lt;/P&gt;&lt;P&gt;WITH SD_SAKNR in s_hkont&lt;/P&gt;&lt;P&gt;WITH SD_BUKRS in s_bukrs&lt;/P&gt;&lt;P&gt;..........EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 11:50:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330437#M168473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T11:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330438#M168474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is quite possible the values you are passing through SUBMIT are getting wiped out during the INITIALIZATION event in RFITEMGL. You can check this out by putting a break-point right before the START-OF-SELECTION event in RFITEMGL. And then execute your SUBMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 11:50:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330438#M168474</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-05-26T11:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330439#M168475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. try with this simple hard coded values,&lt;/P&gt;&lt;P&gt;  and see if report is generated or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit RFITEMGL&lt;/P&gt;&lt;P&gt;with SD_BUKRS-LOW = '1000'&lt;/P&gt;&lt;P&gt;with SD_SAKNR-LOW = '1'&lt;/P&gt;&lt;P&gt;with SD_SAKNR-high = '1000'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exporting list to memory and return.&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;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 11:51:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330439#M168475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T11:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330440#M168476</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;try that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT RFITEMGL
WITH SD_SAKNR in s_hkont
WITH SD_BUKRS in s_bukrs
with SO_BUDAT in s_budat
WITH X_AISEL = 'X'
EXPORTING LIST TO MEMORY
AND RETURN.
*with %%DYN009-LOW = s_blart-low
*wwith %%DYN014-LOW = i_bseg_data2-prctr&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the last two  are dynamic selections i think.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax is :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:   GT_EXPRESSIONS         TYPE RSDS_TEXPR.
submit...
 WITH FREE SELECTIONS GT_EXPRESSIONS...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 12:10:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330440#M168476</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-05-26T12:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330441#M168477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do this way either. you can import the internal table from RFITEMGL if it is writing to memory ID this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RFITEMGL&lt;/P&gt;&lt;P&gt;WITH SD_SAKNR-LOW = s_hkont-low&lt;/P&gt;&lt;P&gt;with SD_SAKNR-high = s_hkont-high&lt;/P&gt;&lt;P&gt;WITH SD_BUKRS-LOW = s_bukrs-low&lt;/P&gt;&lt;P&gt;WITH SD_BUKRS-high = s_bukrs-high&lt;/P&gt;&lt;P&gt;with %%DYN009-LOW = s_blart-low&lt;/P&gt;&lt;P&gt;with %%DYN014-LOW = i_bseg_data2-prctr&lt;/P&gt;&lt;P&gt;with SO_BUDAT-LOW = s_budat-low&lt;/P&gt;&lt;P&gt;with SO_BUDAT-high = s_budat-high&lt;/P&gt;&lt;P&gt;WITH X_OPSEL = space&lt;/P&gt;&lt;P&gt;WITH X_CLSEL = space&lt;/P&gt;&lt;P&gt;WITH X_AISEL = 'X'&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IMPORT &amp;lt;internal_table&amp;gt; FROM MEMORY ID '&amp;lt;memory_id&amp;gt;'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &amp;lt;internal_table&amp;gt; is internal table declared in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will be of some help to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vicky&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Award points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 13:43:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330441#M168477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T13:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330442#M168478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with following option and it worked.&lt;/P&gt;&lt;P&gt;select-options :sd_saknr for skb1-saknr,&lt;/P&gt;&lt;P&gt;                sd_bukrs for skb1-bukrs,&lt;/P&gt;&lt;P&gt;                so_budat for bsis-budat.&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;submit rfitemgl via selection-screen&lt;/P&gt;&lt;P&gt;                        with sd_saknr in sd_saknr&lt;/P&gt;&lt;P&gt;                        with sd_bukrs in sd_bukrs&lt;/P&gt;&lt;P&gt;                        with x_aisel = 'X'&lt;/P&gt;&lt;P&gt;                        with x_opsel = ' '&lt;/P&gt;&lt;P&gt;                        with so_budat in so_budat&lt;/P&gt;&lt;P&gt;   exporting list to memory&lt;/P&gt;&lt;P&gt;                         and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can use FM 'LIST_FROM_MEMORY' to retrieve the list from memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just keep a breakpoint in the rfitemgl program to check if 'it_pos' internal table is populated since after the data is fetched using LDB, this table is populated and the same is displayed on screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 15:15:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330442#M168478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T15:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330443#M168479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andreas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right the last two option are infact dynamic selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As specified when I am not able to use the option GT_EXPRESSIONS, as i m not able to use in corrct fashion(this involves field EXPR_TAB which of typr another structure RSDSEXPR).Can you help me in this regard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Avi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 08:01:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330443#M168479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T08:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using the option SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330444#M168480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Andreas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem for poulating the dynamic value is solved but when I m trying to populate the document number in order to narrow down my selction criteria, the document number are not getting populated properly and instead a report is being displayed for all the records,is there anything mich i m missing on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;AVi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 04:35:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-option-submit/m-p/1330444#M168480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T04:35:39Z</dc:date>
    </item>
  </channel>
</rss>

