<?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_SERVNOT_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-servnot-create/m-p/4748612#M1113761</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Nov 2008 15:41:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-12T15:41:08Z</dc:date>
    <item>
      <title>BAPI_SERVNOT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-servnot-create/m-p/4748610#M1113759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to use this bapi, but i can't seem to be able to do it.&lt;/P&gt;&lt;P&gt;What i actually want to do is create a notification via visual composer instead of sapgiu. The actual transaction i'm trying to recreate is the IW26, and i figured this bapi could be used to do it. But everytime i try to test the bapi, i keep on getting a message saying the type of notification i've entered doesn't exist. I've checked in the database and the different types of notification i've entered do exist.  I'm now a little at lost on why it's not working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my questions will be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how to recreate the IW26 transaction? Has anyone ever tried to do it in Visual composer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is BAPI_SERVNOT_CREATE the right bapi to do it? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you have any idea on why it wouldn't recognize the notification type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I must admit that i'm quite new at SAP, and i'm sure i must be doing something wrong, so any advice on how to go about it would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2008 14:07:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-servnot-create/m-p/4748610#M1113759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-03T14:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SERVNOT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-servnot-create/m-p/4748611#M1113760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;You should use, instead of that, the BAPI_ALM_NOTIF_CREATE.&lt;/P&gt;&lt;P&gt;You can use this BAPI to create a new maintenance or service notification. You can create certain fields from the notification header as well as items, causes, tasks, actions and long texts for this. You can also maintain partner data.&lt;/P&gt;&lt;P&gt;Take some sample code to help you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report  zpm_create_notif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_bapi2080_nothdri type standard table of bapi2080_nothdri with header line.&lt;/P&gt;&lt;P&gt;data: i_bapiret2 type standard table of bapiret2 with header line.&lt;/P&gt;&lt;P&gt;data: i_bapi2080_nothdre type standard table of bapi2080_nothdre with header line.&lt;/P&gt;&lt;P&gt;data: i_bapi2080_notfulltxti type standard table of bapi2080_notfulltxti with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;create header data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;i_bapi2080_nothdri-refobjectkey = 'PJAREF'.&lt;/P&gt;&lt;P&gt;i_bapi2080_nothdri-equipment    = '10000030'.&lt;/P&gt;&lt;P&gt;i_bapi2080_nothdri-reportedby   = 'PJAREP'.&lt;/P&gt;&lt;P&gt;i_bapi2080_nothdri-short_text   = 'PJA Short Test from BAPI'.&lt;/P&gt;&lt;P&gt;i_bapi2080_nothdri-priority     = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;create header long text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;i_bapi2080_notfulltxti-objtype            = 'QMEL'.&lt;/P&gt;&lt;P&gt;i_bapi2080_notfulltxti-FORMAT_COL = 'U1'.&lt;/P&gt;&lt;P&gt;i_bapi2080_notfulltxti-text_line           = 'Long text 1'.&lt;/P&gt;&lt;P&gt;append i_bapi2080_notfulltxti.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_bapi2080_notfulltxti-objtype            = 'QMEL'.&lt;/P&gt;&lt;P&gt;i_bapi2080_notfulltxti-FORMAT_COL = 'U1'.&lt;/P&gt;&lt;P&gt;i_bapi2080_notfulltxti-text_line           = 'Long text 2'.&lt;/P&gt;&lt;P&gt;append i_bapi2080_notfulltxti.&lt;/P&gt;&lt;P&gt;&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               = 'M1'&lt;/P&gt;&lt;P&gt;    notifheader             = i_bapi2080_nothdri&lt;/P&gt;&lt;P&gt;importing&lt;/P&gt;&lt;P&gt;    notifheader_export   = i_bapi2080_nothdre&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;    longtexts                = i_bapi2080_notfulltxti&lt;/P&gt;&lt;P&gt;    return                     = i_bapiret2.&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                   = i_bapi2080_nothdre-notif_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it was helpfull, best regards.&lt;/P&gt;&lt;P&gt;F.S.A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 00:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-servnot-create/m-p/4748611#M1113760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T00:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SERVNOT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-servnot-create/m-p/4748612#M1113761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2008 15:41:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-servnot-create/m-p/4748612#M1113761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-12T15:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SERVNOT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-servnot-create/m-p/4748613#M1113762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear all &lt;/P&gt;&lt;P&gt;the last example with the sets of data is very good i want one to help me with some set of data  but to create &lt;/P&gt;&lt;P&gt;service notification of CS with BAPI   (  BAPI_SERVNOT_CREATE ) of IW51 transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 19:34:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-servnot-create/m-p/4748613#M1113762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-03T19:34:33Z</dc:date>
    </item>
  </channel>
</rss>

