<?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 Problem with Submit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450355#M1552825</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have developed a report and for the double click event I want it to display the table entries of a table due some conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To do so I noticed that these kind of programs start with /1BCDWB/DB and then the table name, for example the program to list entries for BKPF is this: &lt;/P&gt;&lt;P&gt;/1BCDWB/DBBKPF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My program as a code similar to this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT /1BCDWB/DBBKPF
    WITH I1-low EQ u20181000u2019 
    AND RETURN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that nothing is shown, does anyone know why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Nov 2010 22:28:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-25T22:28:30Z</dc:date>
    <item>
      <title>Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450355#M1552825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have developed a report and for the double click event I want it to display the table entries of a table due some conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To do so I noticed that these kind of programs start with /1BCDWB/DB and then the table name, for example the program to list entries for BKPF is this: &lt;/P&gt;&lt;P&gt;/1BCDWB/DBBKPF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My program as a code similar to this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT /1BCDWB/DBBKPF
    WITH I1-low EQ u20181000u2019 
    AND RETURN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that nothing is shown, does anyone know why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 22:28:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450355#M1552825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-25T22:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450356#M1552826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Howdy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Submit is generally for background processing only.  You may be able to do what you want by creating a t-code and using CALL TRANSACTION instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you create the transaction which will be a report type, you can tick the "Skip Initial Screen" box and specify your parameter I1-low = '1000' in the transaction parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 23:51:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450356#M1552826</guid>
      <dc:creator>alex_cook</dc:creator>
      <dc:date>2010-11-25T23:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450357#M1552827</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;      Pass the values to select options as :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:  rspar_tab  TYPE TABLE OF rsparams,
             rspar_line LIKE LINE OF rspar_tab.


rspar_line-selname = 'I1'.
rspar_line-kind    = 'S'.
rspar_line-sign    = 'I'.
rspar_line-option  = 'BT'.
rspar_line-low     = '1000'.
rspar_line-high     = '9999'.
APPEND rspar_line TO rspar_tab.

SUBMIT /1BCDWB/DBBKPF
     WITH SELECTION-TABLE rspar_tab
    AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Nov 2010 04:39:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450357#M1552827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-26T04:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450358#M1552828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First question is it a ALV report?&lt;/P&gt;&lt;P&gt;On Double Clicking what, you want to show BKFP table tcode?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Nov 2010 04:50:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450358#M1552828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-26T04:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450359#M1552829</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 tried just now and it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/1BCDWB/DBBKPF program is for showing table entries for BKPF.&lt;/P&gt;&lt;P&gt;This standard program will not work by simply submit.&lt;/P&gt;&lt;P&gt;we have to set some values (memory id) for it to work using submit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just copy paste and it works fine. Also we have to use range to pass to I1 as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT abc.

DATA : rbukrs TYPE RANGE OF bukrs WITH HEADER LINE.
DATA: mem_id(32) VALUE 'TABELLENANZEIGER'.
DATA: action(4) TYPE c.

*---- Set range for the screen field
rbukrs-sign = 'I'.
rbukrs-option = 'EQ'.
rbukrs-low = '1000'.
APPEND rbukrs.

*------- Export
action = 'ANZE'.
EXPORT action TO MEMORY ID mem_id.

*----- Submit
SUBMIT /1bcdwb/dbbkpf
WITH i1 IN rbukrs
VIA SELECTION-SCREEN.&lt;/CODE&gt;&lt;/PRE&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;&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 Nov 2010 11:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450359#M1552829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-26T11:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450360#M1552830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Be aware that the /1BCDWB/DB... programs can be re-generated at any time with different selection criteria via SE16, so the assumption that I1 stands for BUKRS might no be true in the future.&lt;/P&gt;&lt;P&gt;I would rather not build fixed program logic around this.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Nov 2010 12:16:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/7450360#M1552830</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2010-11-26T12:16:06Z</dc:date>
    </item>
  </channel>
</rss>

