<?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: BAPI_TRANSACTION_COMMIT after BAPI_NETWORK_MANTAIN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144532#M1620709</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;First perform BAPI_NETWORK_MANTAIN , and check the message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF it is success &lt;/P&gt;&lt;P&gt;    then perform BAPI_TRANSACTION_COMMIT &amp;amp; perform  BAPINETWORK_COMP_ADD.&lt;/P&gt;&lt;P&gt;elseif error occur.&lt;/P&gt;&lt;P&gt;    then do bapi_rollback.&lt;/P&gt;&lt;P&gt;     perform  BAPINETWORK_COMP_ADD.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Sep 2011 16:22:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-09-09T16:22:05Z</dc:date>
    <item>
      <title>BAPI_TRANSACTION_COMMIT after BAPI_NETWORK_MANTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144530#M1620707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry, I have a problem.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)  I perform   "BAPI_NETWORK_MANTAIN  &lt;/P&gt;&lt;P&gt;2)  I perform immediately the BAPI_TRANSACTION_COMMIT with WAIT = 'X' with file RETURN  (return file is initial)&lt;/P&gt;&lt;P&gt;3)  I perform immediately the BAPINETWORK_COMP_ADD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after point 2)  &lt;/P&gt;&lt;P&gt;  it is in error..... NETWORK already in elaboration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI_TRANSACTION_COMMIT doesn't work... because it begins the process of the BAPINETWORK_COMP_ADD &lt;/P&gt;&lt;P&gt;but the process of the BAPI_NETWORK_MANTAIN  is not ended yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want to resolve with " WAIT UP TO 2 SECONDS"  &lt;/P&gt;&lt;P&gt;I want to resolve in other normal way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Marco Echino.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 14:20:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144530#M1620707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-09T14:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT after BAPI_NETWORK_MANTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144531#M1620708</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;SAP uses Export and Import parameters for this BAPI BAPI_NETWORK_MANTAIN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please declare the below set variables which are being used for IMPORT and EXPORT and use FREE MEMORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA i_method_project
     LIKE bapi_method_project OCCURS 0 WITH HEADER LINE.
DATA i_network
     LIKE bapi_network OCCURS 0 WITH HEADER LINE.
DATA i_network_update
     LIKE  bapi_network_update OCCURS 0 WITH HEADER LINE.
DATA i_activity
     LIKE  bapi_network_activity  OCCURS 0 WITH HEADER LINE.
DATA i_activity_update
     LIKE  bapi_network_activity_up  OCCURS 0 WITH HEADER LINE.
DATA i_relation
     LIKE  bapi_network_relation  OCCURS 0 WITH HEADER LINE.
DATA i_relation_update
     LIKE  bapi_network_relation_up  OCCURS 0 WITH HEADER LINE.
DATA e_message_table
     LIKE  bapi_meth_message OCCURS 0 WITH HEADER LINE.
DATA return LIKE bapireturn1.
DATA i_activity_element
     LIKE bapi_act_element OCCURS 0 WITH HEADER LINE.
DATA i_activity_element_update
     LIKE bapi_act_element_upd OCCURS 0 WITH HEADER LINE.
DATA i_activity_milestone
     LIKE bapi_act_milestone OCCURS 0 WITH HEADER LINE.
DATA i_activity_milestone_update
     LIKE bapi_act_milestone_upd OCCURS 0 WITH HEADER LINE.
*
FREE:   MEMORY ID 'NW_MAIN_I_METHOD_PROJECT',
        MEMORY ID 'NW_MAIN_I_NETWORK',
        MEMORY ID 'NW_MAIN_I_NETWORK_UPDATE',
        MEMORY ID 'NW_MAIN_I_ACTIVITY',
        MEMORY ID 'NW_MAIN_I_ACTIVITY_UPDATE',
        MEMORY ID 'NW_MAIN_I_RELATION',
        MEMORY ID 'NW_MAIN_I_RELATION_UPDATE',
        MEMORY ID 'I_ACTIVITY_ELEMENT',
        MEMORY ID 'I_ACTIVITY_ELEMENT_UPDATE',
        MEMORY ID 'I_ACTIVITY_MILESTONE',
        MEMORY ID 'I_ACTIVITY_MILESTONE_UPDATE'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 15:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144531#M1620708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-09T15:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT after BAPI_NETWORK_MANTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144532#M1620709</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;First perform BAPI_NETWORK_MANTAIN , and check the message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF it is success &lt;/P&gt;&lt;P&gt;    then perform BAPI_TRANSACTION_COMMIT &amp;amp; perform  BAPINETWORK_COMP_ADD.&lt;/P&gt;&lt;P&gt;elseif error occur.&lt;/P&gt;&lt;P&gt;    then do bapi_rollback.&lt;/P&gt;&lt;P&gt;     perform  BAPINETWORK_COMP_ADD.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 16:22:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144532#M1620709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-09T16:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT after BAPI_NETWORK_MANTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144533#M1620710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Echino,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Execute this bapi first  BAPI_NETWORK_MANTAIN and check the return messages IF it is success then BAPI_TRANSACTION_COMMIT and then  BAPI_NETWORK_COMP_ADD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 16:40:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144533#M1620710</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-09-09T16:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT after BAPI_NETWORK_MANTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144534#M1620711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to check the success before you commit.&lt;/P&gt;&lt;P&gt;But before commit ends you cannot run the next function module.&lt;/P&gt;&lt;P&gt;I guess you will have to put wait time... to avoid any malfunctioning of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit Mohan Gupta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Sep 2011 04:28:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-after-bapi-network-mantain/m-p/8144534#M1620711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-10T04:28:38Z</dc:date>
    </item>
  </channel>
</rss>

