<?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: finding Notification no. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346875#M517794</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Check the data of  IT_RETURN correctly,&lt;/P&gt;&lt;P&gt;whether the saved number is coming into that or not.&lt;/P&gt;&lt;P&gt;If it is not coming into that  IT_RETURN then you can't display without fetching from database table QMFE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jun 2007 13:35:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-11T13:35:12Z</dc:date>
    <item>
      <title>finding Notification no.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346873#M517792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to create a new notification using :&lt;/P&gt;&lt;P&gt;1. BAPI_ALM_NOTIF_CREATE&lt;/P&gt;&lt;P&gt;2. BAPI_ALM_NOTIF_SAVE&lt;/P&gt;&lt;P&gt;3. BAPI_TRANSACTION_COMMIT&lt;/P&gt;&lt;P&gt;The notification is created succesfully but i am not able to get that Not. no.   &lt;/P&gt;&lt;P&gt;for ref. code is :&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        EXTERNAL_NUMBER          =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      NOTIF_TYPE               = P_099&lt;/P&gt;&lt;P&gt;      NOTIFHEADER              = P_IT_NOTIFHEADER&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;     RETURN                   = IT_RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE IT_RETURN WITH KEY TYPE = 'E'.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID IT_RETURN-ID TYPE IT_RETURN-TYPE NUMBER IT_RETURN-NUMBER&lt;/P&gt;&lt;P&gt;            WITH IT_RETURN-MESSAGE_V1&lt;/P&gt;&lt;P&gt;                 IT_RETURN-MESSAGE_V2&lt;/P&gt;&lt;P&gt;                 IT_RETURN-MESSAGE_V3&lt;/P&gt;&lt;P&gt;                 IT_RETURN-MESSAGE_V4.&lt;/P&gt;&lt;P&gt;  ELSE.&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      = IT_NOTIFHEADER_EXPORT-NOTIF_NO&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        NOTIFHEADER = IT_NOTIFHEADER_EXPORT&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        RETURN      = IT_RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE IT_RETURN WITH KEY TYPE = 'E'.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID IT_RETURN-ID TYPE IT_RETURN-TYPE NUMBER IT_RETURN-NUMBER&lt;/P&gt;&lt;P&gt;            WITH IT_RETURN-MESSAGE_V1&lt;/P&gt;&lt;P&gt;                 IT_RETURN-MESSAGE_V2&lt;/P&gt;&lt;P&gt;                 IT_RETURN-MESSAGE_V3&lt;/P&gt;&lt;P&gt;                 IT_RETURN-MESSAGE_V4.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WAIT          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;I want notification no.that is generated, without finding that in table (database) so that i can flash that no. on screen in message&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>Mon, 11 Jun 2007 13:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346873#M517792</guid>
      <dc:creator>Privete_member__1259949</dc:creator>
      <dc:date>2007-06-11T13:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: finding Notification no.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346874#M517793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to create a new notification using :&lt;/P&gt;&lt;P&gt;1. BAPI_ALM_NOTIF_CREATE&lt;/P&gt;&lt;P&gt;2. BAPI_ALM_NOTIF_SAVE&lt;/P&gt;&lt;P&gt;3. BAPI_TRANSACTION_COMMIT&lt;/P&gt;&lt;P&gt;The notification is created succesfully but i am not able to get that Not. no. &lt;/P&gt;&lt;P&gt;I want notification no.that is generated, without finding that in table (database) so that i can flash that no. on screen in message. are these BAPI's gives correct Not. no. or not meaning is it possible or not ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be awarded to right one.&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 13:30:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346874#M517793</guid>
      <dc:creator>Privete_member__1259949</dc:creator>
      <dc:date>2007-06-11T13:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: finding Notification no.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346875#M517794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Check the data of  IT_RETURN correctly,&lt;/P&gt;&lt;P&gt;whether the saved number is coming into that or not.&lt;/P&gt;&lt;P&gt;If it is not coming into that  IT_RETURN then you can't display without fetching from database table QMFE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 13:35:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346875#M517794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T13:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: finding Notification no.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346876#M517795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Anji thanks for ur attention,&lt;/P&gt;&lt;P&gt;I checked IT_RETURN but the no. is not coming in that table.&lt;/P&gt;&lt;P&gt;is there any other BAPI which gives me Not. no. along with IT_RETURN table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 13:42:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346876#M517795</guid>
      <dc:creator>Privete_member__1259949</dc:creator>
      <dc:date>2007-06-11T13:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: finding Notification no.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346877#M517796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you are not importing anything back from BAPI_ALM_NOTIF_CREATE.&lt;/P&gt;&lt;P&gt;( Check the Export paramaters of this function in SE37) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTIFHEADER_EXPORT-NOTIF_NO should have the notification number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( Never used this and but used BAPI_SERVICENOTIFICAT_CREATE).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 16:09:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-notification-no/m-p/2346877#M517796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T16:09:02Z</dc:date>
    </item>
  </channel>
</rss>

