<?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: Function Module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/4302065#M1025834</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Check for this FM WLF_INVOICE_CHECK_WERKS if it suits your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sudharshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Aug 2008 12:51:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-05T12:51:14Z</dc:date>
    <item>
      <title>Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/4302064#M1025833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want function module to get the plantwise invoices.&lt;/P&gt;&lt;P&gt;Currently i want to write query on VBRK for invoices and for plant details i need to write query on VBRP.&lt;/P&gt;&lt;P&gt;For large data it takes more time.&lt;/P&gt;&lt;P&gt;So can anybody tell me regarding this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:43:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/4302064#M1025833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T12:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/4302065#M1025834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Check for this FM WLF_INVOICE_CHECK_WERKS if it suits your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sudharshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:51:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/4302065#M1025834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T12:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/4302066#M1025835</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;Following are some performance tuning conditions....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and better to go for for all entries method.. because it links the tables at application layer level..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Select Single when only one row is expected&lt;/P&gt;&lt;P&gt;Use Select Where rather than Selectu2026Check&lt;/P&gt;&lt;P&gt;Use Select with aggregate functions (SUM, MAX, MINu2026)&lt;/P&gt;&lt;P&gt;Use a View instead of nested Selects&lt;/P&gt;&lt;P&gt;Use Select column specific instead of select * for few fields&lt;/P&gt;&lt;P&gt;Use Selectu2026Into Table rather than Select...Move Corru2026Apend&lt;/P&gt;&lt;P&gt;Use Join extension with Select if possible&lt;/P&gt;&lt;P&gt;Use special operators (CO, CA, CS) rather than code your own&lt;/P&gt;&lt;P&gt;Use Delete Adjacent Duplicates rather than manual processing&lt;/P&gt;&lt;P&gt;Specify key fields for Readu2026Binary Search&lt;/P&gt;&lt;P&gt;Use Loop At Where rather than Loop Atu2026Check&lt;/P&gt;&lt;P&gt;Copy Internal Tables with TAB_DEST() = TAB_SRC()&lt;/P&gt;&lt;P&gt;Specify the sort key as restrictively as possible&lt;/P&gt;&lt;P&gt;Use Append To, Insert Into, Collect Into rather than Move &lt;/P&gt;&lt;P&gt;Compare tables with If Tab1() = Tab2()u2026&lt;/P&gt;&lt;P&gt;Use Delete ITAB Whereu2026 instead of Loop At ITAB Whereu2026Delete..&lt;/P&gt;&lt;P&gt;Use Case statements instead of If-constructions&lt;/P&gt;&lt;P&gt;Use Call Functions wisely, Performs use less memory&lt;/P&gt;&lt;P&gt;Use While instead of Do Exit&lt;/P&gt;&lt;P&gt;Use Type I for Indices&lt;/P&gt;&lt;P&gt;Keep Occurs clause realistic or use 0&lt;/P&gt;&lt;P&gt;Use COMMIT WORK as appropriate to free the Data Base and preserve work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Avoid:&lt;/P&gt;&lt;P&gt;Using Shift inside a While-loop&lt;/P&gt;&lt;P&gt;Leaving unneeded declarations in your program&lt;/P&gt;&lt;P&gt;Using Move-corresponding for just a few fields&lt;/P&gt;&lt;P&gt;Excessive nested includes within function calls&lt;/P&gt;&lt;P&gt;Using DB field names if the value will be changed&lt;/P&gt;&lt;P&gt;Using Occurs clause if only the header is needed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen Inuganti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:53:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/4302066#M1025835</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-05T12:53:02Z</dc:date>
    </item>
  </channel>
</rss>

