<?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 complete notification while changing workorder status to release in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/complete-notification-while-changing-workorder-status-to-release/m-p/11240966#M1913086</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;I want to complete notification which attached to a workroder while changing system status, but i could not able to find any method to change the notification status to complete using bapi_alm_order_maintain while updating Workorder.&lt;/P&gt;&lt;P&gt;Is this can be achievable through the standard BAPI. I referred documentation of BAPI provided by SAP, but no method I found which suits my requirement.&lt;/P&gt;&lt;P&gt;If it is achievable how to use the BAPI(passing data) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Aug 2015 07:46:18 GMT</pubDate>
    <dc:creator>rajanib_bollepally</dc:creator>
    <dc:date>2015-08-07T07:46:18Z</dc:date>
    <item>
      <title>complete notification while changing workorder status to release</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/complete-notification-while-changing-workorder-status-to-release/m-p/11240966#M1913086</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;I want to complete notification which attached to a workroder while changing system status, but i could not able to find any method to change the notification status to complete using bapi_alm_order_maintain while updating Workorder.&lt;/P&gt;&lt;P&gt;Is this can be achievable through the standard BAPI. I referred documentation of BAPI provided by SAP, but no method I found which suits my requirement.&lt;/P&gt;&lt;P&gt;If it is achievable how to use the BAPI(passing data) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2015 07:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/complete-notification-while-changing-workorder-status-to-release/m-p/11240966#M1913086</guid>
      <dc:creator>rajanib_bollepally</dc:creator>
      <dc:date>2015-08-07T07:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: complete notification while changing workorder status to release</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/complete-notification-while-changing-workorder-status-to-release/m-p/11240967#M1913087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;STRONG&gt;&lt;EM&gt;janu&lt;/EM&gt;&lt;/STRONG&gt;,&lt;/P&gt;&lt;P style="text-align: justify;"&gt;Put the following code in the include &lt;EM&gt;&lt;STRONG&gt;ZXWOCU07&lt;/STRONG&gt;&lt;/EM&gt; of user-exit &lt;EM&gt;IWO10009. &lt;/EM&gt;Your intended result will be noticed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;IF CAUFVD_IMP-IPHAS = '2'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; DATA: V_OBJNR TYPE VIQMEL-OBJNR.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; CLEAR V_OBJNR.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; DATA: IT_STAT TYPE TABLE OF JSTAT,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WA_STAT TYPE JSTAT.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; WA_STAT-STAT =&amp;nbsp; 'I0072'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; WA_STAT-INACT = ' '.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; APPEND WA_STAT TO IT_STAT.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; SELECT SINGLE OBJNR FROM VIQMEL INTO V_OBJNR&lt;/P&gt;
&lt;P&gt;WHERE QMNUM = CAUFVD_IMP-QMNUM.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; CALL FUNCTION 'STATUS_CHANGE_INTERN'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXPORTING&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OBJNR&amp;nbsp; = V_OBJNR&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLES&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STATUS = IT_STAT.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;ENDIF.&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;After this when you Release an Order and save the Notification associated with it will be completed (NOCO).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #548235; font-size: 14.0pt; text-decoration: underline; font-family: Mistral;"&gt;KJogeswaraRao&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2015 15:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/complete-notification-while-changing-workorder-status-to-release/m-p/11240967#M1913087</guid>
      <dc:creator>jogeswararao_kavala</dc:creator>
      <dc:date>2015-08-07T15:17:28Z</dc:date>
    </item>
  </channel>
</rss>

