<?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: starting new task in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585720#M591651</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;am trying to write the BDC code for LT09 inside the code of LT04.&lt;/P&gt;&lt;P&gt;The exit I found is in sode the function module L_TA_HINZUFUEGEN, which is an update FM.&lt;/P&gt;&lt;P&gt;LT04- creating storage units.&lt;/P&gt;&lt;P&gt;LT09- Creating TOs for these Storage units.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I kept all my BDC code inside a ZFM and made it RFC enabled.&lt;/P&gt;&lt;P&gt;Now inside the exit I've call this ZFM with addition STARTING NEW TASK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the issue here is in when its trying to create TOs for storage units(LT09 functionality), the Lock on storage bin is still not being released resulting the failure of BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So now, what I want is the new task should be executed after  L_TA_HINZUFUEGEN execution is completed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Aug 2007 08:55:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-02T08:55:01Z</dc:date>
    <item>
      <title>starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585716#M591647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In one of the exits of a functionmodule ( which is an update task FM), I am call ing an RFC function module using&amp;lt;b&amp;gt; "strating new task".&amp;lt;/b&amp;gt; I had to use starting new task, as the function module has call transaction statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now my requirement is this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My new task should be executed only after the parent task (first task) is finished.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 07:08:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585716#M591647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T07:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585717#M591648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you clarify exactly the sequence and the RFC desitinations you are trying to work with... e.g. you have a function module which is an update task on system "A", but are you trying to send data to system "B" with the RFC or just call a function module in system "A" that just happens to be RFC-enabled?  If you want serialisation of RFC function modules, then qFRC is possibly a good bet, but can you explain the full scenario a bit better, perhaps with FM names if they are SAP standard?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 07:44:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585717#M591648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T07:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585718#M591649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to call the function using IN UPDATE TASK. It will trigger the function module just after the first COMMIT action (anyways, if it's a manual coded COMMIT or a "natural" commit provided by the system).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 08:24:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585718#M591649</guid>
      <dc:creator>VXLozano</dc:creator>
      <dc:date>2007-08-02T08:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585719#M591650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;am trying to write the BDC code for LT09 inside the code of LT04.&lt;/P&gt;&lt;P&gt;The exit I found is in sode the function module L_TA_HINZUFUEGEN, which is an update FM.&lt;/P&gt;&lt;P&gt;LT04- creating storage units.&lt;/P&gt;&lt;P&gt;LT09- Creating TOs for these Storage units.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I kept all my BDC code inside a ZFM and made it RFC enabled.&lt;/P&gt;&lt;P&gt;Now inside the exit I've call this ZFM with addition STARTING NEW TASK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the issue here is in when its trying to create TOs for storage units(LT09 functionality), the Lock on storage bin is still not being released resulting the failure of BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So now, what I want is the new task should be executed after  L_TA_HINZUFUEGEN execution is completed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 08:54:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585719#M591650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T08:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585720#M591651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;am trying to write the BDC code for LT09 inside the code of LT04.&lt;/P&gt;&lt;P&gt;The exit I found is in sode the function module L_TA_HINZUFUEGEN, which is an update FM.&lt;/P&gt;&lt;P&gt;LT04- creating storage units.&lt;/P&gt;&lt;P&gt;LT09- Creating TOs for these Storage units.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I kept all my BDC code inside a ZFM and made it RFC enabled.&lt;/P&gt;&lt;P&gt;Now inside the exit I've call this ZFM with addition STARTING NEW TASK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the issue here is in when its trying to create TOs for storage units(LT09 functionality), the Lock on storage bin is still not being released resulting the failure of BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So now, what I want is the new task should be executed after  L_TA_HINZUFUEGEN execution is completed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 08:55:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585720#M591651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T08:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585721#M591652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you'll have to call the function (as I said) IN UPDATE TASK, and not STARTING NEW TASK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's sad, it's weird, but if you can tune enough your FM, it works pretty well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 10:41:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585721#M591652</guid>
      <dc:creator>VXLozano</dc:creator>
      <dc:date>2007-08-02T10:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585722#M591653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The issue is that we can't use "call transaction" insode the update function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 10:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585722#M591653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T10:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585723#M591654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The function module L_TA_HINZUFUEGEN is called in LL03AF8C... and just afterwards there is mention of two BADIs i.e. WM_ENHANCMENT &amp;amp; WM_DSD_ENHANCEMENT... have you looked to see whether these can give you the result you want?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 03:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585723#M591654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-03T03:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585724#M591655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some of the badis available are not released yet.. others doesn't satisfty my requirement &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 06:14:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/starting-new-task/m-p/2585724#M591655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-03T06:14:46Z</dc:date>
    </item>
  </channel>
</rss>

