<?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: Regarding RSBDCSUB in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751299#M325777</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Domnic&lt;/P&gt;&lt;P&gt;    Thnaks for your quick response.&lt;/P&gt;&lt;P&gt;But still I need some more clarification on this.&lt;/P&gt;&lt;P&gt;Whether the internal table use for FM listFrom Memory is fixed or what?&lt;/P&gt;&lt;P&gt;What it contains?&lt;/P&gt;&lt;P&gt;Can you please brief me some more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Dec 2006 10:43:44 GMT</pubDate>
    <dc:creator>sreeramkumar_madisetty</dc:creator>
    <dc:date>2006-12-08T10:43:44Z</dc:date>
    <item>
      <title>Regarding RSBDCSUB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751297#M325775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus&lt;/P&gt;&lt;P&gt;    I have 1 doubt regarding RSBDCSUB.&lt;/P&gt;&lt;P&gt;We will give SUBMIT RSBDCSUB with parameters&lt;/P&gt;&lt;P&gt;                      Exporting list to memory na.&lt;/P&gt;&lt;P&gt;What's the purpose of Export list to Memory here.&lt;/P&gt;&lt;P&gt;Please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ur suggestions are highly encouragable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 10:23:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751297#M325775</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2006-12-08T10:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding RSBDCSUB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751298#M325776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the output of the list will be sent to memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from where you can download it using the FM &amp;lt;b&amp;gt;LIST FROM MEMORY&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT RSBDCSUB EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;                 USING SELECTION-SCREEN '1000'&lt;/P&gt;&lt;P&gt;                  WITH SELECTION-TABLE i_rsparams&lt;/P&gt;&lt;P&gt;                  AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the List from Memory&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'LIST_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      listobject = i_listobject&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      not_found  = 1&lt;/P&gt;&lt;P&gt;      OTHERS     = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF i_listobject[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write the List to Char Format&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL FUNCTION 'LIST_TO_ASCI'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        listasci           = i_ascii&lt;/P&gt;&lt;P&gt;        listobject         = i_listobject&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        empty_list         = 1&lt;/P&gt;&lt;P&gt;        list_index_invalid = 2&lt;/P&gt;&lt;P&gt;        OTHERS             = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Free the used memory&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'LIST_FREE_MEMORY'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here LIST_FROM_MEMORY will retrieve from memory and&lt;/P&gt;&lt;P&gt;'LIST_TO_ASCI' will convert it into an internal table with the contents of the list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 10:26:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751298#M325776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-08T10:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding RSBDCSUB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751299#M325777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Domnic&lt;/P&gt;&lt;P&gt;    Thnaks for your quick response.&lt;/P&gt;&lt;P&gt;But still I need some more clarification on this.&lt;/P&gt;&lt;P&gt;Whether the internal table use for FM listFrom Memory is fixed or what?&lt;/P&gt;&lt;P&gt;What it contains?&lt;/P&gt;&lt;P&gt;Can you please brief me some more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 10:43:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751299#M325777</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2006-12-08T10:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding RSBDCSUB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751300#M325778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sree ram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You dont need to pass anything to the internal table of FM list from memory&lt;/P&gt;&lt;P&gt;All you have to do is call this FM immediately after the Submit command so that the list is retrieved from memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the FM list from memory will contain the contents of the abap list which has been sent to the memory by the Submit Command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this will not be able to be understood by user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is why we use the FM list to ascii , this will convert the abap list which we got from the list from memory FM to readable by user format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 10:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751300#M325778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-08T10:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding RSBDCSUB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751301#M325779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  It's Answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 10:35:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rsbdcsub/m-p/1751301#M325779</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-23T10:35:46Z</dc:date>
    </item>
  </channel>
</rss>

