<?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: Run time Error while creating Network Activity. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-while-creating-network-activity/m-p/5226609#M1208344</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;Go through the SAP NOTES 777934&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Symptom&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;When a new network activity is created using BAPI, BAPI_BUS2002_ACT_CREATE_MULTI and then the newly created activities are&lt;/P&gt;&lt;P&gt;reverted by using BAPI BAPI_TRANSACTION_ROLLBACK,the control objects of newly created activities are not reverted, therefore when you perform a&lt;/P&gt;&lt;P&gt;commit of the transaction by using BAPI_TRANSACTION_COMMIT, a short dump'ILLEGAL_TEMPORARY_OBJNR' occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Other terms&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;short dump 'ILLEGAL_TEMPORARY_OBJNR', CKCOUEB, Costing Sheet, Posting Date, Overhead key, CK_F_CO_OBJECT_ALL_REFRESH, BAPI_PS_INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reason and Prerequisites&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This is caused by program error. This note references SPC 770601 and created for corrections to be included in support package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Solution&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Implement the source code corrections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dwaraka.S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Feb 2009 09:45:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-11T09:45:28Z</dc:date>
    <item>
      <title>Run time Error while creating Network Activity.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-while-creating-network-activity/m-p/5226608#M1208343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Getting Runtime -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; Runtime error: ILLEGAL_TEMPORARY_OBJNR  ("TM0000000008NV" " " " ")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While trying to create the Network activity in the following sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_PS_INITIALIZATION'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; *--&amp;gt; Create the Network Activity&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_BUS2002_ACT_CREATE_MULTI'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_number     = i_number&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      it_activity  = t_activity&lt;/P&gt;&lt;P&gt;      et_return    = it_preturn.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     extensionin  = extensionin&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     extensionout = extensionout.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT it_preturn INTO wa_preturn.&lt;/P&gt;&lt;P&gt;    IF wa_preturn-type EQ c_error OR&lt;/P&gt;&lt;P&gt;       wa_preturn-type EQ c_termination OR&lt;/P&gt;&lt;P&gt;       wa_preturn-type EQ c_exit.&lt;/P&gt;&lt;P&gt;      l_error = c_yes.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF l_error IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    ROLLBACK WORK. " satish 09/02/2008&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_BUS2002_SET_STATUS'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      number                   = i_number&lt;/P&gt;&lt;P&gt;      set_system_status        = 'CRTD'         " changed 'REL' to 'CRTD'  satish 11/04/2008&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      return                   = lwa_ret1&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      i_activity_system_status = lt_act_status_set&lt;/P&gt;&lt;P&gt;      e_result                 = lt_stat_ret.&lt;/P&gt;&lt;P&gt;  IF lwa_ret1-type EQ c_error OR&lt;/P&gt;&lt;P&gt;     lwa_ret1-type EQ c_termination OR&lt;/P&gt;&lt;P&gt;     lwa_ret1-type EQ c_exit.&lt;/P&gt;&lt;P&gt;         call function 'BAPI_TRANSACTION_ROLLBACK'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_PS_PRECOMMIT'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      et_return = lt_return.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      wait = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help really appriciated. &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2009 09:26:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-while-creating-network-activity/m-p/5226608#M1208343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-11T09:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Run time Error while creating Network Activity.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-while-creating-network-activity/m-p/5226609#M1208344</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;Go through the SAP NOTES 777934&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Symptom&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;When a new network activity is created using BAPI, BAPI_BUS2002_ACT_CREATE_MULTI and then the newly created activities are&lt;/P&gt;&lt;P&gt;reverted by using BAPI BAPI_TRANSACTION_ROLLBACK,the control objects of newly created activities are not reverted, therefore when you perform a&lt;/P&gt;&lt;P&gt;commit of the transaction by using BAPI_TRANSACTION_COMMIT, a short dump'ILLEGAL_TEMPORARY_OBJNR' occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Other terms&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;short dump 'ILLEGAL_TEMPORARY_OBJNR', CKCOUEB, Costing Sheet, Posting Date, Overhead key, CK_F_CO_OBJECT_ALL_REFRESH, BAPI_PS_INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reason and Prerequisites&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This is caused by program error. This note references SPC 770601 and created for corrections to be included in support package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Solution&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Implement the source code corrections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dwaraka.S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2009 09:45:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-while-creating-network-activity/m-p/5226609#M1208344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-11T09:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: Run time Error while creating Network Activity.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-while-creating-network-activity/m-p/5226610#M1208345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This problem is solved now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2009 08:19:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-while-creating-network-activity/m-p/5226610#M1208345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-23T08:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Run time Error while creating Network Activity.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-while-creating-network-activity/m-p/5226611#M1208346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 14:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-while-creating-network-activity/m-p/5226611#M1208346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-11T14:19:52Z</dc:date>
    </item>
  </channel>
</rss>

