<?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: FB02 Simulation mode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056058#M90388</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your replies, I am currently implementing the solution and will let you know how it goes...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Dec 2005 14:35:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-02T14:35:33Z</dc:date>
    <item>
      <title>FB02 Simulation mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056053#M90383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to modify a set of documents from a file, but the requirement exacts a simulation or 'test run' mode for the process befor going into 'real' mode. The modification is made using a bdc 'call transaction' to the FB02. This transaction doesn't have the 'Simulate' or 'Check' options like the FB01. The question is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to perform a preliminary check in this transaction? or is there a FM to perform the same operation which includes this functionality?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sergio.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 23:10:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056053#M90383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T23:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: FB02 Simulation mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056054#M90384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;a bit primitive I know but you could call FB02 without passing the 'save' function but just hit enter and back. That way you could capture any basic error messages that FB02 would provide, eg document does not exist etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 23:54:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056054#M90384</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2005-12-01T23:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: FB02 Simulation mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056055#M90385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in this case , you can write a BDC which will take same steps as the real one except pressing &amp;lt;b&amp;gt;Save button&amp;lt;/b&amp;gt;. You can &amp;lt;b&amp;gt;back out and exit tran&amp;lt;/b&amp;gt;saction at that point. By that time, you reach to the stage when you are ready to save, it will carry out at least primilary checks. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course there are somethings that will show up at save time only, but it is good for primilary checking.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 00:00:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056055#M90385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T00:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: FB02 Simulation mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056056#M90386</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;I dont think there is anything to check that. May be you can try to create a new document with the same details(or just with the new additions) using FM BAPI_ACC_DOCUMENT_CHECK/POST and see if it returns any errors. This way, you may be able to filter some errors. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 01:28:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056056#M90386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T01:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: FB02 Simulation mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056057#M90387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think Neil's and Sharad's way are the only way you can do this. Bear in mind however, that pressing the back or cancel key quite often gives an error in batch input. But since you are only changing documents there's not much harm you can do. The test run won't do much more than ensure that the batch input session works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 03:35:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056057#M90387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T03:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: FB02 Simulation mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056058#M90388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your replies, I am currently implementing the solution and will let you know how it goes...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 14:35:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb02-simulation-mode/m-p/1056058#M90388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T14:35:33Z</dc:date>
    </item>
  </channel>
</rss>

