<?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: BAPI_SALESORDER_GETLIST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963298#M395804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sivapuram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Difference between Macro &amp;amp; Function/Subroutine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During the compilation wherever the macro is mentioned(called) the call is replaced by the Macro definition ( i.e the statements which define macro )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And whenever the function is called during compilation the assembly language code is replaced which will take the control to some other line of code where the function is defined and get the control back to same place right from where the call was made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pavanmeet Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Jun 2007 17:32:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-20T17:32:05Z</dc:date>
    <item>
      <title>BAPI_SALESORDER_GETLIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963293#M395799</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 have doubt in this BAPI. There is a statement fbgenmac 'BAPI_SALESORDER_GETLIST' (generate data record) in this BAPI. Can any body explain me what this statement is useful for?&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;Phani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 13:29:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963293#M395799</guid>
      <dc:creator>PS_1978</dc:creator>
      <dc:date>2007-02-26T13:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_GETLIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963294#M395800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is a MACRO .&lt;/P&gt;&lt;P&gt;It has a predefined code defined.&lt;/P&gt;&lt;P&gt;Double click on the FBGENMAC to see the code.&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>Mon, 26 Feb 2007 13:31:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963294#M395800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T13:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_GETLIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963295#M395801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Phani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;fbgenmac&amp;lt;/b&amp;gt; is a MACRO, defined in the program and 'BAPI_SALESORDER_GETLIST' is a parameter to this macro. If you double click on &amp;lt;b&amp;gt;fbgenmac&amp;lt;/b&amp;gt;, you will be taken to the Macro definition, where you can see the underlying logic happening inside this MACRO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Sajan Joseph.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 13:43:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963295#M395801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T13:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_GETLIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963296#M395802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi &amp;amp; Joseph,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the replies. Yes, later I have observed that this is a macro. Can you please explain me the functionality of a macro and use of it. If it is similar to a subroutine/function module, then can you explain me the differences between these?&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;Phani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 14:02:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963296#M395802</guid>
      <dc:creator>PS_1978</dc:creator>
      <dc:date>2007-02-26T14:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_GETLIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963297#M395803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer this link to know the difference.&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/documents/popular-q-and-a/macro-vs-subroutine-1594" target="test_blank"&gt;http://sap.ittoolbox.com/documents/popular-q-and-a/macro-vs-subroutine-1594&lt;/A&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>Mon, 26 Feb 2007 14:05:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963297#M395803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T14:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_GETLIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963298#M395804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sivapuram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Difference between Macro &amp;amp; Function/Subroutine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During the compilation wherever the macro is mentioned(called) the call is replaced by the Macro definition ( i.e the statements which define macro )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And whenever the function is called during compilation the assembly language code is replaced which will take the control to some other line of code where the function is defined and get the control back to same place right from where the call was made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pavanmeet Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 17:32:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-getlist/m-p/1963298#M395804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-20T17:32:05Z</dc:date>
    </item>
  </channel>
</rss>

