<?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 and return: Calling program rptbal00 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492580#M1420522</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So does this mean that the list can't be written to the abap memory list?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jan 2010 05:17:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-19T05:17:30Z</dc:date>
    <item>
      <title>Submit and return: Calling program rptbal00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492575#M1420517</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 submit and return data calling progam rptbal00 but the memory list is blank.&lt;/P&gt;&lt;P&gt;The seltab is populated with the correct fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT rptbal00 WITH SELECTION-TABLE seltab USING SELECTION-SCREEN '1000'
  WITH pnptimr6 = 'X'
  WITH pnpbegda = p_date-low
  WITH pnpendda = p_date-high
  WITH sw_zl       = 'X'.  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What am i missing ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1563523"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2010 18:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492575#M1420517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-18T18:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and return: Calling program rptbal00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492576#M1420518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To start with :&lt;/P&gt;&lt;P&gt;SUBMIT rptbal00 WITH SELECTION-TABLE seltab USING SELECTION-SCREEN '1000'&lt;/P&gt;&lt;P&gt;   WITH pnptimr6 = 'X'&lt;/P&gt;&lt;P&gt;   WITH pnpbegda = p_date-low&lt;/P&gt;&lt;P&gt;   WITH pnpendda = p_date-high&lt;/P&gt;&lt;P&gt;   WITH sw_zl       = 'X'&lt;/P&gt;&lt;P&gt;exporting list to memory and return.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2010 18:40:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492576#M1420518</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2010-01-18T18:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and return: Calling program rptbal00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492577#M1420519</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;before writing the Submit Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goto &lt;DEL&gt;&amp;gt;se38&lt;/DEL&gt;&amp;gt;enter RPTBAL00--&amp;gt; and create Variant with your selction..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next go to Below Function Module and pass the report name as RPTBAL00 and Variant created as above and execute..&lt;/P&gt;&lt;P&gt;RS_VARIANT_VALUES_TECH_DATA&lt;/P&gt;&lt;P&gt;see the variable and parameters which are passed hiddenly or default and try to pass with your submit program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next write as J@y said..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    submit &amp;lt;Report name&amp;gt; using selection-set &amp;lt;variant&amp;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;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    submit &amp;lt;Report name&amp;gt; &lt;/P&gt;&lt;P&gt;             WITH pnptimr6 = 'X'&lt;/P&gt;&lt;P&gt;   WITH pnpbegda = p_date-low&lt;/P&gt;&lt;P&gt;   WITH pnpendda = p_date-high&lt;/P&gt;&lt;P&gt;   WITH sw_zl       = 'X'.&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;Next call the below function modules to show the output of the report or catch the output of the data..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;read list from memory into table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'LIST_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;*Spool content in Ascii format&lt;/P&gt;&lt;P&gt;  call function 'LIST_TO_ASCI'&lt;/P&gt;&lt;P&gt;    call function 'WRITE_LIST'&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;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2010 19:05:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492577#M1420519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-18T19:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and return: Calling program rptbal00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492578#M1420520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've used the code below but it takes me to a list which is displayed on the screen.&lt;/P&gt;&lt;P&gt;It displays the list before the list_from_memory function is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT rptbal00  WITH SELECTION-TABLE seltab USING SELECTION-SCREEN '1000'
   WITH pnptimr6 ='X'
   WITH pnpbegda = p_date-low
   WITH pnpendda = p_date-high
   WITH sw_zl = 'X'
*
   EXPORTING LIST TO MEMORY AND RETURN.


  CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
      listobject = listtab
    EXCEPTIONS
      not_found  = 1
      OTHERS     = 2.
  IF sy-subrc = 0.

* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2010 22:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492578#M1420520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-18T22:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and return: Calling program rptbal00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492579#M1420521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the help:&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;The addition can only work provided the function key Enter is not linked to a function code in the GUI status last defined for the program accessed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I search for GUI in the program rptbal00 I could find some gui performs..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 01:13:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492579#M1420521</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2010-01-19T01:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and return: Calling program rptbal00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492580#M1420522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So does this mean that the list can't be written to the abap memory list?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 05:17:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return-calling-program-rptbal00/m-p/6492580#M1420522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T05:17:30Z</dc:date>
    </item>
  </channel>
</rss>

