Support Contract wref to sales order-how to get serial number

Hi Experts,
Below is the scenario
Step 1:I sell product[supplied by thirdparty] in sales order  123456
Material number     Description      Qty
material-0001         Printer             2
Step 2:While purchase it from 3rd party it will be having serial number which can be entered manually while doing goods receipt. Eg:
Material number        Description    Qty      Serial number
Material-001              Printer           1         PS-10001  
Material-001              Printer           1         PS-10002
Step 3: Now I create a support contract with reference to the sales order 123456 for the sold printers.Here I need to capture the serial numbers of both printers, so that when customer complaints, the item can be identified.
How can we achieve this in the contract?
Waiting for a quick reply
Thanks
Banu

Hi Banu,
1. Create a Contract with Service product.
a. Create a Service material in MM01, with material type DIEN
b. Create a General Task list master (Tcode - IA05).
c. Attach this Task list with the Service material using OISD Tcode (set the reference object Equipment - if your equipment and serial number are same) -->(Service Product)
2.Attach the Technical objects (Equipment Number or Material number + Serial Number) to the line item service product.Maintain the contract data like price, start and end date.
3. Create a Sales order VA01, with reference to the Contract document
a. Configure this sales document type, material type to determine the Item category TAD
b. Let this Item category has the Requirement type SERA (maintain Service order type in requirement class(230 as default)
4. System will ask you the equipment number to create a Service order.
5. Enter the Equipment number,
  System will ask you to select the Operations from the task list that has been attached with the Service product in step 1.c
6. Save the sales order and open in Change mode.
7. In Scheduled lines tab, you can find a "Service order button". Click on the button, will show the service order for the given Equipment number in display mode.
You can edit the Service order IW32, and confirm the operations and issue materials to capture the actual cost and settle to the Sales order.
Hope this would help.
Regards,
Babu.K

Similar Messages

  • How to get serial number education version

    how to get serial number would they send to us by email ? since i did not create an account when i submited my application

    Find a serial number
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • Need to know how to get serial number to ipod that i only have receipt on

    Need to know how to get serial number to ipod that i only have a receipt on

    How to find the serial number of your Apple hardware product

  • How to create a Sales order with ref. with serial number using BAPI

    Hi Gurus...
    I have a requirement where,  i need to create an order with reference to serial number using a BAPI.
    The inputs will be the Order type..Sales area..Sales office..Sales group..Sold-To-party..Material number...Serial number...
    When i create the order using VA01 the configuration data will be automatically copied from the BUMP order which will have all the required information.
    But to create using a BAPI, i am struck ed..Please help
    Thanks in advance..
    Srinu

    You can use this BAPI.
    You can pass ITM_NUMBER to the ORDER_ITEMS_IN parameter. I think this will act as serial number.
    Regards,
    Murali

  • How to get serial number

    I purchased a copy of lr 4 student version and lodged the case form to get a serial number.
    They said an adobe staff member would get back to me in a few days (read bot?)
    How many of you have gone through this process and how long until I should start to worry.
    I imagine they would just send an email. I provided 3 forms of student id online.
    Help! Thanks.

    Lightroom 4.4 will be fine with me, as I am only an amateur photographer and don't need any more functions. I can always subscribe online to a plan if I want. I bought it a huge sale they had where everything in the store was 1/2 price.
    Unfortunately I had just bought a new Dyson vacuum cleaner so I didn't go into that area in case it was on sale
    Thanks everyone, for your help. Now to save for those new lenses!!

  • How to get Serial Number value which is under T-CODE IW33

    Hi Experts,
    During my developing, I dont know how to catch the Serial Number value (SERNR) which is under T-CODE IW33, Please help me? Thnks a bunch~
    Quentin

    Thank u two for ur so quickly replies,
    After my check from frontend, i found the field AFPO-SERNR is not the one i said, because the length is diffirent and frontend has value but AFPO-SERNR has no value
    Gautham,
    I found the value serial number in EQUI is my need, but  i dont know equipment number, what i know is only Repair Service Order Number, do u have any further advice?
    Thanks~
    Quen

  • How to get serial number in bapi BAPI_GOODSMVT_CREATE

    hi everyone
    im using the bapi BAPI_GOODSMVT_CREATE to create goods receipt for a PO but its giving me an error 'Maintain serial numbers for total quantity' and I really dont know how to get the serial number data, i know the table GOODSMVT_SERIALNUMBER should be populated with the serial number data but i dont know where to get the data
    can anybody help me plz?

    Hi,
    Please check the following code
    DATA: lw_header         TYPE  bapi2017_gm_head_01,
             lw_headret        TYPE  bapi2017_gm_head_ret,
             lw_goodsmvt_item  TYPE  tw_goodsmvt_item,
             lt_goodsmvt_item  TYPE  tt_goodsmvt_item,
             lw_return         TYPE  tw_return,
             lt_return         TYPE  tt_return,
             lt_zprefg         TYPE  tt_zprefg,
             lw_zprefg         TYPE  tw_zprefg,
             lw_errorlog       TYPE  tw_errorlog,
             lt_zprefg_temp    TYPE  tt_zprefg,
            lw_afs_goodsmvt_sku TYPE /afs/bapi_gm_sku,
            lt_afs_goodsmvt_sku TYPE STANDARD TABLE OF /afs/bapi_gm_sku.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
         EXPORTING
           goodsmvt_header             = lw_header
           goodsmvt_code               = '04'
      TESTRUN                     = ' '
        IMPORTING
          goodsmvt_headret            = lw_headret
      MATERIALDOCUMENT            =
      MATDOCUMENTYEAR             =
         TABLES
           goodsmvt_item               = lt_goodsmvt_item
      GOODSMVT_SERIALNUMBER       =
           return                      = lt_return
          afs_goodsmvt_sku            = lt_afs_goodsmvt_sku.
    IF sy-subrc EQ 0.
         COMMIT WORK AND WAIT.
       ENDIF.
       LOOP AT lt_return INTO lw_return.
         IF lw_return-type EQ co_msgtyp_e OR
            lw_return-type EQ co_msgtyp_a.
           lw_errorlog-msgtype = lw_return-type.
           lw_errorlog-msgid   = lw_return-id.
           lw_errorlog-msgno   = lw_return-number.
           lw_errorlog-message = lw_return-message.
           APPEND lw_errorlog TO gt_errorlog.
         ELSE.
           UPDATE zprefg FROM TABLE lt_zprefg_temp.
         ENDIF.
       ENDLOOP.
    Pls mark points if helpful
    Line Turbin

  • How to get serial number of prepaid membership card

    I BOUGHT A 12- MONTH PREPAID MEMBERSHIP TWO DAYS AGO, BUT I CAN'T GET MY SERIAL NUMBER

    Cloud programs do not use serial numbers... where did you buy, and do you have a redemption code?
    Redemption Code http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • How to get serial number registered to APPLE

    Hello!
    There is a way to see the software I registered with apple (using my apple ID)
    I want to upgrade to FC Studio latest version (I have Final cut pro 5) but I can't find my serial number card. I know I registered the software when we bought it.
    I have all the original Manuals.
    Ben

    but I can't find my serial number card
    I don't think the serial number was on a card. In most markets it is/was on two stickers affixed to the front of the booklet titled "Installing Your Software" that was packaged with the software.
    -DH

  • How to get Serial Number Registered to Re-install "iWork" ???

    I cleaned installed Mountain Lion & I tried to re-install "iWork" that I already registered online with Apple. I do not have the box anymore as I left it in another province, so is there any way that I could get my serial number that I have already registered in my apple account ?

    You only need a serial number for iWork if you purchased a license from within the trial. If that was less than 18 months ago, you will find the serial number in your account in the online Apple Store. If it has been more than 18 months, you will either need to find the e-mail you received with the serial number or call the Apple Store at the number at the bottom of this web page.
    If it was installed from a retail disk, you need that disk or an image of it to reinstall. Again, the online Apple Store might be able to help.
    Last, but not least, you could purchase the needed apps from the Mac App Store.

  • How to update Serial Number from Work Order to Sales order in MTO flow

    Helo Experts,
    I have a requirement to update automatically the Serial number in Make to Order flow, from the Work order to the sales order and then to delivery.
    In fact the flow is the following, when raising the sales order we don't know the SN, it will create a Work order with stock type E, when work order is released a Serial Number is assigned to the material created. After Goods receipt of WO, We need to have the SN updated in the sales order and then in the delivery.
    I tried with the parameters of Serial number profile, i was not able to update from WO to Sales Order.
    DO you have any idea how this requirement could be fullfiled? is it possible in standard?
    Thanks

    I don't think that it is possible in standard.

  • Next date in sales order, how to change it? if change it does it triggres

    Quick and simple question... what can change a Sales Order Next Date (field VBAK-CMNGV)?? it got changed for one of my Sales Orders according to the changes log via VA02, but no idea how... as I can not see the field via VA03.
    Appreciate any help in this regard,
    Next date in sales order, how to change it? if change it does it triggres credit check
    Thanks
    Krishna

    Hi,
    The next date available if you activated payment card processing
    In the sales order header, this field specifies the next planned delivery date and In the delivery header, the field specifies the next planned picking or goods issue date.
    This field is used in connection with next delivery/service
    If you are not using payment cards in sales order then this will not impact any of your business transaction
    Go to HEADER >> Tab PAYMENT CARDS
    kapil

  • Sales order with reference to Contract and another sales order

    Hi Gurus,
    I would like your suggestions on one of the business requirement i have.
    We are creating a new EDI interface with few of our customers to create sales orders. While creating sales orders, it should validate if there are any open contracts available and if yes, then the sales order should be created with reference to it. so far good but there are chances that sold to party on the contract could be different from sold to party on the EDI order sent by customer (customer can have more than one sold to party on their system). IDOC's are failing in this scenario and not able to create a sales order since sold to partys are not matching. I need your help.
    Can we do some thing in customer master to handle this scenario?
    or
    Create a new sales doc type (YEDI or some thing) and create sales order from IDOC without reference to contract. Business will look into all YEDI order and create the actual sales order out of it but the challenge here is i cannot refer contract to the actual sales order or YEDI order.
    Is it possible to create sales order with ref to a contract and another sales order?
    Please help
    Thanks
    Venkat

    Hello Venkat
    What is the linkage between sold to party of contract and sold to party of order..If customer has more than one sold to party.
    Why don't you use customer hierarchy....link all sold to party of a customer to hierarchy node.for example...you create a hierarchy  node 1000 and assigned customers 2000 and 3000 to it.you have contract for 2000..so when you create a sales order for 3000 check in knvh table it's customer hierarchy 1000 and get all sold tos assigned to hierarchy...which is 2000....check if contract exist for sold to's..If yes then create order with reference.
    Let us know if it works for you.
    Thanks
    Amit Gupta

  • Need error mssg for contract qty in sales order

    Hi SD Gurus
    I have created a Quantity contract for XYZ material with say 100 qty. Now if i create a Sales order with reference to the contract, in the sales order i can manually change the quantity to more than 100.
    Here the system just gives me an warning message that qty has exceeded the contract qty.
    I want to make it a error message. In short i do not want to create a sales order of more than the contract qty.
    Checked completion rule for contract item category KMN. But its just giving warning message.
    Regards
    Abhijeet

    Hi
    Abhijeet
    Please find my post on the same subject/ problem. Please click below link...
    Call off order restriction
    Check this as well...
    Copy control to copy quantity from Order to contract
    >OR
    Please follow the path
    SPRO --- Industry Solution Oil & Gas (Downstream) -MCOE (Marketing, Contracts and Order Entry)--Define contract restrictions agsinst yr sales doc type in the field of QTY PUT E.
    Hope this helps you..
    Thanks and Have a Nice Day !
    DK:)
    Edited by: Dwarkesh Thakkar on Jun 27, 2011 7:47 PM

  • Open Sales Order values not getting updated after run RVKRED77 & RVKRED88

    Hiiii,
    In Production Server. We run the reports RVKRED77 & RVKRED88. Credit info structure and and Open Sales Order values not getting updated. In FD32, Status - Sales value it showing '0". At the time of creating Sales Order Dynamic Credit check not happening coz of Tables S066 not updating. Please provide me Solution.
    Best Regards,
    Sridhar . P

    Dear Heagal,
    I followed your suggestions and implemented in the Development and moved the changes in to Quality Server. I tested it thoroughly by creating New Customer and maintained Credit Limit. I come to know that Problem is in all Servers. I made 3 changes.
    1. In Pricing Procedure Sub Total A it was not maintained against Net value. I placed it.
    2. Removed Credit groups for Delivery Type.
    3. In OVA8 i maintained Max. Doc Value :99,999,999.00 before it was with 1.00
    I checked the OMO1 Settings it was Asynchronous. As SAP Notes Suggesting to use Synchronous but here it's a client setting. So, It's Can't possible to change. Changes will affect other Company Codes.
    Tested both in DVP and QTY Dynamic Credit Check is working Perfectly and Status in FD33 Sales Value field getting update.
    If i move these changes in to Production, Will i need to run the reports again or not? How it will affect on Old Cusomer Billing and  Credit Limit data. For few of the Customers the Credit Limit data it was exceeded. Please provide me advice. The issue need to be Solved immediately.
    Best Regards,
    Sridhar

Maybe you are looking for

  • E-print does not print attached documents. Only prints text in mail if no attachments

    Hi, When emailing a document to my Hp photosmart 110 it will only print the job if I type in the mail and send it. If a document is attached (word, pdf etc) then nothing is printed, though I get the a mail in return "job received" and not later on a

  • Service Work flow in MM

    Hi all, Cud anyone please give me the step by step procedure for procurement of Services like Training to staff. Pl explain me the procedure from creation of service master ,Service entry sheet,etc to invoicing. Even if u can send me the related Link

  • Can't  save drivers windows 7 with bootcamp

    I have tried to install windows 7 on my mac. I did split up my hdd with bootcamp and created a place to install windows 7 on. Then i installed windows 7 and then i restarted the mac and started up with windows and it worked. But then i noticed many t

  • Directory won't stay closed

    I had to re-install Dreamweaver 8 after a hard disk failure. I used Site Manager/New to re-set up all my sites, and I'm seeing a very strange behavior I'd not encountered before: A directory within one of my sites is open whenever I load the site. If

  • Approach to deleting master data from BW

    Hi Gurus,    Is there a way to quicly delete master data from BW? Since the master data object have dependencies with ither objects its taking me forever to go and delete it one by one...i go to the where used list ..delete the contents of the object