<?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: Need help on BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-on-bapi/m-p/3493963#M840344</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;The easiest way to find sample code for BAPIs is to read the associated documentation (if available) or to use the Where-Used function to find it being used by SAP themselves.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I haven't used this specific BAPI, but would suggest trying the Where-Used feature first and if that's a bust, looking at the BAPI in SE37 and looking at the interface tables and fields to work out what data it is expecting.&lt;/P&gt;&lt;P&gt;A BAPI is always RFC enabled and is a method of an object, but it is in essence still a FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next method is looking at the import structures and trying to work out what they need, if you use test mode in SE37 in your development system you shouldn't do any harm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 09 Mar 2008 08:23:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-09T08:23:43Z</dc:date>
    <item>
      <title>Need help on BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-on-bapi/m-p/3493962#M840343</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;Appreciate your help on how I can use bapi_creditcheck? I can't see any documentation on this. My program is design to do credit checks on orders and create a block for those that are beyond the credit exposure. &lt;/P&gt;&lt;P&gt; How do I use BAPI's in general and can anyone show a sample code on BAPI's, it would be best if the sample is bapi_creditcheck. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 06:31:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-on-bapi/m-p/3493962#M840343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T06:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-on-bapi/m-p/3493963#M840344</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;The easiest way to find sample code for BAPIs is to read the associated documentation (if available) or to use the Where-Used function to find it being used by SAP themselves.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I haven't used this specific BAPI, but would suggest trying the Where-Used feature first and if that's a bust, looking at the BAPI in SE37 and looking at the interface tables and fields to work out what data it is expecting.&lt;/P&gt;&lt;P&gt;A BAPI is always RFC enabled and is a method of an object, but it is in essence still a FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next method is looking at the import structures and trying to work out what they need, if you use test mode in SE37 in your development system you shouldn't do any harm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 08:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-on-bapi/m-p/3493963#M840344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T08:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-on-bapi/m-p/3493964#M840345</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;BAPI is a normal RFC enabled FM. The input to a BAPI normally comes from any Front-End Applications, where SAP is used as Back-End. Considering your case, BAPI_CREDITCHECK has got 2 tables. One is the Input table and the other being output table. So pass in your input via table IT_CREDITLINES to the BAPI and do remember to call BAPI_TRANSACTION_COMMIT whenever you call a BAPI in your code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way, you pass in your input data and retrieve data from the other table ET_... in this bapi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward point if it really helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;VV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 12:42:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-on-bapi/m-p/3493964#M840345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T12:42:56Z</dc:date>
    </item>
  </channel>
</rss>

