<?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: FBI Transaction Handler Class in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808231#M1881607</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;adding the CHANGE_MODE=C parameter indeed does te trick.&amp;nbsp; Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR,&lt;/P&gt;&lt;P&gt;Bjorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jan 2015 21:06:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2015-01-28T21:06:40Z</dc:date>
    <item>
      <title>FBI Transaction Handler Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808228#M1881604</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;I've done some basic implementations with FPM BOPF Integration and was wondering how the standard BO CRUD operations must be implemented. So far, I based myself upon the very good introductory document by Matan Taranto, but the guide neither SAP help explain how to handle CRUD operations.&lt;BR /&gt;Via, for example, a list GUIBB I can add a toolbar button and link it to one of the node's CRUD actions (SAP help, "Configuring a BO Action"). Unfortunatelly this button is only enabled for custom actions I created for that BO's node, not for its standard CRUD actions. The FPM application warns me that the Transaction Handler Class (Wire schema) is missing and I suspect this is cause of the problem. Do we have to create this transaction handler class ourselves? How do we link it to the BO's service / transaction manager?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Bjorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2015 20:26:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808228#M1881604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-26T20:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: FBI Transaction Handler Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808229#M1881605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Bjorn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The CRUD implementation is provided by the FBI framework, and does not require any additional coding.&lt;/P&gt;&lt;P&gt;For Create you can add a toolbar button on the list UIBB and assign it the event FBI_CREATE.&lt;/P&gt;&lt;P&gt;For Update you just open the screen to edit (add Edit button to global toolbar), and the changes on the UI will be passed to BOPF with any roundtrip, and will be saved when the transaction is saved.&lt;/P&gt;&lt;P&gt;For Delete you can add a toolbar button on the list UIBB and assign it the event FBI_DELETE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to create the root instance, you need to open your application in CREATE_MODE = 'C' (add it to the URL). for this to work, you must use the BOOTSTRAP feeder class to connect between the initial screen and the main screen (you can follow the &lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-45726"&gt;introduction document to FBI &lt;/A&gt;to learn how to add the BOOTSTRAP UIBB). &lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Matan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2015 11:20:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808229#M1881605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-27T11:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: FBI Transaction Handler Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808230#M1881606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Matan Taranto wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;If you want to create the root instance, you need to open your application in CREATE_MODE = 'C' (add it to the URL). for this to work, you must use the BOOTSTRAP feeder class to connect between the initial screen and the main screen (you can follow the &lt;A _jive_internal="true" data-containerid="2562" data-containertype="14" data-objectid="45726" data-objecttype="102" href="https://answers.sap.com/docs/DOC-45726"&gt;introduction document to FBI &lt;/A&gt;to learn how to add the BOOTSTRAP UIBB).&lt;/P&gt;
&lt;P&gt;BR,&lt;/P&gt;
&lt;P&gt;Matan.&lt;/P&gt;


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi Matan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've followed this document, added the &lt;STRONG&gt;CREATE_MODE='C'&lt;/STRONG&gt; to the URL but &lt;SPAN style="font-size: 13.63636302948px;"&gt; still can't make &lt;/SPAN&gt;to work. Any thought?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Custodio&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDITED: just realized it should be &lt;SPAN style="color: #333333; font-size: 11.8181819915771px;"&gt;&lt;STRONG&gt;CHANGE_MODE=C.&lt;/STRONG&gt; Found it &lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-55418#comment-543417"&gt;in a comment you made in another thread&lt;/A&gt;. Cheers.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 04:59:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808230#M1881606</guid>
      <dc:creator>custodio_deoliveira</dc:creator>
      <dc:date>2015-01-28T04:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: FBI Transaction Handler Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808231#M1881607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;adding the CHANGE_MODE=C parameter indeed does te trick.&amp;nbsp; Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR,&lt;/P&gt;&lt;P&gt;Bjorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 21:06:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808231#M1881607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-28T21:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: FBI Transaction Handler Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808232#M1881608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My apologies for the typo,&lt;/P&gt;&lt;P&gt;thnak you for the correction and update.&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1103/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 08:00:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fbi-transaction-handler-class/m-p/10808232#M1881608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-29T08:00:33Z</dc:date>
    </item>
  </channel>
</rss>

