Serial control problem in rework

Hi Gurus,
i have completed one subassembly 'A' with an item having serial number control(suppose SR001). now i hav rejected it and created one rework order against that in different subinventory 'B' in which i want to replace that serial controlled item with other one(Suppose MR005 which is available in subinventory B). how can i do this?

Hi
Your rework order will consume the item with serial number "SR001" and create another serial number with serial number "MR005". I don't see any problem doing that. If I missed anyhing, let me know.
Regards,
Ricardo Cabral

Similar Messages

  • What is difference btw serial control uniqueness within inventory model

    hi ,
    what is difference btw serial control uniqueness within inventory model and item and with inventory .
    and what is difference btw the serial number generation at item level and at organization level...
    please help me ...
    thanking....

    1) When uniqueness is within inventory items, you cannot create 2 serial numbers for the same item. But you can have same serial# for 2 items.
    In CTO scenario, sometimes this is a problem. So Oracle introduced the new option "within inventory model and item". In this case, Oracle generates a serial number by using the prefix defined at the Model level. This helps you maintain the uniqueness within all * numbers created for a given model.
    2) If you choose generation at item level, you can specify the starting prefix/length for each item. When generation is at org levle, you need to specify it at the org
    Hope this helps,
    Sandeep Gandhi

  • Serial control in wip discrete jobs

    Hi gurus,
    i had created a discrete job with serial control enabled for components.
    but when trying to query for job im unable to get it.
    so whats the mistake i did?
    when going thru oracle white papers they mentioned to change profile option
    TP:WIP Operation backflush setup to online processing mode.(for having serial control in job)
    but i cant able to get the profile option in wip responsibilty.
    will u pls guide what are mandatory steps for building discrete jobs with serial control and to perfor move transactions?
    waiting for solution pls.

    Dear Mr.Riccardo
    I would like to bring to your notice a document from Metalink. It says that we cannot do move transaction of Serial controlled Items in Desktop forms.....
    Subject: Is Serial Number Association Functionality Only Available Using Supply Chain Mobile Applications?
    Doc ID: Note:265512.1 Type: HOWTO
    Last Revision Date: 01-APR-2004 Status: PUBLISHED
    The information in this article applies to:
    Oracle Work in Process - Version: 11.5.9
    This problem can occur on any platform.
    Goal
    Is the new functionality of Serial Number Association only available through Mobile Applications?
    Fix
    This functionality provides support for standard discrete jobs with or without a routing.
    The User Interface for this functionality is via Mobile Applications
    Serialization can be activated within a job...this can be for entire job or beginning at
    a specified operation.This new feature is optional. It is defaulted by org parameter and controlled at the job level. The user will need to define the default to steps for the moves.
    When turned on, then when Jobs are created automatically ...via CTO or Planning, the serial will be turned on.
    The current functionality of serial number generation and uniqueness is used. Auto-generation and association at the time of job creation via Mass Load is added with this functionality. Also import of serials from 3rd party systems is supported.
    The serial association can occur anytime during or after job creation. Users can use pre-generated or on-the-fly serial numbers. This association is also not tied to job quantity and is changeable until assigned to a specific unit.
    Once the job is 'Serialized', you cannot transact this job through any of the Desktop forms. A new Menu structure is added in the Mobile Applications called 'Serialized Assembly and Material Transaction'.
    Users utilize the mobile pages under this menu to perform serialized move or completiontransactions.
    These assembly items for which the serial numbers are associated at the time of creating the wip job itself can be transacted only through Mobile Supply Chain Applications (MSCA) .

  • 11.5.10 : LOT나 SERIAL CONTROL ITEM을 ROI 통해 RECEIPT 하는 방법은?

    제품 : MFG_INV
    작성날짜 : 2006-05-18
    11.5.10: LOT나 SERIAL CONTROL ITEM을 ROI 통해 RECEIPT 하는 방법은?
    ==============================================================
    PURPOSE
    Receiving Open Interface(ROI)에서 Lot나 Serial 정보를 위해 사용하는
    interface tables은 무엇인지 알아본다.
    Explanation
    Serial 및 Lot을 control 하는 item을 Receiving Open Interface(ROI)를 통
    해 Delivery, Correction, Return 작업을 하기 위해서는 기존에 사용하던
    rcv_headers_interface,rcv_transactions_interface table 외에 아래 두
    tables에도 data가 입력되어져야 합니다.
    mtl_transaction_lots_interface,
    mtl_transaction_serial_numbers_interface
    이 주목할 만한 변경은 새로운 ROI functionality를 충족하기 위해 11.5.10,
    SCM_PF.J/11i.PRC_PF.J 에서 만들어졌다.
    많은 dependencies 때문에 이 새로운 ROI functionality는 이전 version을
    위한 backport는 불가능하다.
    Example
    1.Serial Controlled item인 경우 :
    INSERT INTO MTL_SERIAL_NUMBERS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    FM_SERIAL_NUMBER,
    TO_SERIAL_NUMBER,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'sr000016',
    'sr000016',
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    2. Lot Controlled item 인 경우 :
    INSERT INTO MTL_TRANSACTION_LOTS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    LOT_NUMBER,
    TRANSACTION_QUANTITY,
    PRIMARY_QUANTITY,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'lt2002',
    1,
    1,
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    3. Serial과 Lot Controlled item인 경우:
    INSERT INTO MTL_SERIAL_NUMBERS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    FM_SERIAL_NUMBER,
    TO_SERIAL_NUMBER,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'sr000016',
    'sr000016',
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    INSERT INTO MTL_TRANSACTION_LOTS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    LOT_NUMBER,
    TRANSACTION_QUANTITY,
    PRIMARY_QUANTITY,
    SERIAL_TRANSACTION_TEMP_ID, --link to mtl_serial_numbers_interface
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'lt2002',
    1,
    1,
    MTL_MATERIAL_TRANSACTIONS_S.CURRVAL, --link to mtl_serial_numbers_interface
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    Reference Documents
    Note 301281.1

  • User Account Control Problems with Premier Elements 7 32 bit in 64 Bit Windows 7

    I found User Account Control Problems in other forums but didn't see much in Premiere Elements, so I hope this helps others who may be having problems with 32 bit programs in a 64 bit computor. When I first got my 64 bit I didn't have problems.
    Back in February I bought a Quad Core Desktop with Windows 7 64 bit. Haven't been on the forum for 7 months since I wrote in regarding importing video with the Pyro AV Link (Premiere Elements Tips and Tricks). I was having problems importing video which started after March 28 sometime, as that was the last time I didn't have a problem importing VHS. Took me a few months off and on to find out what worked.
    I started uninstalling Windows updates and any programs I had installed back to that point in time. Checked after uninstalling each item. The capture screen would come up on a delayed basis but clicking on capture did nothing. Although no driver is required for IE1394 (so they say) I read where some people using the Legacy driver had fixed some problems, so I switched to the Legacy. Seemed to work great (for a few minutes).
    I had even uninstalled and reinstalled PE7 but no difference. Finally I noticed a shield in the PE7 Desktop icon. Thats weird. Never had that before. Just decided to show up after I had done all of the stuff I mentioned. Turns out at some point in time since I've had the computor Windows 7 decided to flag my 32 bit program as misusing the 64 bit system. User Account Control. I never bothered too much with UAC and just clicked on the yes box wen it popped up asking if I wanted this or that to take control of my computor. I tried using the minimum setting for safety reasons, and then finally turned User Account Control off. Bingo! PE7 capture works again and still working.
    While I am not recommending that people arbitrarily turn UAC off, this appeared to be my problem. I would recommed that they try turning it off before uninstallin a bunch of stuff. Having a restore point may or may not have been a fix for me. I think one of the Windows Updates caused the problem but I am not going to uninstall any more stuff at this point, I have not been back on the internet or installed any more updates in my desktop. I am going to use my laptop for internet and used the desktop for video.
    I am guessing this could be a problem for any 64 bit systems trying to use 32 bit programs. IE: XP,Vista,Windows 7 64 bit. In Vista there is also Data Execution Prevention (DEP) which you can turn on or off, supposedly to prevent misuse of memory (as I understand it), but Win7 either doesn't have it or I haven't found where it's located.
    Maybe this has been covered in the forum somewhere and I missed reading it. Hope I am not too confusing. Anyway, whatever feedback you guys have would be great.  

    John,
        Thanks for your answer, and I did check out the link you suggested. However, I have Windows 7 Home Premium as most people have I think, and the XP program was not available. I started with Vista and now have Win 7. I never could navigate around in XP anyway so am content to just leave User Account Control off.
        Interesting side note to turning UAC off is that my desktop seemed to be using more of the CPUs, where half of them were "Parked" as I wrote in also about 7 months ago when I 1st got my desktop. I am pleased to say that video processing seems to go quicker with UAC off. Have to observe things some more to confirm.
        I just thought if others were having problems after installing Windows Updates and leaving UAC off worked then they could possibly pinpoint a problem.

  • How to know that item is serially controlled or not ?

    Hi,
    How to know that the ordered item is serially controlled or not ?
    In which tables we have refere to know that ?
    Thanks

    --If the item is only serial number controlled and not lot number controlled
    select serial_number from mtl_unit_transactions a, mtl_material_transactions b, wsh_delivery_details c
    where a.transaction_id=b.transaction_id
    and b.trx_source_line_id=c.source_line_id
    and c.source_header_number=&order_number
    and b.transaction_type_id=33 --34 if it is internal order shipments
    OR (If it is lot and serial number controlled)
    select serial_number from mtl_unit_transactions a, mtl_material_transactions b, wsh_delivery_details c, mtl_transaction_lot_numbers d
    where b.transaction_id=d.transaction_id
    and a.transaction_id=d.serial_transaction_id
    and b.trx_source_line_id=c.source_line_id
    and c.source_header_number=&order_number
    and b.transaction_type_id=33 --34 if it is internal order shipments
    Thanks
    Nagamohan

  • Urgent : Handling of serial control items

    Hi All,
    I had developed a concurrent program to automate the process of updating the quantity on hand and average cost whenever a new inventory org is created.
    My code is inserting data in mtl_transactions_interface table and after that the Interface manager is taking care of things.
    But there are items which are not getting picked from mtl_transactions_interface table and the error is 'For this transaction row the serial records are missing’. Can anyone please advise how to handle the serial control items and what is the specific check needed for these. If anyone has the code for this it would be of great help.
    I need this on an urgent basis. Any help will be really appreciated.
    Regards,
    Shruti

    Hi All,
    We have a requirement wherein whenever a new inventory org is created the quantity on hand needs to be moved & average cost need to be copied from an existing org to a new org with in Oracle. This is currently a manual process and we are automating the same.
    For this we are populating the MTL_TRANSACTIONS_INTERFACE table.
    The process works fine for normal items but whenever we use this for a serialized item (populating the MTL_TRANSACTIONS_INTERFACE and MTL_SERIAL_NUMBERS_INTERFACE , it gives the errors
    ‘Invalid status in STD_GRP’
    ‘SubInv does not match’
    in the MTL_TRANSACTIONS_INTERFACE table.
    If anybody has come across this or has any idea about this please provide some pointers. It would be really helpful as its getting very urgent now.
    Regards,
    Shruti

  • Control problem

    I create a swf by Flash locally which point to a flv in a
    remote flash media server, FLVplayback component included, it work
    fine locally. Uploaded to FMS3, played without the control problem,
    such as Play/Pause, seek bar.
    Is it something I need to configure in FMS, or in Flash.
    Please advice.
    Thanks!

    Between version 1.0 and 2.0 the API in the JBCL controls has
    changed. We are actually moving away from JBCL completely (please
    do send feedback if you have a comment on that) to a Swing and
    Infobus standard based library of visual JavaBeans.
    You will still be able to use the JBCL controls in JDeveloper
    2.0. The best thing to do is to take your 1.x based application
    AND the 1.x based JBCL.ZIP file into your new environment. This
    way you will be able to continue to use these apps and
    components. Taking the 1.x JBCL.ZIP file will make sure you have
    the same version of the JBCL library that you were used to in
    version 1.x.
    Hope this help,
    -Roel.
    Hans Duijn (guest) wrote:
    : Hi,
    : I developed an applet in v1 that worked fine. I tried to
    rebuild
    : the applet in v2 but some problems occured. One, The
    : ChoiceControl populated with the method
    : 'ChoiceControl1.setItems' but in v2, this does not work till a
    : explicitly called 'queryDataset.open'. Is the way to do it or
    do
    : I have to use special properties for the
    dataset...and...second,
    : I'm using an listControl that, in response to a selected item
    in
    : the ChoiceControl, changes frequently. No new list appears till
    : I update the applet the hard way (hide it and bring it to
    front)
    : or click the mouse on the hidden items. 'listControl.repaint()'
    : has no result. Am I doing something wrong? It worked in v1...
    : and third...when can we expect the final version 2?
    : Thanx.
    null

  • Aperture 2 install - serial number problem

    Disclaimer: I'm pretty good on a pc. Absolutely terrible on Mac, never had so many problems with tech :/
    So...I have my serial number from the back of the Aperture 2 "Installing your software" booklet. Checked that I'm entering "I's" not "1's." Got dashed between the sequences. Capslock on etc. Searched forum, quite a few posts on serial number problems. None matched.
    Enter serial number. Second window pops up stating I've entered an upgrade serial number (I only have the expired trial version of Aperture installed), and requesting my "serial number."
    I'm lost now. Checked my original docs, there's nothing on Aperture trial version. Fired up the trial and I see what looks like a license key (to Apple, not me) on the launch screen. That's not accepted by Aperture 2.
    Any thoughts on this appreciated.

    M_Austin wrote:
    Thanks, think you solved this Wish the label said something like that, the box only says Aperture 2, not upgrade license. So I'm guessing I have to pay $199, and keep this $99 package to upgrade it? I hope not. I'll ask at the store.
    There is a tiny label on the bottom edge of the box. Mine says "Aperture 2.0 Retail". The tiny label on my box for Final Cut Express 4 says "Final Cut Express 4.0 UPG". Does yours not say "UPG" on that little label? If not, you should be able to return it for the full version (plus pay the difference, of course). If it does say "UPG" you might be out of luck as most open software can't be returned.

  • Serial Control Issue

    Dear
    we are facing a Performance issue in serial control items...
    like
    while receivng a material to the inventory
    and
    while issuing a material to the sales order
    the management has decided to proceed to no serial control
    before proceeding to that i like to the impact after changing that
    Note:We have Qunatity with serial contal and pending sales order
    Its urgent pls Seniors need ur advice.
    Thanks
    Mujeeb Ahmed

    Dear
    we are facing a Performance issue in serial control items...
    like
    while receivng a material to the inventory
    and
    while issuing a material to the sales order
    the management has decided to proceed to no serial control
    before proceeding to that i like to the impact after changing that
    Note:We have Qunatity with serial contal and pending sales order
    Its urgent pls Seniors need ur advice.
    Thanks
    Mujeeb Ahmed

  • Decimal Quantity Receiving in Serial Control Item

    HI ALL,
    Can anyone explain, how can i receive decimal quantity in case of serial control item ? I want to receive quantity in decimal while system is showing error.
    Plz provide any solution or workaround of the issue.
    Regards,
    Fahd

    Decimal quantity for a serialized item is unusual.
    You should put the item on lot control.
    Sandeep Gandhi
    Independent Techno-functional Consultant
    Omkar Technologies Inc
    513-325-9026

  • Pls help me with  Mac and had a trial  serial number problems

    Hi,
    I downloaded first the trial version of Photoshop, after 30 days finished but the icon still remained.
    Now, when purchased a creative suite 4 Designe premium, installed, all programs are fine, just the photoshop not working, asking for serial number but when I type the right numbers, doesn`t accept.
    What can I do? any idea?
    to uninstall the photoshop and install again?
    but if I have the other programs working and installed?

    Hi,thank you, that is fine, just not so quick but I resolved the problem alone.Thanks anyway you helped me.Eva
    Date: Sat, 1 Aug 2009 11:53:58 -0600
    From: [email protected]
    To: [email protected]
    Subject: Pls help me with  Mac and had a trial  serial number problems
    Hello, Eva. For CS4 problems, you need to ask in the Photoshop forum (this is the Photoshop Elements forum). It's here:
    http://forums.adobe.com/community/photoshop/photoshop_macintosh
    Good luck!
    >

  • Component Pick Release - Lot, Serial and 'Lot & Serial' Controlled Items

    Hi All,
    Please help understand how Component Pick Release handles Lot, Serial and 'Lot and Serial' Controlled component items.
    Regards,
    Abhishek

    This message pops up, if the supply subinventory has "Allow Reservation" checked. But since you have mentioned that you have checked that. Unable to think of anything else.
    Since the pickset option is turned on, move orders will be generated only if stock is avl for all the components. So, mention as you have already, ensure if avl mtl has been reserved already.

  • Serial number problems for cs5

    I'm having problems installing CS5 on my macbook air.

    Can you explain more specifically what your problem installing CS5 is?  What are the serial number problems?

  • How to use OE_ORDER_PUB.PROCESS_ORDER API for serial controlled items?

    Hi Guys
    We are using OE_ORDER_PUB.PROCESS_ORDER API with a custom application (R12 12.0.4/12.0.6) for booking sales orders. Right now we don't have serial controlled items, however pretty soon, we will launch medical equipment sales for which we have to start using serial controlled items.
    Anybody has a sample script for the API dealing with serial controlled items?
    Regards,
    Raj

    What kind of serial number related information do you capture during order creation?
    Most businesses either generate serial numbers at the time of Sales order issue OR at wip completion.
    Sometimes a serial number is generated at WIP assembly begin.
    In any case, as long as you don't ALLOCATE serial numbers to a sales order at the time of entry or booking or reservation, you won't need to worry about serial# for oe_order_pub.
    The serial# will come into picture for RMA processing. For that, you can use l_lot_serial_tbl_out oe_order_pub.lot_serial_tbl_type in the oe_order_pub. This will let you record the serial number for the product that is being returned.
    Sandeep Gandhi

Maybe you are looking for

  • Triangle on message

    In reply to your reply to my question on triangle showing up on some of my messages to people. This has been happening to some messages never all messages just a few and the recipient does recieve the text. But has been happening last couple weeks. A

  • Assigning a login module to a single WebDynpro to authenticate against LDAP

    Hi there, we are running the J2EE Engine 7.0 within XI on SAP NetWeaver 2004s / Linux x86_64. Basically, i want to Authenticate a Java WebDynpro against an LDAP (Active Directory). With the XI Usage installed, I can not customize the UME to authentic

  • Purchase price for components in service orders

    Dear Fellow SAPPERS, I did not find any separate forums for service management nor did I find anything for plant maintenance. As a result I have to post it in this forum since SM/CS uses lot of settings from SD. If you do not find this relevant, plea

  • I have conducted a pinout test and all seems ok... but..

    Hi, I have conducted a pinout test on the power supply of my G4 Dual 500mz (100mz bus) (I think its a Giga ethernet) and it passed all stages, I have checked the battery and reset the pram, I have a steady red LED on the motherboard. When I press the

  • Acrobat X has stopped working

    Acrobat X (which I have on Windows 7 as part of CS6) stopped working after being updated by Adobe Application Manager yesterday - it just won't open. I uninstalled and reinstalled it; it opened once and then stopped working again. I've also started g