<?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: function: alm_me_notification_change in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-alm-me-notification-change/m-p/5993662#M1343033</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very much for reply.&lt;/P&gt;&lt;P&gt;we send OSS to SAP and they said that its not possible to use this function to change KOSTL and WBS element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you very much.&lt;/P&gt;&lt;P&gt;Michal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Sep 2009 04:47:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-02T04:47:14Z</dc:date>
    <item>
      <title>function: alm_me_notification_change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-alm-me-notification-change/m-p/5993660#M1343031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to change cost center and wbs element in trans. iw22.&lt;/P&gt;&lt;P&gt;i try to use this function without succeed.(i call this function and than i do commit)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sy-subrc = 0 and the "return" value is empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advanced,&lt;/P&gt;&lt;P&gt;Michal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: michal_zindorf on Aug 18, 2009 9:06 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 06:57:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-alm-me-notification-change/m-p/5993660#M1343031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-18T06:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: function: alm_me_notification_change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-alm-me-notification-change/m-p/5993661#M1343032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;  Single test the Fm and check if ti is working with the smae data that you are trying to update in the FM call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it should be like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA:l_return       LIKE bapiret2 OCCURS 0 WITH HEADER LINE,
           l_notifheader like ALM_ME_NOTIF_HEADER,
           l_notifcause like ALM_ME_NOTIF_CAUSE occurs 0 with header line,
           l_notifitem like ALM_ME_NOTIF_ITEM occurs 0 with header line.

l_notifitem-NOTIF_NO = '000400000020'   &amp;lt;&amp;lt;&amp;lt;&amp;lt; Notification number 
l_notifitem-ITEM_KEY = '0001'.
append ll_notifitem.
l_notifcause-CAUSE_CODEGRP = 'ZQ5'.
l_notifcause-CAUSE_CODE = '0020'.
append tl_notifcause.

Then call the FM:
CALL FUNCTION 'ALM_ME_NOTIFICATION_CHANGE'
  EXPORTING
    notif_no                         = '000400000020
   NOTIFICATION_HEADER              = l_notifheader
 TABLES
   NOTIFICATION_ITEM                = l_notifitem
   NOTIFICATION_CAUSE               = l_notifcause
   RETURN                           =ll_Return
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also there are several threads on the forum searcha nd hopefully you will get the resolution for your issue, I would also suggets check in debugging if the values are getting properly passed to the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 07:23:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-alm-me-notification-change/m-p/5993661#M1343032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-18T07:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: function: alm_me_notification_change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-alm-me-notification-change/m-p/5993662#M1343033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very much for reply.&lt;/P&gt;&lt;P&gt;we send OSS to SAP and they said that its not possible to use this function to change KOSTL and WBS element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you very much.&lt;/P&gt;&lt;P&gt;Michal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 04:47:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-alm-me-notification-change/m-p/5993662#M1343033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-02T04:47:14Z</dc:date>
    </item>
  </channel>
</rss>

