<?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 ISR_NOTIFICATION_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551366#M580998</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anyone any experience of calling function module 'ISR_NOTIFICATION_CREATE', transferring the relevant special data, to create a notification and finding that when you try to read the special data back later on that the special data has not been created?  I am experiencing, every now and then, issues with this. 99% of the time its fine but it's just this 1% that is causing problems.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2007 15:03:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-12T15:03:15Z</dc:date>
    <item>
      <title>ISR_NOTIFICATION_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551366#M580998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anyone any experience of calling function module 'ISR_NOTIFICATION_CREATE', transferring the relevant special data, to create a notification and finding that when you try to read the special data back later on that the special data has not been created?  I am experiencing, every now and then, issues with this. 99% of the time its fine but it's just this 1% that is causing problems.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 15:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551366#M580998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T15:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: ISR_NOTIFICATION_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551367#M580999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you checking for any errors after the function call? you can use the function call  'IQS4_CHECK_ERROR_SEVERE' to trap the rros.. pl take a look at the source code of the Include Program QISRWF01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 15:23:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551367#M580999</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-07-12T15:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: ISR_NOTIFICATION_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551368#M581000</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;Function module IQS0_ADD_NOTIFICATION_LONGTEXT is finally responsible to add new longtexts to a notification. Within the coding you will find the following routine:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;*--- Longtext&lt;/P&gt;&lt;P&gt;*--- Textschlüssel zur Meldung&lt;/P&gt;&lt;P&gt;  LTXTOBJ-QMNUM = I_QMNUM.&lt;/P&gt;&lt;P&gt;  CONDENSE LTXTOBJ NO-GAPS.&lt;/P&gt;&lt;P&gt;  MOVE LTXTOBJ TO G_TEXTOBJEKT.&lt;/P&gt;&lt;P&gt;  MOVE LTXTOBJ TO G_OBJEKT.&lt;/P&gt;&lt;P&gt;  PERFORM TEXT_ANLEGEN_F50 TABLES     T_INLINES&lt;/P&gt;&lt;P&gt;                           USING      G_TEXTOBJEKT&lt;/P&gt;&lt;P&gt;                                      G_OBJEKT&lt;/P&gt;&lt;P&gt;                                      VIQMEL-KZMLA&lt;/P&gt;&lt;P&gt;                                      YQMEL&lt;/P&gt;&lt;P&gt;                                      VIQMEL-INDTX&lt;/P&gt;&lt;P&gt;                             CHANGING VIQMEL-INDTX.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*--- Check the messages&lt;/P&gt;&lt;P&gt;  PERFORM MSG_SHOW_F08.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within the routine the previous longtext is read using function module READ_TEXT and new longtext is added at the beginning:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Falls bereits zuvor ein Langtext existiert  ==&amp;gt;  Langtext lesen&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;und vor den neuen Langtext einfügen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF P_INDTX = YX.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        ID                      = WVIQMEL-YTDID&lt;/P&gt;&lt;P&gt;        LANGUAGE                = P_LANGU&lt;/P&gt;&lt;P&gt;        NAME                    = P_TEXTOBJEKT&lt;/P&gt;&lt;P&gt;        OBJECT                  = P_LEVEL&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        LINES                   = L_LINE_TAB&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        ID                      = 1&lt;/P&gt;&lt;P&gt;        LANGUAGE                = 2&lt;/P&gt;&lt;P&gt;        NAME                    = 3&lt;/P&gt;&lt;P&gt;        NOT_FOUND               = 4&lt;/P&gt;&lt;P&gt;        OBJECT                  = 5&lt;/P&gt;&lt;P&gt;        REFERENCE_CHECK         = 6&lt;/P&gt;&lt;P&gt;        WRONG_ACCESS_TO_ARCHIVE = 7&lt;/P&gt;&lt;P&gt;        OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Langtext vor neuen Text einfuegen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      L_ZEILE = 1.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Rewrd if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swati Garg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 15:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551368#M581000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T15:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: ISR_NOTIFICATION_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551369#M581001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  A useful function module to know.  The problem I am seeing is that a notification is being created.  It's just the special data that is being passed in for the creation seems to be missing.  I am also passing in some data to the general data parameter for the function module and this does get created.  So, it's not that the creation is failing as a notification is being produced, it's that the special data seems to be missing!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 15:34:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551369#M581001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T15:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: ISR_NOTIFICATION_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551370#M581002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did see the following function call immediately after ISR_NOTIFICATION_CREATE, in a couple of Std Programs, too.. may be you can try it out.. just in case..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* clear buffer for special data
  call function 'ISR_SPECIAL_DATA_BUFFER_CLEAR'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 16:04:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/isr-notification-create/m-p/2551370#M581002</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-07-12T16:04:13Z</dc:date>
    </item>
  </channel>
</rss>

