Report a serial number in work order operation

Hello Gurus,
Some of our production orders for a serialized assembly, may have the quantity of 20 or even more. Although the entire quantity tends to stay together for one or more operations, they quickly disperse as some take a little longer to build. I need to track in a single order, with multiple serial number each of the serial numbers. How can I do it?
Thanks for your advise,
Eti

Easter,
This is not posisible directly in standard SAP directly. You will have to design some custome Z solution for this. Devlope some kind of transaction which tracks individual serail number in confirmation.
We had something similar requirement with my previous client. We had split production order qty as  different tracking numbers.
Tracking number is a production order numbre+0001..0002 equl to toal number of qty so if you have 2 qty of production order 600012 the tracking numbers will be 6000120001,6000120002 ect..
We used to track status of each tarcking number using custome transaction ZLINEUP. we used to post confirmation for each tracking number thrue programming BDC.
This is kind of big project itself.

Similar Messages

  • 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.

  • Work Order Operation Duplicated on Operation/Activity Number

    I had a coworker duplicated his activity number on a operation. He hit save after he had changed the operation number. Now it is giving an error "Inconsistent data: Order 20066826 02/11/2008, duplicate entry U 0125. This had only happened once before and I tecoed/business completed the work order. Then told them to create a new order. But this one, has important information in it, so I was asked to save this order.
    Any way to renumber the operation or delete it, or just get in the work order itself? I get this error in change or display.
    Thanks

    What you describe should not have happened, and in 11 years of consulting on SAP Plant Maintenance I can only recall having seen this kind of problem once previously. It's not a very easy problem to resolve. There are a couple of suggestions I can make, neither of which are particularly easy or straighforward:
    1. Raise an OSS message with help.sap.com to see if they are aware of the problem and have an ABAP that you can download that will correct or delete the database entries. I have done this successfully previously but whether they have an off the shelf solution for this will depend on which version you are on and which tables have corrupted entries in them.
    2. Get an ABAPer to look at the problem and produce an ABAP program to correct the entries internally. It wouldn't need to be a particularly complex program, only a few lines, but some analysis would be needed to ensure that all of the affected table entries are corrected as the work order operations are split across several tables.
    Sorry but there is not really an easy answer to this one.

  • Work order operation number in Production Scheduling

    Hi,
    We are using production scheduling for scheduling the discrete jobs. In production pegging view, the work order operation is shown in number "xx:xx:xx:xx:xx" not the name of the operation. Is there any setup required to display operation name? Any patch required?
    Thanks,
    Anitha.

    Hi,
    I have face similar issue in deleting PO line items.
    Even though I delete items, system check budget for deleted qty with the currency conversion + value & gives budget exceed error.
    In some cases we have asked user to deactivated AVAC asked to do the transaction, which is not recommended.
    You can try running CJBN & CJBV in sequence for affected WBS.
    Thanks & reg,
    Sam

  • How to regenerate COSS table for work order operation planning hours

    Hello,
    I am looking for a SAP report or a custom solution to update the table COSS table from work order operation hours. Several work orders incorrectly updated in the table COSS with result the cost is incorrect.
    For example: In the work order opertions, I have  planned 2.5 hrs and in the table COSS it is 1.5.
    Much appreciate for your help
    Bill

    It is quite simple actually.
    As soon as your array exceeds SDU (defaults to 2048), sqlnet will fragment the packet. (see: sqlnet more data to client messages in your trace file)
    As soon as the packet is bigger than your NICs MTU, the NIC will fragment the packet.
    So, depending on the number of bytes for 1 record, high array size make sense or don't make sense.
    And ideally SDU should be a multiple of MTU.
    So do high arraysizes make sense? Usually not.
    Hth
    Sybrand Bakker
    Senior Oracle DBA

  • Serial number in sales order creation

    HI all,
         please help to me........
    My requirement a add the serial number BAPI sales order.
    problem is their no serial number in bapi structure.
                How to add serial number crate a salesorder bapi.
    serial number is RIPW0-SERNR.
    Thanks & Regards,
    SReddy.

    hi,
    refer to this link
    http://help.sap.com/saphelp_nw04/helpdata/EN/3e/0e1089c24611d1ad09080009b0fb56/content.htm
    refer to this code...
    Also if you set the * CONVERT_PARVW_AUART = 'X' parameter to 'X' you can use sold to party as SP and ship to party as SH.
    REPORT ZEX_BAPISALESORDCRT .
    --Data Declaration--
    Data: st_BAPISDHEAD like BAPISDHEAD, " Sales Order Header Data
    ta_BAPIITEMIN like BAPIITEMIN occurs 0 with header line, " Ln item
    ta_BAPIPARTNR like BAPIPARTNR occurs 0 with header line, " Partner
    d_BAPIRETURN1 like BAPIRETURN1, " Bapi return msg
    d_vbeln like bapivbeln-VBELN. " Sales Order Number
    Move the data to create sales order in the repective parameters------*
    move: 'TA' to st_BAPISDHEAD-DOC_TYPE, " Sales document type
    '15493' to st_BAPISDHEAD-PURCH_NO_C,
    '00010' to ta_BAPIITEMIN-ITM_NUMBER,
    'Y-351' to ta_BAPIITEMIN-MATERIAL,
    '1100' to ta_BAPIITEMIN-PLANT,
    '1' to ta_BAPIITEMIN-REQ_QTY,
    'AG' to ta_BAPIPARTNR-PARTN_ROLE, " Sold to Party
    '0000007777' to ta_BAPIPARTNR-PARTN_NUMB.
    Append the internal tables-------------------------------------------*
    append ta_BAPIPARTNR.
    clear ta_BAPIPARTNR.
    append ta_BAPIITEMIN.
    clear ta_BAPIITEMIN.
    Move ship to party---------------------------------------------------*
    move: 'RG' to ta_BAPIPARTNR-PARTN_ROLE, " Ship to party
    '0000007777' to ta_BAPIPARTNR-PARTN_NUMB.
    Append the internal tables-------------------------------------------*
    append ta_BAPIPARTNR.
    clear ta_BAPIPARTNR.
    Call the Bapi to create the sales order
    CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT1'
    EXPORTING
    ORDER_HEADER_IN = st_BAPISDHEAD
    WITHOUT_COMMIT = ' '
    CONVERT_PARVW_AUART = ' '
    IMPORTING
    SALESDOCUMENT = d_vbeln
    SOLD_TO_PARTY =
    SHIP_TO_PARTY =
    BILLING_PARTY =
    RETURN = d_BAPIRETURN1
    TABLES
    ORDER_ITEMS_IN = ta_BAPIITEMIN
    ORDER_PARTNERS = ta_BAPIPARTNR
    ORDER_ITEMS_OUT =
    ORDER_CFGS_REF =
    ORDER_CFGS_INST =
    ORDER_CFGS_PART_OF =
    ORDER_CFGS_VALUE =
    ORDER_CCARD =
    ORDER_CFGS_BLOB =
    ORDER_SCHEDULE_EX =
    if d_vbeln <> space.
    write: 'Sales order No. ', d_vbeln.
    endif.

  • Download Error - Contact customer support. Indesign wont load application have gone from the control panel. CS photoshop loads and wants a serial number - and my serial number dosent work?

    Download Error - Contact customer support. Indesign wont load application have gone from the control panel. CS photoshop loads and wants a serial number - and my serial number dosent work?

    Hello Bradley,
    sometimes the "opm.db file" is the culprit. In this case you should delete it.
    But as much as I regret it and as strange as it may seem I fear it's a challenge for Adobe's Creative Cloud Cleaner Tool.
    Sometimes - for whatever reasons - CC doesn't "want" to work. In this case you should CC completely delete and reinstall by help of Adobe Creative Cloud Cleaner Tool. (A try to uninstall by own resources is not enough!)
    I quote: ... helps resolve installation problems for Adobe Creative Cloud and Adobe Creative Suite (CS3-CS6) applications. The tool removes installation records for prerelease installations of Creative Cloud or Creative Suite applications. It does not affect existing installations of previous versions of Creative Cloud or Creative Suite applications.
    Please use: http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html   and follow the prescribed sequence of operations
    If necessary and for further questions click through http://helpx.adobe.com/contact.html or http://helpx.adobe.com/de/contact.html and if "open" please use chat, I had the best experiences.
    Good luck!
    Hans-Günter

  • I have a Serial Number which worked fine on my MacBook Pro but does not work on my desktop PC (Win 7).  What is the problem?

    I have a Serial Number which worked fine on my MacBook Pro but does not work on my desktop PC (Win 7).  What is the problem?

    You haven't identified the version so I can't tell if offering you contact options for Adobe Support will be of use to you.  But they will likely be your only hope of getting resolution unless you just happen to be using the wrong number as the serial number.
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Why is  my serial number not working, it says it is invalid.  I have checked and it is correct

    why is  my serial number not working, it says it is invalid.  I have checked and it is correct

    The most likely explanation is that you downloaded the Creative Cloud version of Lightroom instead of the standalone version of Lightroom (which you can download from here).
    If that doesn't work, you'd need to provide a lot more details, including version of Lightroom, operating system, and exactly what you are doing that doesn't work.

  • Number range for serial Number in production order

    Hi all,
                I want to use the Serial Number in production Order ... It should be generated automatically ... when i try this system creating the serial number from 1.....i want the number to start from 2000000 , How to configure this number range ....
    Please advise me ...
    Regards,
    kumar

    Dear
    Following steps are required in Serial Number Management :
    1. OIS2 or Go to path SPRO > Plant Maintenance and Customer Service > Master Data in Plant Maintenance and Customer Service > Technical Objects > Serial Number Management > Define Serial Number Profiles. There enter "2" in Stkck column for your serial profile.
    2.SPRO->SAP Customizing Implementation Guide->Plant Maintenance and Customer Service->Master Data in Plant Maintenance and Customer Service->Technical Objects->Equipment->Equipment Categories->Define Number Ranges
    3. IQ01 Create Serial Number
    4. MM02 You need to add the above created Serial Number Profile in the Material Master ion the work scheduling view .
    5. CO02 Assigning the Serial Number through Production Order,
    Also Serial Number can be created automatically by clicking on u201CCreate Serial Number Automaticallyu201D , Release the Order
    6. MB31 Do the GR for the above created Production Order and Check in MMBE for serial Numbers
    Try and check
    Regards
    JH
    Edited by: Jiaul Haque on Nov 22, 2010 7:43 AM

  • I had to purchase a new computer. My Photoshop serial number does work on my new computer.

    I ha t to purchase a new computer with Windows 8.0. Now my PHOTOSHOP serial number does work on the new computer how do I fix this problem?

    Hello James,
    I am sorry, but CS3 is not compatible with Windows 8.
    Creative Suite 3 has been released Early 2007 and Windows 8 has been released Mid 2012.
    When Windows 8 came out, we had just released our Creative Suite 6.
    CS3 under Windows 8 may be installed, activated and used, that may happened for some customers, but we know due to the difference of the files system of these 2 products that it is unstable.
    You could downgrade your operating system to Windows Vista or Windows 7 to have the CS3 working.
    There is also an option to purchase a first-year discounted version of the new Adobe Creative Cloud membership due to your ownership of the CS3.
    If you wish to have more information, please go to https://creative.adobe.com/plans
    Thank you.
    Arnaud.

  • Serial number on sales order

    dear all!
    i am looking for the way to enter a serial number on sales order. i can enter it, but only via incompletion check. there is no menu entry, or button where to enter serial numbers in VA01, VA02.
    does anyone know how to enter the serial numbers for sales order items?
    thank you!
    matthias
    solved it by my own - link is technical objects ...
    Message was edited by:
            Matthias Rumplmaier

    Hi
        Serial number has to enter in the material master record, and setting have to be done in IMG-SD-BASIC FUNCTIONS-SERIAL NUMBERS-DETERMINE SERIAL NUMBER PROFILES.
    Similarly we can do the same even logistics execution.
    pls try these let me know it worked out or not.
    thank you
    with regards
    chaitanya

  • Free Photoshop CS2 and serial number that works

    I downloaded the free Photoshop CS2. How do I get a serial number that works so I can install the program? Thanks.

    This is the FormsCentral forum. I suggest to look for and answer on the Photoshop forum
    http://forums.adobe.com/community/photoshop
    Gen

  • Adobe CS5.5 Design Premium Serial Number Not Working

    I just wiped my macbook pro harddrive and upgraded to Lion OSX. I bought the CS5 Design Premium last year (in a case). Unfortunately, my discs are unavailable, but I do have the correct serial number. When I downloaded the CS5.5 Design premium trial (to plug in my serial number), it says it isn't valid. Is there a place that I can download the CS5 Design Premium Suite so that my serial number will work? Help! I'm a photographer and I need PS to work immediately!

    Maddiewilbur have you lost your installation media or is it just unavailable for the moment?  If you will have access to the installation media at a later time I would recommned installing the trial of Design Premium CS5.5 and then remove it and install CS5 once you have access to it.

  • How to output serial number from production order in GLM ?

    how to pull serial number from production order in wwi template for GLM ?

    Hi,
    Please have a look to this thread:
    BAPI/RFC to get serial numbers for a production order
    Hope it helps,
    Kr,
    m.

Maybe you are looking for