<?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_ALM_NOTIF_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450002#M1413597</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Keshav: That was not helpful. I need some sample data with which this BAPI will get executed successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Jan 2010 12:54:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-04T12:54:32Z</dc:date>
    <item>
      <title>BAPI_ALM_NOTIF_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6449998#M1413593</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 have searched a lot through sdn, but I couldn't find even one sample data which works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create a PM notification, with just an equipment.. nothing extra.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just &lt;STRONG&gt;want some sample data&lt;/STRONG&gt; to be passed to BAPI_ALM_NOTIF_CREATE FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am passing the data acc to my understanding, running the BAPI_ALM_NOTIF_CREATE &amp;amp; BAPI_ALM_NOTIF_SAVE &amp;amp; BAPI_TRANSACTION_COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The surprising this is I am getting nothing in RETURN in BAPI_ALM_NOTIF_CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ankur Malhotra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 12:19:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6449998#M1413593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-04T12:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_NOTIF_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6449999#M1413594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this similar one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;link:[http://www.sap-img.com/abap/bapi-alm-notif-create-maintenance-notification.htm]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 12:26:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6449999#M1413594</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-04T12:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_NOTIF_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450000#M1413595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WA_NOTIF-NOTIF_TYPE = '05'.
  WA_NOTIF-REFOBJECTTYPE = 'IF1001006'.
 APPEND WA_NOTIF TO IT_NOTIF.

  CALL FUNCTION 'BAPI_ALM_NOTIF_CREATE'
  EXPORTING
*   EXTERNAL_NUMBER          = 
    notif_type               =  WA_NOTIF-NOTIF
    notifheader              = WA_NOTIF-REFOBJECTTYPE 
*   TASK_DETERMINATION       = ' '
*   SENDER                   =
*   ORDERID                  =
* IMPORTING
*   NOTIFHEADER_EXPORT       =
* TABLES
*   NOTITEM                  =
*   NOTIFCAUS                =
*   NOTIFACTV                =
*   NOTIFTASK                =
*   NOTIFPARTNR              =
*   LONGTEXTS                =
*   KEY_RELATIONSHIPS        =
*  RETURN                   =
          .


 iF RETURN IS NOT INITIAL.

 WRITE : 'SUCCESS'.

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 12:31:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450000#M1413595</guid>
      <dc:creator>vijy_mukunthan</dc:creator>
      <dc:date>2010-01-04T12:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_NOTIF_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450001#M1413596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a quick question: What is WA_NOTIF's type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also what is to be passed in REFOBJECTTYPE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also in the below code, we are passing WA_NOTIF-REFOBJECTTYPE to notifheader, Is this right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 12:51:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450001#M1413596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-04T12:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_NOTIF_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450002#M1413597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Keshav: That was not helpful. I need some sample data with which this BAPI will get executed successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 12:54:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450002#M1413597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-04T12:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_NOTIF_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450003#M1413598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a Z FM and coded the following inside it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+DATA: gt_return TYPE TABLE OF bapiret2 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_ALM_NOTIF_CREATE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    notif_type  = notif_type&lt;/P&gt;&lt;P&gt;    notifheader = notifheader&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; task_determination = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;    notifheader_export = notifheader_export&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;  notitem = notifitem&lt;/P&gt;&lt;P&gt;  notiftask = notiftask&lt;/P&gt;&lt;P&gt;    return = gt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND gt_return TO return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: gt_return. REFRESH: gt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_ALM_NOTIF_SAVE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      number = notifheader_export-notif_no&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      notifheader = notifheader_export&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      return = gt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND gt_return TO return.&lt;/P&gt;&lt;P&gt;  CLEAR: gt_return. REFRESH: gt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      return = gt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND gt_return TO return.&lt;/P&gt;&lt;P&gt;  CLEAR: gt_return. REFRESH: gt_return.+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working now &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 08:57:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450003#M1413598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T08:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_NOTIF_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450004#M1413599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ankur, I just solved my problem using this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards from Bogotá - Colombia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Felipe Uribe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 23:00:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450004#M1413599</guid>
      <dc:creator>felipe_uribe</dc:creator>
      <dc:date>2015-08-25T23:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_NOTIF_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450005#M1413600</link>
      <description>&lt;P&gt;BAPI return has error with this: "Notification type 05 not defined"&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 17:18:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450005#M1413600</guid>
      <dc:creator>david_burg</dc:creator>
      <dc:date>2021-09-03T17:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_NOTIF_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450006#M1413601</link>
      <description>&lt;P&gt;There is a useful community wiki &lt;A href="https://wiki.scn.sap.com/wiki/display/Community/BAPIs+FOR+SERVICE+NOTIFICATION" target="_blank"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;If you go to T-Code IW51 for SN Creation you can see the list of notification types defined in the system. The defaults appear to be:&lt;/P&gt;&lt;P&gt;S1 Problem Notification&lt;/P&gt;&lt;P&gt;S2 Activity Report&lt;/P&gt;&lt;P&gt;S3 Service Request&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 17:28:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-notif-create/m-p/6450006#M1413601</guid>
      <dc:creator>david_burg</dc:creator>
      <dc:date>2021-09-03T17:28:12Z</dc:date>
    </item>
  </channel>
</rss>

