Item Category - Serial number status Link

Experts,
What is the link between item category and serial number status in sales document. When I create an outbound delivery for one item category, the serial number in outbound delivery becomes ESTO to ECUS. For another item category it becomes ESTO to ECUS ESTO. How is it maintained.
I want to change the transfer status from ESTO to ECUS instead of ECUS ESTO for one item category. How can I accomplish this. Please advice.
Thanks
Manassha.

Manassha
These are system statuses that are maintained and delivered by SAP. They are activated   or deactivated by performing an application procedure, or directly.
typically when the Eqpt. is in stock, it will be in ESTO-' in the warehouse' system  status.
Once you assign it in  a delivery, it will have 2 statuses- EDEL, ESTO- ' In the warehouse' ( as it has not been Goods Issued yet) and ' Assigned in delivery note'.
Once you do a GI of the delivery, I t will be in ECUS- 'At customer site'- status. This is for normal items.
For customer Consignment Fill-up orders, once you deliver and PGI, the eqpt will be in the unusual sounding state of ECUS ESTO, because it is goods issued to a customer at the same time because it is  associated with  Consignment Fill-up ( and not consignment Issue), it will be in ESTO status as the eqpt is still in our stock. I am guessing even  Equipment related Made-to-order (MTO)  items will have similar status when received from Production Order to sales order stock.
There is no way you could influence this because this is 'system status' and gets determined by what you did- Transactions like PGI, Good receipt etc.
Hope this is clear.

