<?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 fm in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fm/m-p/3534493#M850381</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the select-option get GL account no into an internal table.&lt;/P&gt;&lt;P&gt;Now loop through the internal table and call the BAPI inside the loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;Thanks Arjun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Mar 2008 11:53:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-14T11:53:25Z</dc:date>
    <item>
      <title>bapi fm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fm/m-p/3534492#M850380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iam using bapi fm BAPI_GL_ACC_GETCURRENTBALANCE which will give current balance &lt;/P&gt;&lt;P&gt;of gl account no, company code , currency type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; but the thing for one glaccount no  it is getting, suppose if i give range of glaccount no in selct-options . &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; what is the logic?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2008 11:49:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fm/m-p/3534492#M850380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-14T11:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: bapi fm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fm/m-p/3534493#M850381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the select-option get GL account no into an internal table.&lt;/P&gt;&lt;P&gt;Now loop through the internal table and call the BAPI inside the loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;Thanks Arjun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2008 11:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fm/m-p/3534493#M850381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-14T11:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: bapi fm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fm/m-p/3534494#M850382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select-options: s_acc for .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_acc.&lt;/P&gt;&lt;P&gt;  call the BAPI by passing s_acc-low value.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2008 11:55:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fm/m-p/3534494#M850382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-14T11:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: bapi fm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fm/m-p/3534495#M850383</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;Try this Code ,&lt;/P&gt;&lt;P&gt;select-options : hkont for bseg-hkont.&lt;/P&gt;&lt;P&gt;loop at hkont.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_GL_ACC_GETCURRENTBALANCE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      companycode           = ccode&lt;/P&gt;&lt;P&gt;      glacct                = hkont&lt;/P&gt;&lt;P&gt;      currencytype          = ctype&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     ACCOUNT_BALANCE       = balance&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    RETURN                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Balakumar.G.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2008 12:00:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fm/m-p/3534495#M850383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-14T12:00:37Z</dc:date>
    </item>
  </channel>
</rss>

