Create Servicr Notification from External Claim

Hi All,
Could anyone help me to find any alternative solution for creating service  notification with reference to a notification Number.
I would explain my requirement below -
I need to create a service notification with the following details -
Notification Header Long Text
Notification Header Partners
Notification Header
Notification Item
Notification Task
Notification Activity
I found a BAPI 'BAPI_SERVNOT_CREATE' which can be used but it is not released. I have a requirement of only using a released function module.
So is there any alternative way of getting it done? Please Help !
Thanks,
Priyabrata

Hi,
you may use the FMs of function group IWOPM, for example BAPI_ALM_NOTIF_CREATE to create Notifications. The FMs of this group are released and work similar to the bapi you have mentioned.
Regards

Similar Messages

  • Creation of notification from warranty claim (wty tcode)

    Dear all ,
    i have the requirement , where in notification (say service notification) to be created from warranty claim document i.e.., created in wty transaction code.
    i captured all the data in warranty claim like equipment , customer , sales area , material and also entered relevant notification type i.e.,S3 , but still when i click on Create notification icon in the waranty claim document, system is  unable to create notification with out any error or warning messages .
    in the actions i assigned T205 (which is used to create quality or service notification) and i checked and saved the document , but still system is not generating the notification.
    whether i missed any configuration or any thing to do at the time of creating the warranty claim .... please suggest.
    awaiting for your quick response.

    [Duplicate thread|creation of notification from warranty claim (wty tcode);
    This one being locked

  • Creating Target Group from External File

    Hello Experts
    We need to create target group from external file. (That is to say we will have let's say txt file containing BP that belongs to specific target group and we need to assign these BPs to to specific target group in SAP CRM)
    I have searched for it on sdn and found something benefical. I have found BAPI_TARGETGROUP_CREATE, I have checked it but I don't understand how should we use it becuase as far as we understand it just creates target group, we cannot see anything related with Business Partner. How can we relate BPs with the target group we create by this BAPI.
    What should we do, is anyone have previous experience about it? or is there a way to do it without using BAPI.
    thanks it advance
    M.
    Edited by: Mehmet Ergul on Jan 22, 2009 11:19 AM

    Hi,
    You can do this from within the standard Web UI. It's straight out of the box.
    Create a profile set and in there create a target group in the target group assignment block just by entering the description of the target group. Then enter edit mode of this target group and click the button "Import Members". Remeber to mark "Change selected target group" unless you want to create a new target group.
    /Anders

  • Creating Complaints/Returns from external reference for Billing Documents.

    Hi Experts,
    I have question regarding Creating Complaints/Returns from external reference.
    My requirement is to fetch data for Billing Type, Billing Documents and other related from ECC system and to create Complaints/Returns using the same in Web UI.
    Is there any SPRO configuration as such so that we can pinpoint to the ECC system where it should fetch the data or is there be a custom development involved for the Drop down lists in Web UI?
    I know about the BADI CRM_COPY_BADI_EXTERN which is triggered when creating using reference, but I am not able to see where the method SEARCH_HELP_FOR_EXTERN_DOC or GET_SEARCH_HELP are triggered.
    I have gone through many forums within SDN but not able to find any solution. Please help!
    Regards,
    Mahesh

    Hi Ly,
    I wouldn't be able to share the code with you, but I would ask you to check with the functional counterpart regarding the important fields that are to be copied.
    What I did in my case is, based on the Billing document number passed from CRM in the RFC I hit the tables VBRK and VBRP for header and item data respectively.
    For pricing I passed the relevant fields from KONV table (KSCHL, KWERT, KAWRT etc..)
    For document flow VBFA.
    For partner VBPA.
    I faced issues only with pricing as there were many settings and pricing routine logic differences between CRM and ERP.
    Regards,
    Mahesh

  • Create a Playlist from external folder with tracks already existing in iTunes

    I was just wondering if its possible to create a playlist from an external folder (on my desktop) with tracks that already exist in iTunes.
    I basically have a folder on my desktop that i use with Serato, i was wondering if it'd be possible to sort a playlist in iTunes with the tracklist from the folder? I already have all the tracks on iTunes so i don't want to add them onto iTunes again just to put them into a playlist as i'd have to sort through all the duplicates to delete the non playlisted tracks (theres around 1500 so it wouldn't be a quick task).
    Would be much appreciated if anybody can help!

    Hi,
    I have an AppleScript that does this.
    This script need Spotlight metadata, all files in the folder that you use with Serato should be indexed.
    Works well if the tags (name and artist) are defined
    In this script :
    it will display a dialog to select your folder
    iTunes search track from the library playlist according to (artist, album and title in the Spotlight metadata of each file).
    If iTunes found a track, iTunes will add this track to the new playlist.
    The script takes 35 seconds for 1000 files on an old machine (PowerMac G5 2 X 1.8 GHz) .
    This should take less than 100 seconds for 3500 files on the new machine
    Here is the script :
    -- this script need Spotlight metadata, files in the folder should be indexed
    set folderPath to (choose folder with prompt "Select the  folder that you use with Serato")
    set f to quoted form of POSIX path of folderPath
    my makePlaylist(do shell script "/usr/bin/find " & f & " -type f \\! -name '.*' -print0 | /usr/bin/xargs -0 /usr/bin/mdls -name kMDItemTitle -name kMDItemAlbum -name kMDItemAuthors | /usr/bin/sed 'H;$!d;x;s/\\n[^k]//g'")
    on makePlaylist(t)
          script o
                property L : paragraphs of t
          end script
          set tc to (count o's L)
          tell application "iTunes"
                set newPlaylist to make new playlist with properties {name:"Serato"}
                set masterLibr to (get first playlist whose special kind is Music)
          end tell
          repeat with i from 2 to tc by 3
                set {tAlbum, tArtist, tTitle} to my getvalue(items i thru (i + 2) of o's L)
                tell application "iTunes" to try
                      set t to (get first track of masterLibr whose name is tTitle and artist is tArtist and album is tAlbum)
                      duplicate t to newPlaylist -- add founded track from the library playlist to the  new playlist
                end try
          end repeat
    end makePlaylist
    on getvalue(tList)
          set oTID to text item delimiters
          set text item delimiters to "\""
          set {alb, aut, title} to {"", "", ""}
          try
                repeat with i in tList -- if line does not contains a double quote then the tag is  empty -->  = (null)
                      if i starts with "kMDItemAlbum" then
                            tell i to if it contains "\"" then set alb to text item 2
                      else if i starts with "kMDItemAuthors" then
                            set text item delimiters to "(   "
                            -- if artist contains one word, it doesn't contains double quote
                            tell i to if it does not contain "(null)" then
                                  if last text item starts with "\"" then
                                        set aut to text 2 thru -2 of (last text item)
                                  else
                                        set aut to (last text item)
                                  end if
                            end if
                            set text item delimiters to "\""
                      else --kMDItemTitle
                            tell i to if it contains "\"" then set title to text item 2
                      end if
                end repeat
          end try
          set text item delimiters to oTID
          return {alb, aut, title}
    end getvalue

  • Create new notification from action box

    Hi,
    We have the following scenario: In transaction IW52 (Notification modification) we have created a new follow-up function, with this new function we want to create a new notification with some data from the current notification.
    The activity of the new follow-up function executes a Z function module. Everythings works fine except that when the function module is finished and the new notification is created it shows the IW52 transaction with all fields blank.
    We have tried to do it with the functions mdules from IQS0 group function and with business object BUS2080, both options had the same result.
    With the debuging we have found that when the follow-up action is called from standard code in SAPLIQS0 - LIQS0F75 - FUNKTION_ACTIONBOX_F75 the viqmel is null when follow-up action is ended:
              CALL FUNCTION l_funktion-baustein
                EXPORTING
                  i_viqmel       = viqmel
                  i_customizing  = l_funktion
                TABLES
                  ti_iviqmfe     = l_iviqmfe
                  ti_iviqmur     = l_iviqmur
                  ti_iviqmsm     = l_iviqmsm
                  ti_iviqmma     = l_iviqmma
                  ti_ihpa        = l_ihpa2_tab
                EXCEPTIONS
                  action_stopped = 1.
    Thanks.
    Edited by: Sistemes Emaya on Oct 28, 2011 10:46 AM

    Hi,
    In this case follow below steps mentioned below.
    Action box in IW52 trigger your Z Function module so use below steps may it will help you.
    Inside your Z Function module-
    1 ) Get notification number from Parameter id using command "GET PARAMETER ID XXXXXXX" .
    2 ) Fetch relevant records from database on behalf of notification number which you get in step 1.
    3 ) Use records in your Z Function module to create another notification as per your requirement. 
    Thanks,
    Vijay

  • Create Support Message from external system

    HI experts,
    I would like to change the Create Support Message screen(Menu->Help->Create Support Message) and add three fields namely: Category, Subject and Solution Number because currently these fields are not populated in the Service desk if I create message in this way unlike in using NOTIF_CREATE tcode where there are selection fields for these.
    Also, I'm creating the support message from an external SAP system and the messsage is sent to the Solution Manager system. The NOTIF_CREATE tcode does not exist in the external system as well as the whole package DSWP.
    Please let me know you rthoughts on this.
    Thanks
    Eric

    Hi guys,
    Thanks for your answers... But is it possible to call transaction NOTIF_CREATE from an external system?
    I have done something already so that those 3 fields will be automatically populated for a message sent from an external system.
    I changed the screen and called FM BAPI_NOTIFICATION_CREATE(a remote enabled FM which is the one being used by transaction NOTIF_CREATE to create a message) inside FM BCOS_SEND_MSG.
    I populated the category, subject and solution in the FM export parameters as well as the solution number in the sap data table. I put a destination also..
    This FM calls another FM DNO_OW_CREATE_NOTIFICATION which is the one being used from the external system but do not cater the functionality to send the 3 fields that we need.
    As you will notice, there are lots of standard objects that I've changed. =)
    My problem now is that the system data sent is the same with the system data if you create the message using NOTIF_CREATE. Some system that were sent when a message is sent from an external system is missing but at least the sap system and client ID is sent. There is no external reference number also. But hopefullly, the users will accept it. Can't find any other solution to this.
    Thanks,
    Eric

  • Creating SC's from external system

    Hi there,
    Does anyone have experience creating shopping carts into SRM from a different application (via an interface). I know about the existence of BAPI BAPI_SCEC_CREATE but would like to know if anyone has experience and maybe already some hints/tips/code available that I could use.
    Would be very much appreciated.
    Regards,
    Machiel.

    Hi,
    You can use standard BAPIs like BBP_EXTREQ_INBOUND or BBP_PD_SC_CREATE_EXTERNAL to create shopping carts based on your custom requirement.
    Regards,
    Sanjeev

  • How to create mount point from external drive directory

    Hi,
    Is it possible to create a mount point pointing directly to an external drive directory?
    For example I would like to have /Volumes/Media point to my external eSATA drive /eSATA/Media
    What I am trying to achieve is that I can see a virtual drive in Finder called "Media"
    This is important because when this external drive is connected on my NAS Server the /eSATA/Media directory
    shows up as a mounted drive called "Media" alse (through afp).
    What I want is to see "Media" pointinf to  /eSATA/Media regardles if it is connected directly to my MacBook or connected on my NAS.
    Thanks for your help.
    JM

    Hi,
    Is it possible to create a mount point pointing directly to an external drive directory?
    For example I would like to have /Volumes/Media point to my external eSATA drive /eSATA/Media
    What I am trying to achieve is that I can see a virtual drive in Finder called "Media"
    This is important because when this external drive is connected on my NAS Server the /eSATA/Media directory
    shows up as a mounted drive called "Media" alse (through afp).
    What I want is to see "Media" pointinf to  /eSATA/Media regardles if it is connected directly to my MacBook or connected on my NAS.
    Thanks for your help.
    JM

  • ENRICH_ITEM_DATA + create Shopping Cart from external Business Server Page

    Dear SRM Gurus,
    I am on SRM 2.0 with EBP 3.5 and Requisite 3.5/88.
    On the Web Interface I get the message (German):
    "Sachkonto 6610005 ist nicht angelegt (Bitte Eingabe prüfen)  (Position 1) "
    which means translated: G/L Account No 6610005 not available - please check your entry (position1).
    I don't even find the Message Class which holds the message - It's not under package BBP_PU. In fact, when logging on in English - still the message is displayed German, while the messages in message class of package BBP_PU are translated.
    In fact, I think, I am almost done - all required fields are accessible in ABAP - I just don't know, when to put what where...
    thanx in advance, matthias
    Message was edited by: Matthias Kasig
    Message was edited by: Matthias Kasig
    Message was edited by: Matthias Kasig

    Hi CChung,
    I've got a pdf "Open Catalog Interface" which also gives an html example - i can email you.
    But let me tell you how I did it.
    1. You define a catalog in SPRO for your BSP. SPRO -- general settings -- Enterprise Buyer -- define catalogs
    there you place a parameter HOOK_URL as return URL. I guess that is what you already did.
    2. Now it's really simple. When you jump to your BSP the HOOK_URL gets also transferred to your BSP. You just have to set up the page attribute 'HOOK_URL' as string auto-value (don't forget to check auto), and then you should be able to deal with its value the way you want.
    In my case I transfer the value to a second result.htm.
    I set up an htmlb:form which includes an invisible input field:
    <htmlb:inputField id       = "I01"
                              value    = "<%= HOOK_URL %>"
                              disabled = "X"
                              visible  = "FALSE"
                              width    = "550" />
    I guess a hidden field will do to.
    In Event Handler OnInputProcessing I refer to this via:
    DATA: data_t TYPE REF TO cl_htmlb_inputfield.
    IF event->id = 'B01' AND event->event_type = 'click'.
      data_t ?= cl_htmlb_manager=>get_data(
                                  request = runtime->server->request
                                  name     = 'inputField'
                                  id       = 'I01'
      IF NOT data_t IS INITIAL.
        hook_url = data_t->value.
      ENDIF.
    and:
    navigation->set_parameter( name = 'HOOK_URL' value = hook_url ).
    or I use it for aborting in JavaScript like this:
          <script language="JavaScript" type="text/javascript">
          <!--
            function abbrechen()
               location.href = "<%= HOOK_URL%>";
           //-->
           </script>
    Hope you get it, regards, Matthias

  • Creating support notification (Solution Manager) from Web UI SAP CRM

    Hi,
    We have integrated Solution Manager (SM) with SAP CRM.
    Does SAP support has solution with support notification ?
    How we can create support notification from Web UI SAP CRM ?
    Denis.

    Hi
    There is a major change of inclusion of CRM ITSM in solman 7.1 that is why you might be confused.
    Anyway let me explain
    enter the tcode solman_workcenter in solman choose the incident management tab
    now  on the left side you can see an action for Create support message
    thus clicking on it will open the browser for posting messages
    (the same can be shared with end user for message posting )
    further once posted it is accessible in this incident management tab for further processing and you get the status wise queries in overview.
    hope its clear now
    regards
    prakhar

  • Create Sales order from Internal Purchase Order using IDOC

    Hello Friends,
    I have requirement to create Sales Order from Internal Purchase Order Using IDOC.
    Backgorund, we have already configured IDOC orders05 to create Sales Order from external Purchase order from Inbound IDOC, and it is working fine.
    Now we have new requirement to create Sales Order from our own Purchase order, i.e. When PO is created in one plant corresponidng sales order automatically must needs to create in another Plant with respect PO.
    I m trying to design a solution for above problem as follows,
    1.create an Inbound Idoc from PO, by creatiing one new message type on PO save.
    2.Process that Inbound  IDOC same as it is from external PO.
    3.Once processed Sales order will create.
    Please help me in step 1. to create Inbound IDOC from PO.
    If you want any further clarification please write me.
    Thanks,
    Mahesh

    I had done a similar scenario before and we achieved it through SAP XI. The problem is with the control record. When we create a ORDERS IDOC from a PO the control record will be for outbound transmission. We sent the file to XI and XI resent it back with some data parsing and a new inbound control record. This way it went neat outbound and inbound.
    I'm not sure what kind of architecture you have. If you have to do it within your ECC/R/3, then you could create the outbound IDOC to a new port and write a fresh RFC to pick it up from the same folder and create a new control record for inbound processing.
    I haven't tried this; but there is a "processing w. trigger (inbound)" option on the outbound process code. May be you can explore into that a bit more.
    I'm sure there could be better approaches to handle this within ECC so if you stumble on any, do write back. I would like to know to update my knowledge .

  • Missing some value of Message Notification from WorkCenter

    Hi Expert,
    I have scenario when user create message notification from workcenter, it will be send mail automatically to the user (mail account) in status new and I have successfully create it.
    And the issue is =
    When i preview the message from the transaction (from menu action), it will display the whole message.
    But when user received the message via mail account, some value from the message is miss (not whole message will be appear)
    Could anyone help me how to solve this issue?
    Regards,
    Rhesa Syahrial

    I just used to have stalonetray running at the bottom of my screen. I made its height small enough to fit along with my conky 16px I think it was. Doesn't take up too much space.
    Since I switched to i3, I find its better to just not use trays as I can simply assign a whole workspace for skype and so I don't need any tray.

  • Can't use my custom claims provider when access to my site from external url

    Hi,
    I just created a clean SP 2013 (15.0.4641.1000) environment and I have a site collection up and running with access from internal url (http://my_server_name/) and external url (http://cloudshare_external_url/).
    When I access from internal url (with the local administrator account) I can add users to site groups:
    But if I access from external url (with the local administrator account, too) the people picker does not work:
    And if I put the email directly, I get the following error: "Sorry, you are not allowed to share this with external users"
    What am I doing wrong? Am I missing something?

    Hi Sebasl,
    Based on your description, my understanding is that the users cannot be resolved when accessing the site using external URL.
    I recommend to check the authentication provider for the external zone of the web application to see if the custom claims provider is selected.
    Please go to Central Administration > Application Management > Manage web applications > highlight the corresponding web application and then click Authentication Providers in the ribbon > click the external zone.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Create shared library on external drive from scratch

    I have seen many posts about creating shared iTunes libraries on external drives with many different configurations, but mostly with pre-existing libraries. My question is creating the library from scratch. The purpose is obviously to share songs among several computers AND only have one copy of a song as to not take up unnecessary disk space on several computers.
    All of our songs are on an external USB hard-drive attached to Airport Xtreme. Every song is in album folder, and every album folder is in an artist folder (very organized). All the artist folders (with their album and then song contents) are in a root folder called "Songs" on the external hard-drive.
    We have upgraded our three Macs (iMac, MBP and MacMini) to Leopard and deleted all iTunes folders on each local hard drive (there was nothing in them anyway). We now want to create ONE iTunes folder on the hard drive so that each computer can access it. What are the steps? Here is what I "think" I've learned here on the postings with my questions:
    1) First I opened iTunes on my first, main computer (iMac) and went into "Preferences" to change the iTunes music folder to [Ext HD]:iTunes:iTunes Music. The option, "Copy to music folder..." is deselected. (This will also be done on the other computers).
    2) Now what to do? I could just move all of my song artist folders with their album subfolders and music files inside them, into the "iTunes Music" folder. But then what do I click to get iTunes to see all the songs and put them in its database? The other option is click "Add to Library" - but then don't I have to select all the individual songs? (I actually tried the latter method and it kept crashing). Can I just move all the folders into [Ext HD}:iTunes:iTunes Music folder and click something to get it to create its database based on all the music files that are now in its subfolders?
    3) Next step. I have seen many people write that they then create an "Alias" and put the Alias in their "Music" folder on their LOCAL, computer's hard drive. Could someone now explicitly, step-by-step, describe how this is done? I assume I go to the external hard drive. Am I creating an alias of the entire "iTunes" folder, or of the "iTunes Music" subfolder, or of the library file??? Please answer this specifically.
    So now I have "XXX alias" that I copy to my local, computer's hard drive and put it on my desktop. I take out the "....alias" word, and drag it to my local "Music" folder. It asks me to replace the existing folder/file, and I say yes. Correct? And then I do this on all three computers, correct?
    4) Finally, after I've done all of this, I still have the following functionality questions -
    4a) When we now add to the library, either from a CD or online purchase, ONE copy of the music should go in the "iTunes Music" folder on the external drive, correct?
    4b) This system means that all three computers MUST have the same iTunes library, playlists, etc, correct? The downside of this system is that you cannot personalize libraries for each computer and just share the actual music files, correct? (If so, is there another process [steps 1-4 above] that results in a more customizable system where *ONLY ONE COPY* of the actual song file is shared?)
    Sorry for the length of the message, and the questions. Truly I have read all the postings but was unable to map out my plan before I go and creating, finally, this one set of music that we can share. In advance, thank you all for your help.

    I was afraid you'd say that, because I'm a long time Mac guy and I don't have the perfect answer. Have you ever messed with remote desktop? That'd seem to give her full access and control, something I personally wouldn't do, although it may work for you.
    Another thought came to me that might work: copy over the complete library to her machine, and then when you do another major shoot, create a new catalog, edit, etc.and then import as catalog to you main one while sending her the new one.
    I am sure there are more elegant solutions, but these are a couple of ways.

Maybe you are looking for

  • Can I transfer my purchases from one Apple ID to another?

    Hi, I have all my iTunes purchases (music, apps etc) under an Apple ID that I have been using for work purposes. I have now invested in a MAC at home and created a new Apple ID for home use. Is there a way of transferring my purchases from my work Ap

  • Can anyone help with a solution???

    Can someone please help? My problem is that I bought my iPad mini just last week and now it's freezing half way through what I'm doing and it's also not saving any of my photos? Can anyone help with a solution???

  • A script for "Save as .tiff"

    I have a script that saves the current document in Photoshop to the Desktop as .png, and another that saves to the Desktop as .jpg. They're really usefull and I use them all the time. It would be really useful if I had a similar one to save as .tiff

  • Mail sent older than one month and half deleted

    Hello, all the message older than one month and a half I have sent have have been deleted or are not displayed either on my MacBook Air with the e-mail application or with Safari connecting me directly with my account on ICloud web site. By side, the

  • Firefox crashes on Windows 8

    I'll be doing common things (Facebook and youtube recently) and firefox will randomly crash every ~15 minutes more or less. I have had this computer and windows 8 for about two months and have had no problems prior to this, Internet Explorer still wo