Similar Messages

  • Serial number status of semi finished material.

    Hi Gurus,
    I have a serialized finished product.
    I have a serialized semi finished material as a component of that finished product.
    After issuing the semifinished to the production order of the finished product, the serial number status of the semifinished item becomes AVL.
    I dont want the semifinished serial number to be reused once it is issued to a production order and the finished material from that production order is delivered .
    Help me in acheiving this.
    Thanks in advance.
    Regards,
    Gowrisankar.p

    Hi Gowri Shankar,
    You should maintain a User Status Profile for the Serial Number Profile, (Through Equipment Category).
    Once the Semi finished Material with a particular Serial Number is Issued for a production order. The status should change to Say " Used". Then this Serial Number cannot be assigned again to a new Semifinished Goods.
    User Status profile should be defined in transaction BS02.
    Thanks And Regards,
    Balasubramanian.

  • Change Serial Number status

    Dears,
    I'm facing a problem when assign serial number to such material at outbound delivery. the status of this serial number change to "EDEL" assigned at delivery note but after posting goods issue this serial number didn't transfer to material document and its status is still at delivery note.
    anyone can advise me in this problem

    Hello
    In the following link, kindly refer response from "VASCO".
    - Re: Serial number status EDEL ESTO in SD
    OR
    - System Status EDEL ESTO Active
    Regards
    JP

  • Serial Number Status is SWP

    Dear SAP Guys..
    While doing GOODS ISSUE(ZSRTRF/252) for trading material for only one quantity..
    at the time of entering RSN no..
    System Shows Foolowing error...
    RSN Serial Number Status is SWP
    Pl suggest..

    Dear,
    Not well experienced about the error, but known it means Error in Workflow manager. Flow item is locked.  Basis people can help you in this.
    Regards,
    Syed Hussain.

  • PLD - Item's Serial Number on invoice

    hi,
    I am working on a layout of invoice, and when the show the serial number, the report is displayed as follows:
    Item / Quantity / Serial Number
    A   4 0001
    A   4 0002
    A   4 0003
    A   4 0004
    Is there a way to configure the PLD to be displayed like this?
    A  4 0001
    0002
    0003
    0004
    Tank's

    Check this link
    How do I get Serial Number of and Item in invoice (INV1 and OSRI tables)
    Edited by: Jeyakanthan A on May 3, 2009 11:16 PM

  • Goods Receipt entry for items with serial number

    Hi All,
    When I try to create a Goods receipt entry, for items with serial number, i'm always getting the following error message.
    [OSRI] , 'The selected quantity of serial/batch numbers is greater than the quantity in row Id'
    The following is the code that I'm using
    Dim oInvetoryGenEntry As SAPbobsCOM.Documents
    Dim oSerialNumber As SAPbobsCOM.SerialNumbers
    Dim ErrCode As Long
    Dim ErrMsg As String
    Dim ret As Long
    Set oInvetoryGenEntry = oCmp.GetBusinessObject(oInventoryGenEntry)
    Set oSerialNumber = oInvetoryGenEntry.Lines.SerialNumbers
    oInvetoryGenEntry.DocDate = Now
    oInvetoryGenEntry.DocRate = 1
    oInvetoryGenEntry.TaxDate = Now
    oInvetoryGenEntry.PaymentGroupCode = "3"
    oInvetoryGenEntry.Comments = "GRN Entry11"
    oInvetoryGenEntry.Lines.ItemCode = "A00004"
    oInvetoryGenEntry.Lines.Price = 100
    oInvetoryGenEntry.Lines.Quantity = 1
    oSerialNumber.SystemSerialNumber = 55555
    oSerialNumber.InternalSerialNumber = "2354"
    oSerialNumber.BatchID = "bt1"
    oSerialNumber.Add
    ret = oInvetoryGenEntry.Add
    If ret <> 0 Then
            oCmp.GetLastError ErrCode, ErrMsg
            MsgBox ErrCode & " " & ErrMsg
        Else
            MsgBox "GRN Entry made."
        End If
    It would be wonderful if anyone help me out to trace the exact reason for this issue.
    Thanks
    John

    Hi John I'm almost sure that your working with SDK 6.5 with SP1 or lower, visit this address
    https://www.sdn.sap.com/sdn/collaboration.sdn?node=linkFnode6-1&contenttype=url&content=https://DI: Add more than one serial numbers in Invoice
    Maybe you can find your answer if you can fix it let me Know my email address is [email protected] because i had the same problem.
    Regards

  • Function module to get material serial number status

    Hi Gurus,
    How to get get material serial number status? Is there any function module?
    TCode IQ03 to display the serial number staus, but where i can find the status (AVLB / ESTO / ECUS) of these serial number ?
    Pls help.
    Regards,
    Sankaran

    hi,
    SELECT SINGLE  equnr objnr FROM
                               equi INTO (equnr1 , objnr1)
                               WHERE sernr = wa_final-sernr
                                 AND matnr = wa_final-matnr.
        CALL FUNCTION 'STATUS_TEXT_EDIT'
          EXPORTING
            client           = sy-mandt
            flg_user_stat    = 'X'
            objnr            = objnr1
            spras            = sy-langu
            bypass_buffer    = 'X'
          IMPORTING
            line             = sttxt
          EXCEPTIONS
            object_not_found = 1
            OTHERS           = 2.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    Regards
    siva

  • Serial number status EDEL ESTO in SD

    Hi guys,
    I already spent two days on searching a proper answer on serial number statuses. I have a problem with system status on serial number master data, when I try to put on delivery a serial number which was returned from customer. I get an error message due to status EDEL ESTO on serial number.
    BS013 System status EDEL is active (EQU 10009522)
    IO201 Serial number 333444555666845 cannot be used here
    I know that I have an option to change system status manually through IQ02 transaction, but that is not an option, because system should run automatically. We create a sales order, delivery and invoice automatically through the interface. It can hapeened that there is a return made (also over interface), so the good is returned to the stock and it could be sold again in the next step.
    How can I prevent that the status is set to EDEL ESTO instead to ESTO only?
    THX and BR,
    Matija

    Hello Matija
    Try this:
    go to the trx BS22, search the status EDEL. Then , you double-click on short text.
    Search operation PMS8 and set flag "enable" o "warning". Whit this setting, You can post a delivery whit status ESTO EDEL.
    Good luck
    Regards
    VASCO

  • Serial number status EDEL ESTO

    Hi guys,
    I already spent two days on searching a proper answer on serial number statuses. I have a problem with system status on serial number master data, when I try to put on delivery a serial number which was returned from customer. I get an error message due to status EDEL ESTO on serial number.
    BS013  System status EDEL is active (EQU 10009522)
    IO201    Serial number 333444555666845 cannot be used here
    I know that I have an option to change system status manually through IQ02 transaction, but that is not an option, because system should run automatically. We create a sales order, delivery and invoice automatically through the interface. It can hapeened that there is a return made (also over interface), so the good is returned to the stock and it could be sold again in the next step.
    How can I prevent that the status is set to EDEL ESTO instead to ESTO only?
    THX and BR,
    Matija
    Edited by: Matija Zaloznik on Mar 27, 2009 10:58 AM

    Hi Matija,
    Can you share with us the solution for fixing this issue?
    Thanks,

  • Urgent!!! Serial Number Status AVLB EDEL

    Hi PP Guru,
    I need your help in resolving the issue.
    We have one material with Serial Number status 'AVLB EDEL' and I am aware that the system sets this status to Serial Number when assigned in deliveries and not yet PGI'd.
    I cant find from where this status came from since I searched from all the tables and could not determine its linkage with any deliveries.I searched tables like SER01, OBJK, SERI and also looked into the materials documents but could not find the serial number anywhere.
    The issue came to the notice when we were trying to do delivery with the same serial number and the system was not allowing us to do so.
    Please advise when this could happen when the serial Number status is AVLB EDEL though not assigned in deliveries.
    Appreciate your response. Its pretty urgent.
    Thankyou,
    Rahul.

    Hi,
    I looked into the program mentioned by jeevan and I earlier looked into Serial Number history but there is no history available. Then also I can see the material with AVLB EDEL Status.
    This is defeintly a strange issue but want to know the root cause for the same.
    I tried to replicate the same in my sandbox but not getting replicate.
    Thank You.

  • Serial number status problem at cancellation of GR

    Hi,
    System is giving error message  at the time of cancellation GR---->"SERIAL NUMBER STATUS CAVL IS ACTIVE".
    I have assigned the same serial number,which i had used at the time of goods receipt.
    please provide me the solution for this serial number status.
    Regards,
    Ramky.

    I suggest you <a href="http://service.sap.com/notes">search for relevant SAP notes</a> with keywords "IO201" and "return delivery". There are a few correcting errors in this area.

  • Update the serial number status

    Hello Gurus,
       We are facing very often the error message "System status ESTO is active (EQU 14584774)" due to, somethime, the serial number we want to receive is on the plant already.
      we know the reason about this error and we have decide to ignore it by changing the status of the serial number in to available with SQ02.
    However, we want to automatize this status updating at the time to make the reception by posting the inbound delivery).
    Does anyone of you know about a FM to change the serial number status? or maybe a user or a badi,
    PLease, give me some ideas, as I have been looking in everywhere for an easy solution  without success.
    thanks a lot in advance

    Hi David,
    Go to the T.code BS22 and select I0184 - ESTO and double click on the line.
    Then select PMS1 - Good Receipt and change the radio button to Allowed or Warning and save it.
    Warning: Once you activate this setting, you will no more receive any error or need to change the status of the SN, even if the SN already exist in the warehouse.I mean same SN will be allowed for multiple GR transactions, even though the SN already exist in the warehouse.
    Best option is to change to warning option, provided this does not Impact your business scenario.

  • Returns delivery and Serial Number status

    Hi Experts,
    for Goods returns, we create a Returns Delivery with a Material and Serial No.
    We can't make any Goods movement because the Status (into IQ03) stay on ECUS (or EKUN).
    I can modify this status by using IE02, but is it possible to do it with a Function or BAPI ?
    Thanks.
    Regards,
    David

    Hi,
    Goto the Table VBFA in SE16 and Key in the SALES DOCUMENT number in PRECEDDING DOCUMENT NUMBER  in the field VBELV and Fetch the document with the SUBSEQUENT DOCUMENT Category J and M which are Delivery and Billing respectively.
    VBFA--VBELV  === Sales order (VBAK-VBELN)
    fetch  VBELN where VBTYP_N = M and J for both Delivery and Billing.
    Once you got the Delivery document then goto Table SER01 and fetch the  OBKNR
    and with the OBKNR as input field goto the Table OBJK and fetch SERNR which the serial number .
    Please check this and revert back if you need any more details
    regards,
    santosh

  • Query about perishable item and serial number entry in RMS

    hi ,
    can some one help me to explore the below mentioned option RMS
    1. how can we mark an item as an perishable item in rms
    2. where to enter the serial number for an item in RMS.
    regards,
    deepak

    hi erik,
    yeah you are right its an unique number which is assigned to the product by the supplier which is not an barcode or PLU. when i tried to find the same i found vpn and LOV like upc , isbn and oracle retail number etc while i am in the process of creating an item.
    i would like to know after we create an oracle retail number or the retailer's own sku number if we want to add multiple ean code and unique serial code how can we execute the same in RMS.
    eg 1: a brand of a shampoo will have its common sku number but at the same time it can have multiple ean code/bar codes.
    eg 2: mobile phones with common sku number can have IMEI and other codes .
    regards,
    deepak

  • BOM item and Serial number item in Delivery through DI

    Hi Guys,
    When I create a delivery with one ore more sales-bom items and one ore more serial number items and I add one ore more sales-bom items before one of the serial number items the creation of the delivery goes wrong with the following error: "You should use existing serial/batch numbers for this document type   [الرسالة 29-51]"
    when I add all the seriail number items before the sales-bom items the delivery is created perfectly.
    Has anyone seen this error?
    It happens at least from SBO 9 PL08 and higher.
    Thanks
    Ad Kerremans

    Hi Ad!
    Thank you for your reply.
    Did you try a BOM item which components need serial numbers?
    I opened a ticket SAP B1: How to create a delivery with BOM items and serials numbers
    Would you mind to take a look and give me some advice?
    Billy

