<?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 bapi in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199196#M469702</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I appreciate if anyone can answer me the below mentioned quesitons&lt;/P&gt;&lt;P&gt;1) one bapi is calling another bapi , say if the second bapi fails is there any way of reverting back the data entered by the first bapi?&lt;/P&gt;&lt;P&gt;2) why is it not advicable to call another program using submit or call transaction in a bapi?&lt;/P&gt;&lt;P&gt;3) difference between synchronous and asynchronous bapi?&lt;/P&gt;&lt;P&gt;4) dos and donts before designing a bapi?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and some other questions&lt;/P&gt;&lt;P&gt;5) how do u lock a data base table?&lt;/P&gt;&lt;P&gt;6) In dialog programming, is it possible to disable a single row in table control?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 May 2007 21:16:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-02T21:16:40Z</dc:date>
    <item>
      <title>bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199196#M469702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I appreciate if anyone can answer me the below mentioned quesitons&lt;/P&gt;&lt;P&gt;1) one bapi is calling another bapi , say if the second bapi fails is there any way of reverting back the data entered by the first bapi?&lt;/P&gt;&lt;P&gt;2) why is it not advicable to call another program using submit or call transaction in a bapi?&lt;/P&gt;&lt;P&gt;3) difference between synchronous and asynchronous bapi?&lt;/P&gt;&lt;P&gt;4) dos and donts before designing a bapi?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and some other questions&lt;/P&gt;&lt;P&gt;5) how do u lock a data base table?&lt;/P&gt;&lt;P&gt;6) In dialog programming, is it possible to disable a single row in table control?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 21:16:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199196#M469702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T21:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199197#M469703</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;5) how do u lock a data base table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to create a lock object in SE11 for the table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use the ENQUEUE &amp;amp; DEQUEUE FMs to lock and unlock the records in the table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6) In dialog programming, is it possible to disable a single row in table control? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes...You have to give LOOP AT SCREEN..ENDLOOP.. inside the LOOP AT ITAB..ENDLOOP in the PBO..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB WITH CONTROL TC.&lt;/P&gt;&lt;P&gt;  MODULE DISABLE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE DISABLE OUTPUT.&lt;/P&gt;&lt;P&gt;   LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***Check the conditions.&lt;/P&gt;&lt;P&gt;     SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;     MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 21:20:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199197#M469703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T21:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199198#M469704</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;Check these links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/bapi-conventions.htm#BAPI/ALE%20Integration" target="test_blank"&gt;http://www.sap-img.com/abap/bapi-conventions.htm#BAPI/ALE%20Integration&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) &amp;amp; 4)&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/bapi-conventions.htm#Important%20things%20to%20remember" target="test_blank"&gt;http://www.sap-img.com/abap/bapi-conventions.htm#Important%20things%20to%20remember&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 21:22:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199198#M469704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T21:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199199#M469705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Naren,&lt;/P&gt;&lt;P&gt;          thanks for your answers . I have a doubt again is it possible to keep the first row as visible and the remaining rows as invisible .. i mean in general change the properties of a single row separately or the table control together with all the rows is a single element ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 21:31:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199199#M469705</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T21:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199200#M469706</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;Yes..You can do it...You can make the first row as visible and then disable all the remaining rows...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot set this in the attributes of the table control..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to write code to disable the row..Please check my previous reply for a sample code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 21:43:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199200#M469706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T21:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199201#M469707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok got it thanks .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 22:47:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2199201#M469707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T22:47:11Z</dc:date>
    </item>
  </channel>
</rss>

