<?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: problen with function CLOI_CHANGES_UPL_31 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problen-with-function-cloi-changes-upl-31/m-p/7006048#M1495949</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Zheng,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you paste the call to the FM CLOI_CHANGES_UPL_31.&lt;/P&gt;&lt;P&gt;This fm can only be called once in a session. In your case for the first time it is working fine, and later on this message is sent at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better use the syntax of asynchronous call something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'CLOI_CHANGES_UPL_31'&lt;/P&gt;&lt;P&gt;starting new task 'CLOI_INVOKE'&lt;/P&gt;&lt;P&gt;performing end_task on end of task&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Now write a check of some global variable.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;wait until flag = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This flag will be set in the subroutine END_TASK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Repeat this logic in loop and check the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashikanth. D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jun 2010 10:15:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-02T10:15:01Z</dc:date>
    <item>
      <title>problen with function CLOI_CHANGES_UPL_31</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problen-with-function-cloi-changes-upl-31/m-p/7006047#M1495948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,I have the problem like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I use function CLOI_CHANGES_UPL_31 to change production orders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need know which order  change OK and which order change failed.SO I use the function CLOI_CHANGES_UPL_31 &lt;/P&gt;&lt;P&gt; in the LOOP itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN this case,I can get the messge about the order. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT there is a problem.  the function just work at the first time at the LOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From  the second time It show the error message like this : Restart interface after commit!    (message CLASS : C/   NO:10)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I AVOID the problem or another function can use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jun 2010 09:02:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problen-with-function-cloi-changes-upl-31/m-p/7006047#M1495948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-02T09:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: problen with function CLOI_CHANGES_UPL_31</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problen-with-function-cloi-changes-upl-31/m-p/7006048#M1495949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Zheng,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you paste the call to the FM CLOI_CHANGES_UPL_31.&lt;/P&gt;&lt;P&gt;This fm can only be called once in a session. In your case for the first time it is working fine, and later on this message is sent at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better use the syntax of asynchronous call something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'CLOI_CHANGES_UPL_31'&lt;/P&gt;&lt;P&gt;starting new task 'CLOI_INVOKE'&lt;/P&gt;&lt;P&gt;performing end_task on end of task&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Now write a check of some global variable.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;wait until flag = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This flag will be set in the subroutine END_TASK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Repeat this logic in loop and check the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashikanth. D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jun 2010 10:15:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problen-with-function-cloi-changes-upl-31/m-p/7006048#M1495949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-02T10:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: problen with function CLOI_CHANGES_UPL_31</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problen-with-function-cloi-changes-upl-31/m-p/7006049#M1495950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Shashikanth&lt;/P&gt;&lt;P&gt;      IN your help , I had done the problem.&lt;/P&gt;&lt;P&gt;      Thank you very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jun 2010 05:09:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problen-with-function-cloi-changes-upl-31/m-p/7006049#M1495950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-04T05:09:52Z</dc:date>
    </item>
  </channel>
</rss>