Maybe you are looking for

  • After Restoring iPod

    I restored my iPod, which by the way I bought last week, it displayed connect to power adapter icon on screen. I connected and it has been connected since 2p.m. in the afternoon and now it is 11p.m. at night and all it is showing me is the same icon

  • Bluetooth Issue with Droid Razr Maxx

    I have had my Razr Maxx for about 3 weeks. From the jump I have had problems playing music thru several bluetooth devices. It will play fine for a few minutes, then music will start stuttering(dropping in and out) and continue to do so. Music plays f

  • Cant download Mountain Lion, I get an error every time

    I have a 2012 mac book pro 13 inch model and I cant get mountain lion to download, It keeps coming up with an error. What am i not doing right, its a brand new computer and I shouldnt be having this trouble. the operating system is 10.7.4 currently.

  • [FEATREQ] New 'Live Updating' option: realtime, every x hours, every day...

    Hey all, I just posted this as feedback to Apple, but I would like to hear your opinions on this as well. The problem is that my iTunes and computer are stuttering at the beginning of every song, because all my smart playlists have to be updated with

  • Going thru code multiple times.

    I have 50 years experience a procedural programmer & about 3 years as an OO programmer using Java so my Java Code is not what I would like it to be. A menu Class named Menu invokes a class named Jobs which in turn Invokes a class named KeyPhrases. Th