Service Ticket SLA with Service Agreement

hi experts,
we have a requirment where we need to create service tickets with reference to service agreement. As per the doucmentation, service agreements can be created based on sold to party BP or BP type. We are planning to use with BP Type as we dont want to maintain at every BP level. Now the issue is, i dont have sales org data maintained at all sold-to party level. we have thousands of existing customers and maintaining their sales area data now is gonig to be difficult task.
Is there any alternate way to create Service ticket with reference SLA? is it possbile to determine SLA information purely based on BP type and organization info provided in service agreement (without going to sales area of the corresponding BP)
another question: if i create a copy of standard OAS service agreement and remove the org determination for sales org, will it work? Does the SLA determination still happens from service ticket?
i dont think service contracts work in thsi scenario either.
any details steps in this aspect would be greatly appriciated and rewared.
Thank you
Raghavendra

Hello,
only a small hind which is maybe interesting:
If you use service request instead of service ticket you will be able to use a SLA determination procedure in the customizing of servicerequest.
This is quiet usefull - we changed from ticket to servicerequest.
Best regards
Manfred
Edited by: ManniF on Mar 30, 2010 4:58 PM

Similar Messages

  • CRM 4; Utilities Add On; Service Ticket; SLA

    Hello Experts,
    We are implementing CRM4, service industry with utilities add-on.
    We are using the service ticket for service request creation, applying the four tier classification of call types.
    Each call type has an SLA timeframe for completion.
    The SLAs are not product nor contract dependant - and only relate the the type of service stipulated in the service ticket.
    I have set up the date profile etc.
    I would assume that a dummy product and dummy contract will have to be created to invoke the SLAs but I am not managing to get the Service Ticket to see the response times.
    Please could you point me in the right direction? i.e. How can I create an SLA against each code (category; code group; subject profile)? (without using service contracts?)
    Much appreciated!

    Hi Tanya,
    We have got the escaltion time picking in the ticket via BADI.
    This BADI is called on Saving the ticket, which checks the code and then brings the code related SLa time form the response profile (which is also assigned to the product -Dummy one) and then checks for the Date profile date type date rule if any calculation is to be done it does that and then populates the times.
    I think the need for contract is arising only because in the dummy product master of contract type only we can attach the reponse profiles ...you can actually add the set type to your service product(Dummy) and then try this .I'm sure it will work .
    Works for us.
    Regards
    Raj

  • Urgent: Replication of CRM Service Ticket to PM Service Notification in ECC

    Hi Friends,
    I have a Client requirement where
    1) a Service Ticket is created on CRM IC Webclient.
    2) This Service Ticket is then Replicated in Plant Maintemance (PM) Service Notification on ECC.
    3) Then the Service Notification is executed in the PM Module through PM Service Order.
    4) Then the service order status is updated on the Service Ticket.
    5) The PM Service Notification and PM Service Order details should be visible from the Service Ticket window in IC Webclient.
    I would appreciate if you can provide any information/details on how to replicate a CRM Service Ticket to Plant Maintemance (PM) Service Notification on ECC.
    Any information on the above scanario setup and execution will be greatly helpful to me.
    If you have any docs relevant to this pls send it accross to me.
    My mail ID [email protected]
    Pls help me out.
    Thanks in advance and warm regards
    Purnendu

    Hello,
    this is a topic where i´m also very interested and i already did some analysis on this.
    There is now standard way from SAP to replicate CRM Service Request to CS Service Notification.
    I´m thinking about a customer solution using a RFC function call to create the CS Service Notification in background.
    Best regards
    Manfred

  • Displaying a bespoke form based on service ticket categorisation

    Hi gurus,
    I have a question relating to custon IC forms.
    We have a requierement whereby the system must present to the IC user a form for data collection immediatley after the user has categorised a service ticket.
    After the user has selected the various categories for a service ticket, the system must display a form (either via a popup or in a view embedded in to the main IC window) which the user would then use to capture data relating to that particular call classification.
    e.g. if classification = Complaint > Third-Party > DHL, the system must display the form dhlComplaint.html to capture dhl specific data etc.
    Questions:
    1) would it be possible (techincally) to do this using a popup.
    2) If so, how?
    2) If not what other options are there?
    We are using CRM 4.0.
    any useful feedback would be greatly appreciated.
    Sergio

    Hello Sergio,
    I've never used pop-up's in IC webclient. I don't like them very much because sometimes they can give you some problems.
    For example: they can be blocked with pop-up blockers programs or if you fill one form in a pop-up windows and close it, you don't have the possibility to go back and correct your data... or because they're sometimes really annoying
    But that's is just my opinion. If you consider to create a new view to embed it in the service ticket viewset, consider this guidelines:
    1. I would build the new fields to store your form information in order client extension table using EEWB (table CRMD_CUSTOMER_H if header data - CRMD_CUSTOMER_I if item data). This will also make the fields available in the BOL model, and will alllow you to manipulate this values in memory, instead of direct reading/writing to database tables.
    2. I would build a new view to handle your form.
    3. I would change the Service ticket main view from runtime repository, to recognize your new view.
    4. I would create a new navigational link, from view srvthead.htm (the service ticket view with categorization) to your new view.
    5. Then, I would create an automatic navigation to the link created in step 4, in srvthead.htm view. This could be launched in the moment the user selects the last level of categorization, or in other moment that you think the form should appear...
    Wishes of good luck.
    Regards,
    Bruno
    Edited by: Bruno Garcia on May 25, 2008 11:10 PM

  • Unable to add line item to a Service Ticket!

    Hi Expets,
    I am facing some difficulty in adding a line item to a service ticket. The service ticket is not getting saved.I think I am missing some parameter to be passed to CRM_ORDER_MAINTIAN.Please find below my coding:
      lv_product_i-ref_handle = '0000000002'.
      lv_product_i-process_qty_unit = 'EA'.
      INSERT lv_product_i INTO TABLE lt_product_i.
      ls_orderadm_i-header = lv_header_guid.
      ls_orderadm_i-ordered_prod = 'SERVICEITEM_SG5'.
      ls_orderadm_i-handle = '0000000002'.
      ls_orderadm_i-mode = 'A'.
      INSERT ls_orderadm_i INTO TABLE lt_orderadm_i.
      ls_input_fields-ref_handle = '0000000001'.
      ls_input_fields-objectname = 'ORDERADM_I'.
      CLEAR ls_field_names.
      ls_field_names-fieldname = 'MODE'.
      APPEND ls_field_names TO ls_input_fields-field_names.
      ls_field_names-fieldname = 'ORDERED_PROD'.
      APPEND ls_field_names TO ls_input_fields-field_names.
      INSERT ls_input_fields INTO TABLE lt_input_fields.
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
        EXPORTING
          it_product_i      = lt_product_i
        CHANGING
          ct_orderadm_i     = lt_orderadm_i
          ct_input_fields   = lt_input_fields
        EXCEPTIONS
          error_occurred    = 1
          document_locked   = 2
          no_change_allowed = 3
          no_authority      = 4
          OTHERS            = 5.
    I am also calling the save and commit BADI's after this, but somehow its not working for me.
    Can anyone please help me out on this or provide some pointers?
    Thanks and Regards,
    Rohit

    Hi,
    I have tried everything, still its not working.
    First I tried creating a Service Ticket and adding the line item at one go.Then I was getting status error:
    System error: An attempt has been made to create a status object
    with the object number DE20131333937DF180C5001372F65D25.  However,
    a status object with this number exists already.
    Code sample given below:
      CALL FUNCTION 'BAPI_BUSPROCESSND_CREATEMULTI'
        TABLES
          header          = itab_header
          item            = itab_item
          partner         = itab_partner
          status          = itab_status
          text            = itab_text
          return          = itab_return
          service_os      = itab_service
          input_fields    = itab_input_fields
          created_process = itab_created_process.
    Then I tried creating a service ticket first and adding item later.Then there was no dump, but item details are not getting saved. Code sample given below:
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
        EXPORTING
          it_product_i      = lt_product_i
        CHANGING
          ct_orderadm_i     = lt_orderadm_i
          ct_input_fields   = lt_input_fields
        EXCEPTIONS
          error_occurred    = 1
          document_locked   = 2
          no_change_allowed = 3
          no_authority      = 4
          OTHERS            = 5.
    Can anybody please help me out on this? What is the correct approach?
    Thanks and Regards,
    Rohit

  • Automatic Routing in the Service Ticket

    Hi everybody.
    what's "automatic routing"?
    When i click on "escalation" in the service ticket, it's display a message "No rule found for automatic routing".
    With profile "ic_manager" i was create a roule but now i don't know where insert it in the customizing?
    Anyone has any idea about this ?
    Best regards.
    Virginia

    Hi Virginia,
    You need to pre-configure some rules based on which you route service tickets.Login with IC manager role in CRM 2007.There you go to Process Modeling->Rule Polciy->Create rules.
    Here you create rule for Context=Order Routing.
    Rule will be something like-If transaction type=service ticket and employee responsible = Virginia, then route to 'XYZ'.
    I have done similar thing for Complaints.
    Hope this helps!
    Regards,
    Rohit

  • Create a follow-up of a Service Ticket

    Hi,
    I need to implement a script to create a follow-up of a Service Ticket to a service contract. Therefore I need to implement an Action Class to run in the ICWebClient.
    I'm facing some problems and I didin't managed to find a suitable class / function to automate it.
    I've tried:
    Method: EH_ONCREATEFOLLOWUP of the class CL_CRM_IC_SRVTFOLLOWUP_IMPL, from the view SrvTFollowUp. I've adapted the the requested custom_controller but without sucess - somewhere during the process I was catching a missing handler exception.
    I also tried to use the functions:
    'CRM_IST_COPY_ORDER_TO_CONTRACT'
    'COM_PCAT_COPY_DOCUMENTS'
    'CRM_ORDER_READ' -> 'CRM_COPY_EXTERNAL_ORDER_OW'
    and some others but with no luck as well.
    Did anyone had the same problem before? I would apreciate some new ideas!

    Hi,
    The Service Ticket itself is Service Order. The difference between them is that the Service Ticket does not have Item Category which is present in the Service Order.
    Between your transaction code maintian the copy controls.
    Hope it helps.
    Regards,
    Rajiv

  • Customer Service Ticketing not always sending enquiry to CSR mailbox?

    Hi,
    I've set up Customer Service Ticketing (CST) with a single CSR in Level 1 and a single different CSR in Level 2, using least load as the delivery rule. I've been sending test mails and I'm finding that not all of the emails I send are reaching the Level 1 CSR's mailbox (this is a different mailbox and someone who is set up in admin), although all are being received in to the mailbox I designated as the incoming (customerservice@) mailbox. Is anyone else seeing this problem, or know of a reason/fix for this issue? It renders the CST system unusable if this is a known issue that cannot be resolved? Cheers.
    Regards, Mark

    No answer , therefore closing thread

  • Service Order as follow up document for Service Ticket

    Hi,
    we are using CRM 2005 and the IC-Webclient for the service callcenter.
    Is it somehow possible to create a service order as follow up document out of a service ticket in IC-Webclient?
    Thanks a lot.
    Best regards
    Manfred

    Hi,
    The Service Ticket itself is Service Order. The difference between them is that the Service Ticket does not have Item Category which is present in the Service Order.
    Between your transaction code maintian the copy controls.
    Hope it helps.
    Regards,
    Rajiv

  • IC webclient existing service ticket display

    Hi, I need to display the number of open service tickets for selected product for current business partner and alongwith this, to show details of first open service ticket. I have managed to meet the first requirement but have no clue about how to display the open service ticket. The service ticket link on navigation bar always creates a new service ticket and it seems does not have any provision for opening an existing ticket. Pl. help.
    Thanks.
    vishwas arya.

    Hello Sudeep,
    I could not find much info at copy controls.it would be great if you can let me know the process flow of service ticket management.
    regards,
    kitcha

  • CRM 2007 New Service Ticket Transaction not visible in WEB UI

    Hi Gurus
    I don't understand why this is so difficult.
    To me I have done everything correctly.
    I have a Service Ticket Transaction visible in the WEB IC.
    I now want to make it visible for use in the WEB UI, I have set the channel to WEB UI.
    Yet when I try to create a new Service Ticket from the Service Professional Role under Service Order the Transaction is not visible. Yet I can can search for the Transactions created in the WEB IC from the WEB UI without an issue.
    Maximum Points for the right answer.
    Regards
    Panduranga

    Solved
    I needed to add the Service Ticket Object Create option into the Navigation Bar Generic OP Mapping Option.
    After that the Transaction Type was visible.

  • Listening to Service ticket creation event

    Hi,
    I have a requirement to check the ticket details and populate one field as per the  ticket details. This operation has to be done on the below scenario.
    u2022 A service ticket is generated and already has a property confirmed
    u2022 A property(iObject) is confirmed for a new service ticket
    u2022 The property(iObject) is changed on the service ticket
    u2022 The service ticket is saved .
    We can handle the scenario 2 and 3 from UI. But I do not know how to handle the scenario 1 i.e. whenever a service ticket is generated. Is there an event which gets raised whenever a service ticket is generated ?
    For scenario 4, I am planning to invoke the required operation in the save button code which is available in UI. But when agent ends call, then also the service order gets saved. Is there a way I can invoke my code just before save ?
    Regards,
    Manas.
    Edited by: manas sahoo on Aug 6, 2008 9:44 AM

    Hello Manas,
    Check if this suggestions may help you.
    For scenario 1, you can check method IP_INBOUNDPLUG of your service ticket controller class. Maybe there you'll understand if a new bol entity for the service ticket was created or not.
    For scenario 4, you can use ORDER_SAVE badi. This BADI was 3 methods to manipulate a document before you saving it. See it to check if any of those three can help you.
    Kind regards.
    Bruno

  • Where to Configure Service Ticket "Reason" & "Subject" field with new value

    Hi Friends - I am working on IC Webclient Service Ticket. I want to Configure the "Reason" field as well as the "Subject" field in Service Ticket with new Values as per our requirement.
    I could not find any Configuration object for the above mentioned customizing in the CRM > SPRO.
    Can you pls guide me where I can configure the same?
    Thanks in advance and warm regards
    Purnendu

    Hi Gert - Thanks a lot for your reply.
    I am using CRM 5.0. I just forgot that Categorization profile can be used for the same.
    I have configured the categorization profile for the same and its working fine.
    One more thing -
    I want to create an Appointment with Customer for problem resolution at the Customer Site. I want to assign Resorces to the Appointment so that the responsible resource is notified and sent to the Customer Site for Visit.
    Can you pls guide me on the same?
    Cheers
    Purnendu
    P.S. - Full reward points awarded.

  • Problem with getting a service ticket - ignoring host name?

    Hello,
    I've been struggling with this for several weeks on and off. The latest issue I have, is that when I try to obtain a service ticket it replaces the hostname I use with the ip address of the server. This then results in a 'Server not found in Kerberos database' exception.
        public static void main(String args[]) {
            try {
                org.ietf.jgss.Oid[] desiredMechs = new org.ietf.jgss.Oid[1];
                desiredMechs[0] = new org.ietf.jgss.Oid("1.2.840.113554.1.2.2");
                GSSManager manager = GSSManager.getInstance();
                GSSName clientName = manager.createName("[email protected]", GSSName.NT_USER_NAME);
                GSSCredential clientCreds = manager.createCredential( GSSCredential.INITIATE_ONLY);
                GSSCredential clientCred = manager.createCredential(clientName,
                8 * 3600, desiredMechs[0], GSSCredential.INITIATE_ONLY);
               GSSName serverName = manager.createName("*[email protected]*", GSSName.NT_HOSTBASED_SERVICE);
    Entered Krb5Context.initSecContext with state=STATE_NEW
    Service ticket not found in the subject
    Credentials acquireServiceCreds: same realmUsing builtin default etypes for default_tgs_enctypes
    default etypes for default_tgs_enctypes: 3 1 23 16 17.
    CksumType: sun.security.krb5.internal.crypto.RsaMd5CksumType
    EType: sun.security.krb5.internal.crypto.ArcFourHmacEType
    KrbKdcReq send: kdc=labad2.lab2k.net UDP:88, timeout=30000, number of retries =3, #bytes=1276
    KDCCommunication: kdc=labad2.lab2k.net UDP:88, timeout=30000,Attempt =1, #bytes=1276
    KrbKdcReq send: #bytes read=92
    KrbKdcReq send: #bytes read=92
    KDCRep: init() encoding tag is 126 req type is 13
    KRBError:         sTime is Mon Jul 26 12:07:34 EDT 2010 1280160454000
             suSec is 65057
             error code is 7
             error Message is Server not found in Kerberos database
             realm is LAB2K.NET
             sname is *HTTP/172.16.118.89*
             msgType is 30
    KrbException: Server not found in Kerberos database (7)Thanks - Bryan.

    Your DNS server should have an entry for this host name in its reverse lookup table.
    Regards- Abid

  • Routing of emails with valid Service Ticket Tracking Text

    Hi Experts,
    System: SAP CRM 2007 (ERMS)
    If an email is send to the ERMS system with a valid Service Ticket Tracking Text, based on the rule:
    If
    Service Ticket Responsible Is Not Equal To ""
    Then
    Route to Service Ticket Responsible ( Route To (On Exception) = "" )
    The email can be routed to the Service Ticket Responsible of the Service Ticket or a default org.
    My requirement is to route the email with a valid Service ticket tracking text to the Responsible Org (Service Employee Group) of the Service Ticket.
    How can this be made possible. Can any one guide me with the Steps.
    Regards,
    Namita
    Edited by: Namita Singh on Jul 10, 2009 8:42 AM

    Hi Namita,
    I was trying to simulate your condition and i thought the following could be useful to you.
    You validate your tickets based on "Text" for them to be put into the ERMS --(Is it true?)
    and then you want the service ticket responsible org to be intimated about the ticket
    while selecting the action/parameters --> You will need to add the entry Route E-mail , this will give you the organization unit object .
    At the back end in the service manger profile the service id for this is -->AH_ROUTE and the class is CL_CRM_ERMS_AH_ROUTE
    There should be an enhancement written in this class for the identification of the Responsible org unit partner function org so that it gets identified as the org to be intimated about the ticket.
    The other way is to add the service FG_SVCTKT to your service manger profile(guess it should be the default one) so that then you can check for the Actions/parameters to assign the partner function holding the responsible org data.
    Hope this helps
    Regards
    Raj

Maybe you are looking for

  • Bootcamp Issues when attempting to install Windows 7

    Please excuse my ignorance.... new to Apple after using Windows for ever. I am attempting to install Windows 7 on my new MacBook Pro 13" purchased 4 days ago. I follow the instructions from following tutorials on UTube however do not get the option t

  • Embed a media player in netbeans IDE

    Hi guys! I'm pretty new to development in Java, right now I'm using netbeans as the IDE to development a P2P file sharing program for my school project. One of the module is to embed a media player that can playback the media files shared by the prog

  • JNDI NIS object access problem

    JNDI NIS object access problem: Hi all, After long fight, i'm now able to connect to my NIS server on my network. the initial context factory is 'com.sun.jndi.nis.NISCtxFactory' and provider url are given and i obtain namingennumeration of items in t

  • Tools option tabs not working

    For the past 2weeks when I want a link to open in another tab, it takes me directly to that new tab. And I don't have it under that option. Its just suppose to open link in the new tab, not take me directly there, so I can still stay on the current p

  • 17,000 images moved to trash

    While doing a routine update to Nik software I closed Aperture, and when I re-opened it all my 17,000 images were in Aperture Trash.  Aperture Help says to control click on trash image and select 'put back'.  But there is no 'put back' to select and