URGENT: Changing status at Header level in Service Ticket in Webclient

Hi All
Please reply ASAP.......
I am changing status for service ticket in webclient at Header level.
But at item level system status is not changing.
Is there any config in CRM where user status or system status is copied from header to item level
Basically need is to trigger item status when header status is trigerred....
Can anyone help me in resolving this issue.
Regards
Pankaj Vispute

Thanks Bhanu,
I solved my problem with your answer.
Thanks,
Praveen

Similar Messages

  • Goods Movement and Billing status at header level

    Hello,
    Im new to this topic and have some very basic questions
    Will WBSTK field be updated with goods movement status for a given sales order number in VBUK table ?
    Similarly, will FKSTK/FKSTK or BUCHK will be updated with billing status ?
    I know that for a given delivery document number, I can track the status at the item level.
    But my aim is to know the overall goods movement and billing status at the order header level.
    Any clues will be of great help.
    Thanking you in advance.
    Regards,
    Preethi

    Hi Preethi,
    A sales order does not determine a billing status for delivery related billing, field VBUK-FKSTK is only determined for delivey.
    Just because of this, you will not find billing status field in VA03 -> goto header;
    you could only find billing status field for delivery in VL03N -> status overview.
    Best regards,
    Crystal Lin

  • Change currency at header level in shopping cart

    Hello
    I'm working with SRM 7.0 in classic scenario. We are facing an issue, because even if we change the currency at item level, when the PO is created in back-end it is the default currency of the supplier. We can change behaviour in Badi BBP_CREATE_BE_PO_NEW to get header currency (wich is default currency in pposa_bbp). But problem is that we want to be able to change header currency in shopping cart. And when we change header currency this currency will be applied in all items (thank to badi BBP_DOC_CHANGE).
    How can we make possible for the requetser to choose the currency at header level? This currency will those when purchase order will be created.
    Thank you.
    Regards,
    Peggy.

    Hello Peggy,
    If you change the SC header Currency as well it won't be an effective solution as your SC items can have muplitple currecies.
    Now As per standard SRM PO currency is determined from vendor currency, hence if you SC line item is created with currency GBP and your vendor has currency CHF then your PO will be created with currency CHF only.
    Now if you need to retain the SC line item  currency in your PO then you need to do particular enhancements in standard SAP code  to overwrite vendor currency functionality.
    and more over I would suggest you to group the PO based on Currencies. For example all SC line items with currency CHF will create 1 PO.
    In that case it will be easier to change the PO currency.

  • Changing Date and Time of the Service Tickets.

    Dear All,
                      I am implementing a program where i need to change the date and time of incoming service tickets which comes after 6 PM to next day 9 AM. Also if the next day is holiday then it should preset to day after tomorrow's 9 AM.
                      Is there any std. FM to present for this? How should i take care of the Holidays coming. Kindly give a brief idea about the scenario and how the above mentioned functionality can be implemented.
                      Rewards Points for all helpful answers.
    Regards,
    Vinayak

    Hey Vinayak,
    I had similar requirement... i had almost fulfilled the requirement but till then the project got scrapped...
    I will give you the brief idea on how to go about the whole thing....
    You can use this FM to satisfy your requirement.....
    CALL FUNCTION 'HOLIDAY_GET'
            EXPORTING
              holiday_calendar           = 'XH'
              factory_calendar           = 'XF'
              date_from                  = lw_frm_date
              date_to                    = sy-datum
            TABLES
              holidays                   = lit_holidays
            EXCEPTIONS
              factory_calendar_not_found = 1
              holiday_calendar_not_found = 2
              date_has_invalid_format    = 3
              date_inconsistency         = 4
              OTHERS                     = 5.
    For this you need to create factory calendar and holiday calendar.....This can be done in SPRO path.. Just search for the keywords in SPRO IMG....
    You need to do some coding for this and use FM CRM_ORDER_MAINTAIN followed by CRM_ORDER_SAVE to get this thing done which will eventually change the end date of the ticket....
    I think you are well briefed on how to go about it from now.....
    Inspire ppl by rewarding...
    Regards,
    Anand..

  • Change the Payment Method at header level in Sales order document.

    Hi Experts,
    I have a doubt and a problem; I want to change the Payment Method at the header level however that is not possible never at header level is the same even either I chose other when I was creating the sales order document or I tried to change after that. The system allows changing the Payment Method but when I display the document after that the change is not done always is the same payment method. Maybe it is defined at customer or sales organization level.
    At item level it is possible change the payment method with any problem.
    Thank you and best regards.

    Dear Alberto
    Payment Terms can be changed both at header level and at item level in sale order.
    thanks
    G. Lakshmipathi

  • Change the status of the service ticket in crmd_order

    Hi,
    i want to change the status of the ticket with out changing manually in  the transcation crmd_order.
    I need the program to change the status based on transction number(service ticket number)
    Please guide me is there any FM to get that.
    Thanks in advance,
    Suresh

    Got the solution:-)
    It is defined in customization that when the status is closed, no changes can be done. So by removing that customization my code works both for both closed and open charms.
    Thanks,
    vinod.

  • Clear IDOC creation when only header level changes are made ME22N.

    Hi All,
    when the PO is  on changed in the header level only(for example header texts and header code)  and when we execute RSNAST00 one BADI getts triggered which checks if the Item category is 9 and  badi will clear the IDOC creation.
      If the PO item category is = 9, the IDOC must not be created. This badi works fine if the changes are made at
    1)at Item level
    2)both header level and Item level
    In case of 1 and 2 we have both header segment E1EDK01 and item segments E1EDP01.As a result it checks for the item category in the item segment.so idoc is not created.
    3)BADI is not working when the changes are made at the header level only. The IDOC is getting created even though the PO has the item category as 9.
    I found in this case only header segments are availble while debugging and the item segments are not there to check the condition for the item category.
    Please any one can suggest me possible solutions to  clear idoc creation when only header level changes are made ME22N.
    The BADI used is as below.
      DATA : lwa_data TYPE edidd.
      DATA : lw_dp01 TYPE e1edp01.
      DATA : lwa_control TYPE edidc.
      CHECK idoc_control-rcvprn = '3PL' AND idoc_control-idoctp = 'ORDERS05'.
      LOOP AT idoc_data INTO lwa_data.
        IF lwa_data-segnam = 'E1EDP01'.
          lw_dp01 = lwa_data-sdata.
          IF lw_dp01-pstyp = '9'.
            CLEAR create_idoc.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDMETHO
    Thanks in advance.

    Hi all,
    Is there  any way that I can get the item category details when Only header level changes are made to the PO in ME22N and only header segments are available in the IDOC.
    Is this possible:- Fetch the po number and item category details from ekpo table that matches with  the header segment po number and then check for item category value  to clear the idoc creation?
    Any information is helpfull.
    Edited by: Selina.selk on Nov 20, 2009 1:39 PM
    Edited by: Selina.selk on Nov 20, 2009 2:49 PM

  • Update the overall pick status of a outbound delivery  at header level

    Hi Experts
    Is there any way to directly update the outbound delivery ( VL02N) status at header level (VBUK-KOSTK) , OverllPickStatus
    quick response is appreciated
    Thanks
    Satish

    try MV50AFZZ.
    Regards
    Peram

  • Discount value not updating at contract header level

    Dear Friends
    I am facing problem of updating discount value at contract header level. The scenario is u2026. my client used to provide certain service to their customer. For that they maintain quantity contract & bill them as per billing plan. When customer avail three or more  services they get 10% extra discount. Now the problem is after continue for some days if some customer wants to drop  one item we are cancelling the line item by assigning proper cancellation procedure but the  system is not reversing the 10% discount.
    Example u2013
    Contract valid for 1st Jan 2009 to 31st Dec 2010(Value for each service = 10)
    (Total no of item-3)
    (Discount-10%)
    Here bill value for each month is  10x3-(30x0.10) =27
    At the month of march 2009  customer decided to drop for one item so hence forth the bill value should be 10x2=20
    But the system is calculating 10x2-(20x0.10)=18
    We need to update the value at contract header level only to satisfy some CRM functionality.
    Please suggest how to solve this issue

    Hi,
    If that is  item condition then you can not change it at header level
    check in M/06 make it at header level  in change which can be made tab
    Regards
    Kailas Ugale

  • Billing plan (Downpayment) for saved and open sales orders at header level?

    Hi gurus,
    I have configured billing plan in my SD environment at Item Level.
    I want to change it to header level.
    Questions:
    1- When I make the changes to update the system to have billing plan at header level for future sales orders, is that possible for me to change all my saved orders and open orders with the new settings so that I can also have those saved and open orders with a billing plan at item level?
    2- If that scenario is not possible, could we for example copy the data of a previously saved or open sales order into a new sales order with the new customizing (Billing plan at Header level?)
    Thanks for your input
    Kind regards
    Chris

    Hi
    I am afraid you cannot do that converstion for the existing orders. BP at header level are enabled at teh document type level, while BP at item level is done at item category. So both are independent. Mostly it is advisabel to use BP at item level only.
    If you are already using item level BP, and want to mvoe to header BP, then only future transactions can be executed with BP at header level. Existing item level BPlans will remain so in the system.

  • Conditions on RFQ Header are not changeable at PO Header level

    Dear Gurus,
    I have maintained a Quotation and enter the conditions on Header level in Quotation. Once i adopt the Quotation in Purchase Order, these conditions are displayed both at Item and Header level and i cannot edit the condition value at PO Header level, they are editable at Item level but not at header level.
    I want to edit them at PO Header level too.
    Please advise.
    Johi Kapoor

    Hi,
    If that is  item condition then you can not change it at header level
    check in M/06 make it at header level  in change which can be made tab
    Regards
    Kailas Ugale

  • Workflow for Downpayment at header level

    Hi,
    I have a scenario like
    Step 1 :  A Purchase order will be raised for a vendor with multiple line items with down payment maintained at header level.
    Step 2  : Down payment request will be raised through ME2DP which invokes F-47 in the back ground . Business requires to send a mail to the approver                   once Down payment request is saved  at header level i.e., with total down payment amount of all items instead of sending mails item wise.
    Currently business is triggering workflow 's at Item level of down payment request and they want to change it to header level.
    I was wondering is there possibility of  triggering work flow  at header level for down payment request .
    Please advise on this.
    Thanks,

    Jaya,
    Unfortunately there are no tolerance keys designed to work in the manner that you desire. All the standard tolerance keys work at the item level.
    The only solution I can think of would be do some sort of validation on the unplanned delivery cost field via a user exit/BADI in MIRO.
    Hope this helps {or probably not:)!}
    H Narayan

  • Supplier Header Levels

    We use Oracle Applications11.5.10. When changing information (banking, holds, payment terms) at the supplier header level it does not carry over to each site. If the terms are changed at the header level why is not able to be carried over and applied at each site level? It is still necessary to go into each site and make the changes too.

    Hello,
    Please check
    SWB_COND     Display start conditions
    SWB_PROCUREMENT     Define start conditions
    I hope with this you will be able to control all these settings.
    Kind regards,
    Gaurav
    PLEASE GIVE FULL POINTS FOR USEFUL REPLIES

  • 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

  • Problem in Service ticket

    HI all,
    Iam are working on CRM version 5.0, CIC webclient support package 07,
    we are creating a employee help desk scenario profile,for which have created a new profile by copying the standard "help desk" profile . while we creating a service ticket for an existing employee there are fields(T.Code SE80 for Web Client) called <b>REASONS</b> and <b>SUBJECT</b> in the header overview of service ticket(work space area).
    where in the <b>Reason field</b> we are having some standard fields in the drop down as follows
    Regular Activity
    Advertising and campaign
    campaign .....etc.
    And in <b>Subject field</b> also we are having some standard fields in drop down like
    leakage
    rupture/tear
    overheating...etc
    now we want to replace the values in the drop down box of
    <b>SUBJECT/REASON</b> with the fields suggested by our client.
    Could you please help me out where can I configure these settings.Kindly help me out for building this scenario.
    Quick response is highly appreciated.
    Thanks in advance

    Hi Ravi,
    To do this kind of configuration in the normal IMG customizing, the Catalog does not need to be copied or changed, and I think this is the only place you normally should get error messages within the configuration if you try to copy or change. All other levels (for instance code groups profile) should allow you to define your own settings.
    In short, underneath the existing Catalog, you define your own Code Groups with corresponding Codes, your own code group profile and subject profile and this subject profile you assign to your transaction.  That way you don´t really need to touch any SAP predelivered settings. Each catalog can have a number of different code group profiles etc. assigned to it, so the original ones can stay in, you only add the new ones and then change the assignment of subject profile to the transaction to make the transaction show other values in the dropdown list when you maintain it in the interaction center.
    Regards, Lorna

Maybe you are looking for