<?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/3242013#M773792</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As your requirement is to get the debit and credit details for a &lt;STRONG&gt;specific period&lt;/STRONG&gt;, you can get these details only when you go to the transaction level.So i doubt if any FM exists for the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jan 2008 08:10:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-09T08:10:37Z</dc:date>
    <item>
      <title>function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3242011#M773790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to get the data of vendors dedit and credit values.&lt;/P&gt;&lt;P&gt;if i give the date from and date to the credit and dedit details inbetween those dates i need to get.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like in LFC1 table we are getting debit and credit details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any function module or do we need to write code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help its urgent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 07:50:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3242011#M773790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T07:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3242012#M773791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there is no such function after a search,however, it's easier to write code to fetch the data from LFC1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 08:04:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3242012#M773791</guid>
      <dc:creator>daixiong_jiang3</dc:creator>
      <dc:date>2008-01-09T08:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3242013#M773792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As your requirement is to get the debit and credit details for a &lt;STRONG&gt;specific period&lt;/STRONG&gt;, you can get these details only when you go to the transaction level.So i doubt if any FM exists for the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 08:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3242013#M773792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T08:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3242014#M773793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hema,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use it like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT YTEST_F9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  BEGIN OF t_lfc1 OCCURS 0,&lt;/P&gt;&lt;P&gt;    lifnr LIKE lfc1-lifnr,&lt;/P&gt;&lt;P&gt;    bukrs LIKE lfc1-bukrs,&lt;/P&gt;&lt;P&gt;    gjahr LIKE lfc1-gjahr,&lt;/P&gt;&lt;P&gt;    erdat LIKE lfc1-erdat,&lt;/P&gt;&lt;P&gt;    um01s LIKE lfc1-um01s,&lt;/P&gt;&lt;P&gt;    um01h LIKE lfc1-um01h,&lt;/P&gt;&lt;P&gt;  END OF t_lfc1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES:&lt;/P&gt;&lt;P&gt;  r_erdat FOR lfc1-erdat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  r_erdat-sign = 'I'.&lt;/P&gt;&lt;P&gt;  r_erdat-option = 'BT'.&lt;/P&gt;&lt;P&gt;  r_erdat-low = '20071201'.&lt;/P&gt;&lt;P&gt;  r_erdat-high = '20080109'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT lifnr bukrs gjahr erdat um01s um01h&lt;/P&gt;&lt;P&gt;    FROM lfc1&lt;/P&gt;&lt;P&gt;    INTO TABLE t_lfc1&lt;/P&gt;&lt;P&gt;   WHERE erdat IN r_erdat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    LOOP AT t_lfc1.&lt;/P&gt;&lt;P&gt;      write:/ t_lfc1-lifnr,&lt;/P&gt;&lt;P&gt;              t_lfc1-bukrs,&lt;/P&gt;&lt;P&gt;              t_lfc1-gjahr,&lt;/P&gt;&lt;P&gt;              t_lfc1-um01s,&lt;/P&gt;&lt;P&gt;              t_lfc1-um01h.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward points if useful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Ananth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 09:33:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3242014#M773793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T09:33:51Z</dc:date>
    </item>
  </channel>
</rss>

