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.

Similar Messages

  • Customize Movement Type : Reverse is not update the Serial No Status

    Hi All,
    Customize Movement Type : Reverse is not update the Serial No Status from ECUS to ESTO when reverse Delivery Order movement document.
    Mind to guide where to check this configuration problems.
    Thank you.

    Hi All,
    For the Customization Movement Type, Initial plan is copy from 602 but found out below different on Trans./ev serial no. Not sure the problems is from this site > How to change the configuration.

  • LC 8.0 Win2003server installation with turnkey. how to update the serial number

    good morning
    could anybody give me an idea howw to upadet the serail number of a trial version of livecycle 8.0. adobe gave me a LC 8.0serial number. the serial number had expired. I update it with configuration manager with a new serial number , adobe gave me, it worked. but immediatly after i updated th e8.0 version with the sp2 of LC 8.0. and the serial number went back to th eold one. and when i try the configuration manager , i gave me no screen wher i can update the serial number.
    help me please.
    best regard.
    JPW

    good morning
    could anybody give me an idea howw to upadet the serail number of a trial version of livecycle 8.0. adobe gave me a LC 8.0serial number. the serial number had expired. I update it with configuration manager with a new serial number , adobe gave me, it worked. but immediatly after i updated th e8.0 version with the sp2 of LC 8.0. and the serial number went back to th eold one. and when i try the configuration manager , i gave me no screen wher i can update the serial number.
    help me please.
    best regard.
    JPW

  • Unable to update the serial number through bdc in Sales Order

    Hi experts,
    I written the inboud FM for to update the 3rd party items serial number to the sales orders through BDC Call transaction Method.
    Here i am facing a problem when i have the 19 item Quan ,it is updating correct through idoc , when ever there is moe than 19 and at that if any serial number repeated for that if i am changing at that time it is loosing the control of the BDC and giving the control to the salesorder screen.
    how can i handle that control again has to come to BDC prgrm......
    Thnks,
    Regards,
    Bharani

    Hi,
    Can you please let me know the segment in ORDERS05 Idoc to process the Payment card information and if the standard Function Module can handle the creation of a Sales Order with data for Payment Card.
    We have a requirement to map the Tokenized Number of the Credit Card send from a store front end to ECC mapping via SAP-PI.
    Thanks in Advance,

  • IB:How to update a serial Number which has Inventory Material Transactions?

    Dear friends
    first of all thanks for your time and valuable solutions
    Install base: How to update a serial Number which has Inventory Material Transactions
    problem description:
    Install base > quick search
    Here is Installbase record, when I query from quick search
    Rec#     Item          Item Instance           Serial Number          Status
    1     300-7000-01      3000000           1000XXX-0538JQ0003 Return for Adv Exchange
    2     300-7000-01     8000000               1000XXX-0538JQ0003-     Return for Adv Exchange
    3     300-7000-01     5000000               1000XXX-0538JQ0003-A     Return for Adv Exchange
    looking above data, first and third records are the legitimate serial numbers(correct according to the client specs), second record is not legitimate since it has a dash as suffix, we found there are many illegitimate serial Numbers exists, needs to be updated with the right serial Numbers which I analyzed in excel after pulling data from mtl_material_transactions , oe_order_lines_all , mtl_serial_numbers , mtl_system_items_b
    basically these are all RMAs
    I need to update the second record as 1094SUZ-0538JQ0003-B as per the guidelines, while updating I need to keep all the existing contracts, Warranty, what ever material transations it has, need to be same.
    we have a package updating the serial numbers using IB API (csi_Item_Instance_Pub.update_item_instance) but it is updating only the records which has no serial numbers present for that instance, if there is a serial number already exists it is not working.
    user define error msg "Serial Number 1094SUZ-0538JQ0003- has Inventory Material Transactions. This serial number cannot be used to update an existing Item Instance", but I need to update this anyway!! or am I missing something here, please advice me
    below post looks like similar issue, talks about hard update, I have no clue, by doing that the updated serial number will have same transations, contracts, dates....attached to it like the previous serial number
    IB UPDATE_ITEM_INSTANCE ERROR - doesn't allow ACTIVE_START_DATE to change
    would be great If you guys help me out, really appreciated!!
    unfortunately I couldn't find any solutoin in metalink for the existing serial number update
    code for updating the serial number using IB API
              x_msg_count := 0;
    x_msg_data := '';
    p_instance_rec.instance_id := rec.child_instance_id;
    p_instance_rec.serial_number := rec.child_serial_number;
    p_instance_rec.object_version_number := rec.child_object_number;
    p_txn_rec.transaction_id := Fnd_Api.g_miss_num;
    p_txn_rec.transaction_date := SYSDATE;
    p_txn_rec.source_transaction_date := SYSDATE;
    p_txn_rec.transaction_type_id := 1;
    csi_Item_Instance_Pub.update_item_instance
    p_api_version => 1.0,
    p_commit => Fnd_Api.g_false,
    p_init_msg_list => Fnd_Api.g_false,
    p_validation_level => 1,
    p_instance_rec => p_instance_rec,
    p_ext_attrib_values_tbl => p_ext_attrib_values_tbl,
    p_party_tbl => p_party_tbl,
    p_account_tbl => p_account_tbl,
    p_pricing_attrib_tbl => p_pricing_attrib_tbl,
    p_org_assignments_tbl => p_org_assignments_tbl,
    p_asset_assignment_tbl => p_asset_assignment_tbl,
    p_txn_rec => p_txn_rec,
    x_instance_id_lst => x_instance_id_lst,
    x_return_status => x_return_status,
    x_msg_count => x_msg_count,
    x_msg_data => x_msg_data
    Thanks
    Suri

    Suri
    Used this. May not be perfect but should get you there. Only if the table is registered (all the seeded tables should be registered) this will work.
    select distinct a.table_name,b.column_name from fnd_tables a, fnd_columns b
    where a.table_id=b.table_id
    and upper(b.column_name) like '%SERIAL%'
    Also this is very old one but if you need history for this change add the history insert logic as well..
    DECLARE
    l_return_err VARCHAR2 (80);
    PROCEDURE debug (p_message IN VARCHAR2)
    IS
    BEGIN
    dbms_output.put_line (SUBSTR (p_message, 1, 255));
    END debug;
    BEGIN
    debug('======================================================================');
    debug('Switching from serial number XDT07406. to XDT07406 ');
    debug('======================================================================');
    UPDATE fa_additions_b
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in fa_additions_b updated :'||sql%rowcount);
    UPDATE fa_mass_additions
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in fa_mass_additions updated :'||sql%rowcount);
    UPDATE rcv_serial_transactions
    SET serial_num = 'XDT07406'
    WHERE serial_num = 'XDT07406.';
    debug('No of rows in rcv_serial_transactions updated :'||sql%rowcount);
    UPDATE mtl_serial_numbers
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in mtl_serial_numbers updated :'||sql%rowcount);
    UPDATE mtl_unit_transactions
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in mtl_unit_transactions updated :'||sql%rowcount);
    UPDATE csi_item_instances_h
    SET new_serial_number = 'XDT07406'
    WHERE new_serial_number = 'XDT07406.';
    debug('No of rows in csi_item_instances_h updated :'||sql%rowcount);
    UPDATE csi_t_txn_line_details
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in csi_t_txn_line_details updated :'||sql%rowcount);
    UPDATE csi_item_instances
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in csi_item_instances updated :'||sql%rowcount);
    UPDATE wsh_delivery_details
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in wsh_delivery_details updated :'||sql%rowcount);
    debug('======================================================================');
    debug('Switching from serial number jct20591 to JCT20591 ');
    debug('======================================================================');
    UPDATE fa_additions_b
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in fa_additions_b updated :'||sql%rowcount);
    UPDATE fa_mass_additions
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in fa_mass_additions updated :'||sql%rowcount);
    UPDATE rcv_serial_transactions
    SET serial_num = 'JCT20591'
    WHERE serial_num = 'jct20591';
    debug('No of rows in rcv_serial_transactions updated :'||sql%rowcount);
    UPDATE mtl_serial_numbers
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in mtl_serial_numbers updated :'||sql%rowcount);
    UPDATE mtl_unit_transactions
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in mtl_unit_transactions updated :'||sql%rowcount);
    UPDATE csi_item_instances_h
    SET new_serial_number = 'JCT20591'
    WHERE new_serial_number = 'jct20591';
    debug('No of rows in csi_item_instances_h updated :'||sql%rowcount);
    UPDATE csi_t_txn_line_details
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in csi_t_txn_line_details updated :'||sql%rowcount);
    UPDATE csi_item_instances
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in csi_item_instances updated :'||sql%rowcount);
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_return_err :='Updating in one of the script has this error:'|| substrb(sqlerrm, 1, 55);
    debug('Value of l_return_err='||l_return_err);
    END;
    Thanks
    Nagamohan

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

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

  • I need to reinstall my CS3 creative suite I bought with a student license.  It allows me to install but never asked for the serial number.  I can open the programs but can not use them, get a "Adobe updater quit unexpectedly" message.

    I bought a CS3 creative suite on a student license in 2008.  The original MAC laptop has died and I am trying to install it on a MAC desktop.  the programs installs successfully but never ask for a serial number.  the programs will open but I can not open any files,  I get a Adobe Updater quite unexpectedly message.  Is this because the serial number has not been entered? I have tried chat about this problem twice, also use Adobe connect and was not helped. How do I enter this serial number?

    activate is grayed out.  Registration is available and when I select it, it says "A problem was encountered while trying to send the information over the internet"  So I select "submit again" and nothing happens.  Then the program closes and I get the added updater quite message. 

  • I just updated to XI, but it will not accept the serial number [Was: Penny - secretary]

    I just updated to XI, but it will not accept the serial number

    Hi there
    If you have purchased an Acrobat XI upgrade you will be prompted to enter the Acrobat XI serial number first then the serial number for the prior version.
    Which serial number isn't being accepted?  Please provide more details and send me a private message with both serial numbers so I can check further.
    Thanks
    Bev

  • Adobe wont update my CS 5, it says i have the wrong serial number.  I have 2 serial numbers with my account, how do i switch the serial number in CS 5 to the other number?

    Adobe wont update my CS 5, it says i have the wrong serial number.  I have 2 serial numbers with my account, how do i switch the serial number in CS 5 to the other number?

    David,
    To switch, I am afraid you will have to reinstall using the other one.
    But that should hardly be necessary.
    If you can find no way, you may try a chat here,
    Creative Cloud support (all Creative Cloud customer service issues, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html
    or Adobe Support (phone) here,
    http://helpx.adobe.com/adobe-connect/adobe-connect-phone-numbers.html

  • I find that I am unable to receive updates.  When I try to re-install, the serial number is not recognized.  I have a retail, boxed, full-version of PS6.

    I find that I am unable to receive updates.  When I try to re-install, the serial number is not recognized.  I have a retail, boxed, full-version of PS6

    Call Apple or an Apple Store in your city and ask them.  Or do a Google search.

  • I am trying to re install my lightroom student addition.  I have the serial number and was told to do the trial again and then update to purchase. i am unable to figure out how to do this

    i am trying to re install my lightroom student addition.  I have the serial number and was told to do the trial again and then update to purchase. i am unable to figure out how to do this

    Emily5lexi which version of Lightroom are you wishing to install?  Also what operating system are you using?

  • I have CS6 master collection. After update from Windows7 it didn't work. When I try to install again, it says the serial number is invalid. What to do?

    I have CS6 master collection. After update from Windows7 it didn't work. When I try to install again, it says the serial number is invalid. What to do?

    Please refer to the steps in Re: cs6 serial suddenly invalid.
    It should help you.
    Regards
    Rajshree

  • My classic has been stolen. Is there a way to retreive the serial number from Apple? Hasnt been updated for a while tho thats all and I couldnt find it myself?

    My classic has been stolen. Is there a way to retreive the serial number from Apple? Hasnt been updated for a while tho thats all and I couldnt find it myself?

    If you entered it on your support profile: https://supportprofile.apple.com
    Also see: iPod: How to find the serial number - Apple Support

  • I am being asked for a serial number for a software update for aperture.I bought this from the app store and can't find the serial number

    I am being asked for a serial number for a software update for aperture.I bought this from the app store and can't find the serial number.any ideas?

    What exactly does the dialog widow say? Can you show us a screen shot?

Maybe you are looking for

  • RH crash

    With RoboHelp ver7.0 and using Win2000 opening the .mpj results in: "Open project was cancelled or RoboHelp was unable to load database" When I try to "create a new project" then press "finish" the application crashes. This used to work on the system

  • IPhone 4 will not accept incoming voice calls

    I have one Exchange push account running. When no 3G coverage I do not receive phone calls unless I turn off Cellular Data. Caller receive message saying "Not possible to connect call" O2 have tested and agree not working, SIM swapped. Apple Covent G

  • I am trapped in Warranty He!! my laserjet is broken and I cannot get any help

    I have never had an experience like this one, except with my dell m1330, but I digress.  I have an M1319f MFP.  I purchased it on march, but last week the fax died.  I did not have the original receipt in my possession, but the HP website said my war

  • Putting my Intel based iMac to sleep or shut down?

    What are the pros vs cons for this? Thnaks

  • Reading Image Metadata..

    Hi, I am converting some PHP pages to JSP. There is an image gallery page where images are being displayed and also the comment and Author names is displayed under that image.Those things are set as image metadata. The code for doing this in PHP look