<?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 - STATUS_CHANGE_EXTERN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464156#M218745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One of the import parameter of STATUS_CHANGE_EXTERN is SET_CHGKZ. Pass 'X' to this parameter and a change number will get generated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Aug 2006 05:00:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-11T05:00:17Z</dc:date>
    <item>
      <title>BAPI - STATUS_CHANGE_EXTERN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464155#M218744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;We are using STATUS_CHANGE_EXTERN to update PLM Work Order and Operation statuses.  When the status is changed manually using IW32, a change record is created.  However, using the BAPI there is not, even though the status gets changed correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one assist?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 00:36:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464155#M218744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T00:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI - STATUS_CHANGE_EXTERN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464156#M218745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One of the import parameter of STATUS_CHANGE_EXTERN is SET_CHGKZ. Pass 'X' to this parameter and a change number will get generated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 05:00:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464156#M218745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T05:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI - STATUS_CHANGE_EXTERN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464157#M218746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the answer, but it didn't work.  ABAP Changed the code but still no change record, any other ideas?  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 1543     CALL FUNCTION 'STATUS_CHANGE_EXTERN'           &lt;/P&gt;&lt;P&gt;            EXPORTING                                    &lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CHECK_ONLY                = ' '            &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;              CLIENT                    = SY-MANDT       &lt;/P&gt;&lt;P&gt;              OBJNR                     = TBL_DATA-OBJNR &lt;/P&gt;&lt;P&gt;              USER_STATUS               = G_STATUS_TO    &lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      SET_INACT                 = ' '            &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;              SET_CHGKZ                 = 'X'            &lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    IMPORTING                                    &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      STONR                     =                &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;           EXCEPTIONS                                    &lt;/P&gt;&lt;P&gt;             OBJECT_NOT_FOUND          = 1               &lt;/P&gt;&lt;P&gt;             STATUS_INCONSISTENT       = 2               &lt;/P&gt;&lt;P&gt;             STATUS_NOT_ALLOWED        = 3               &lt;/P&gt;&lt;P&gt;             OTHERS                    = 4               &lt;/P&gt;&lt;P&gt;                    .                                    &lt;/P&gt;&lt;P&gt; 1589      CALL FUNCTION 'STATUS_CHANGE_EXTERN'          &lt;/P&gt;&lt;P&gt;            EXPORTING                                    &lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CHECK_ONLY                = ' '            &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;              CLIENT                    = SY-MANDT       &lt;/P&gt;&lt;P&gt;              OBJNR                     = L_OBJNR        &lt;/P&gt;&lt;P&gt;              USER_STATUS               = G_STATUS_TO_OP &lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      SET_INACT                 = ' '            &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;             SET_CHGKZ                 = 'X'             &lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    IMPORTING                                    &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      STONR                     =                &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;           EXCEPTIONS                                    &lt;/P&gt;&lt;P&gt;             OBJECT_NOT_FOUND          = 1               &lt;/P&gt;&lt;P&gt;             STATUS_INCONSISTENT       = 2               &lt;/P&gt;&lt;P&gt;             STATUS_NOT_ALLOWED        = 3               &lt;/P&gt;&lt;P&gt;             OTHERS                    = 4&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 07:25:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464157#M218746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T07:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI - STATUS_CHANGE_EXTERN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464158#M218747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I know this is long after the question, but I have not seen any response to this. &lt;/P&gt;&lt;P&gt;This FM works 100%, but you have to call COMMIT WORK after a sy-subrc = 0 has been received from the FM.&lt;/P&gt;&lt;P&gt;PS: Remember to set SET_CHGKZ = 'X'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 14:51:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464158#M218747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-03T14:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI - STATUS_CHANGE_EXTERN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464159#M218748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Late in the day for this reply but Ive had the same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used this FM when releasing production orders, followed through in debug and everything worked fine.....except that the status did not update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I also assumed that the FM was the end of the matter so did not select 'save' when closing CO02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure the user saves the production order or the status will not be updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 12:35:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464159#M218748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-07T12:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI - STATUS_CHANGE_EXTERN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464160#M218749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Nollie, after "commit work", it works.&lt;SPAN __jive_emoticon_name="cool" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/776/images/emoticons/cool.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 06:11:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464160#M218749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-15T06:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI - STATUS_CHANGE_EXTERN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464161#M218750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(&lt;STRONG style="font-size: 10.8px; color: #333333; background: #ffffff;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="388921" data-username="nollie.hietbrink" href="https://answers.sap.com/people/nollie.hietbrink" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #3778c7; background: transparent;"&gt;Nollie Hietbrink&lt;/A&gt; &lt;/STRONG&gt;&lt;SPAN style="color: #333333; font-size: 10.8px;"&gt;May 3, 2011 4:51 PM)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Five years after. Your advise has seen very useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2016 07:05:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-status-change-extern/m-p/1464161#M218750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-07-15T07:05:30Z</dc:date>
    </item>
  </channel>
</rss>

