<?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: Error Releasing Network via BAPI_NETWORK_MAINTAIN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-releasing-network-via-bapi-network-maintain/m-p/2094560#M435897</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Uwe. I tried your suggestion but I'm still getting the same errors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Apr 2007 01:23:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-06T01:23:27Z</dc:date>
    <item>
      <title>Error Releasing Network via BAPI_NETWORK_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-releasing-network-via-bapi-network-maintain/m-p/2094558#M435895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to release network using BAPI_NETWORK_MAINTAIN with the following codes below:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MOVE: 'NETWORK'       TO lw_method-objecttype,&lt;/P&gt;&lt;P&gt;            '000001'        TO lw_method-refnumber,&lt;/P&gt;&lt;P&gt;            'RELEASE'       TO lw_method-method,&lt;/P&gt;&lt;P&gt;            w_network-aufnr TO lw_method-objectkey.&lt;/P&gt;&lt;P&gt;      APPEND lw_method TO li_method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR: lw_method.&lt;/P&gt;&lt;P&gt;      MOVE: 'SAVE' TO lw_method-method.&lt;/P&gt;&lt;P&gt;      APPEND lw_method TO li_method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MOVE: w_network-aufnr TO lw_netwrk-network.&lt;/P&gt;&lt;P&gt;      APPEND lw_netwrk TO li_netwrk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'BAPI_NETWORK_MAINTAIN'&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          return           = lw_return&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          i_method_project = li_method&lt;/P&gt;&lt;P&gt;          i_network        = li_netwrk&lt;/P&gt;&lt;P&gt;          e_message_table  = li_mess.&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 = c_update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;List of errors obtained include: -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The network could not be released                            &lt;/P&gt;&lt;P&gt;Termination: Too many errors (more than 10% of methods)      &lt;/P&gt;&lt;P&gt;The order or network could not be saved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 10:59:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-releasing-network-via-bapi-network-maintain/m-p/2094558#M435895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T10:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error Releasing Network via BAPI_NETWORK_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-releasing-network-via-bapi-network-maintain/m-p/2094559#M435896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Chin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume that the value for objecttype is not correct. It should be '&amp;lt;b&amp;gt;Network&amp;lt;/b&amp;gt;' (small letters!).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer to the type group '&amp;lt;b&amp;gt;CO1&amp;lt;/b&amp;gt;' for more details (partial coding shown below):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;...
*   abstact ordertype for all common attributes of all ordertypes
    order                 TYPE co1_objtyp VALUE 'Order',
    planned_order         TYPE co1_objtyp VALUE 'PlannedOrder',
    production_order      TYPE co1_objtyp VALUE 'ProductionOrder',
    production_operation  TYPE co1_objtyp VALUE 'ProductionOperation',
    ps_system             TYPE co1_objtyp VALUE 'PsSystem',
    project_definition    TYPE co1_objtyp VALUE 'ProjectDefinition',
    wbs_element           TYPE co1_objtyp VALUE 'WBS-Element',
    wbs_dates             TYPE co1_objtyp VALUE 'WBS-Dates',
    wbs_hierarchy         TYPE co1_objtyp VALUE 'WBS-Hierarchy',
    wbs_milestone         TYPE co1_objtyp VALUE 'WBS-Milestone',
    act_milestone         TYPE co1_objtyp VALUE 'ActivityMilestone',
    network               TYPE co1_objtyp VALUE 'Network',  " !!!
    network_activity      TYPE co1_objtyp VALUE 'NetworkActivity',
    network_element       TYPE co1_objtyp
                          VALUE 'NetworkActivityElement',
    network_relation      TYPE co1_objtyp VALUE 'Relationship',
    milestone             TYPE co1_objtyp VALUE 'MileStone',
    ps_text               TYPE co1_objtyp VALUE 'PS-Text',
    component             TYPE co1_objtyp VALUE 'Component',
    capacity              TYPE co1_objtyp VALUE 'Capacity',
    order_sequence        TYPE co1_objtyp VALUE 'OrderSequence',
    order_position        TYPE co1_objtyp VALUE 'OrderPosition',
    unit                  TYPE co1_objtyp VALUE 'Unit',
    calendar              TYPE co1_objtyp VALUE 'Calendar',
    project_edit_specials TYPE co1_objtyp
                          VALUE 'ProjectEditMaskSpecialChars',
    project_edit_mask     TYPE co1_objtyp VALUE 'ProjectEditMask',
    message_log_method    TYPE co1_objtyp VALUE 'MessageLogMethod',
    message_log_message   TYPE co1_objtyp VALUE 'MessageLogMessage',
    message_log_object    TYPE co1_objtyp VALUE 'MessageLogObject',
...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 11:08:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-releasing-network-via-bapi-network-maintain/m-p/2094559#M435896</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-04-05T11:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Error Releasing Network via BAPI_NETWORK_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-releasing-network-via-bapi-network-maintain/m-p/2094560#M435897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Uwe. I tried your suggestion but I'm still getting the same errors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 01:23:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-releasing-network-via-bapi-network-maintain/m-p/2094560#M435897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T01:23:27Z</dc:date>
    </item>
  </channel>
</rss>

