Updates and serial number

After I download the updates FCS (Color), it ask for the serial. I put in the serial that I used to install it, but now it says the serial number is invalid.
Any thoughts?

Hi,
I have the same problem. After going through loads of forums did not find a solution that would work.
I recently updated to proapps 2008-03 as well as some other updates (incl. quicktime 7.5.5) with Software Update. After that the FCS2 applications ask for a serial nr., but will not accept the original one (Live Type works without serial nr. though). I'm absolutely sure that the serial nr. worked when I first time installed FCS2. I've updated before as well without problems (proapps 2008-001, I think)
I have tried deleting the Final Cut Studio System ID in library/application support/proapps, but didn't make any difference. Only thing I could think of is that I don't remember exactly what name and organization I typed when I first time licensed the FCS2. I guess that should not be an issue though. I have not moved any of the applications from the applications folder at any point.
Hope someone could shine some light on this problem.
BTW, re-installing the whole suite will not work for me as I'm working on another side of globe from the original discs and I really need to get things done here, and soon.
Maybe there is some way of uninstalling the update and going back to previous version?
MM

Similar Messages

  • 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

  • HT4972 i got my new iphone 4s , can not download the OS 5 it says error 9006 on my windows 7. also the phone does not show the capacity and serial number details on the itunes summery ?? please help

    i got my new iphone 4s , can not download the OS 5 it says error 9006 on my windows 7. also the phone does not show the capacity and serial number details on the itunes summery ?? please help

    Hi Kevin,
    The iPhone 4S comes automatically loaded with iOS 5, and any updates after iOS 5.0 can be completed directly from on the phone in Settings > General > Software Update. If you are having trouble using iTunes to update software, I suggest you reset iTunes so that you can pair your phone to the computer again, because if you can't see the serial number and capacity, that generally means your phone isn't paired.  For any problems this doesn't fix, please contact Apple directly through their automated help line, 1(800)MYAPPLE.

  • S30 Machine type and Serial Number are INVALID

    Hello, I am wondering if I can get some help here.A while back I had a motherboard replaced by lenovo service. The machine arrived turned on once and then it died.Once the tech left the machine was used a handful of times and then stored. I a now working on it and I noticed this screen, which appreared after the mobo replacements.  Iam wondering if anyone knows how to fix this issue. What is Error 00CE really saying? Thanks  

    It's really saying what shows on the screen there....the serial number and machine type are invalid.  My guess is the tech that replaced your board did not update the MTM/SN fields when he flashed BIOS on the new board (if he flashed BIOS at all), and those fields are still listing the defaults that are populated by the board manufacturer.
    Run the latest DOS BIOS flash package (I think current BIOS is 45 maybe for the A0 branch), and when prompted, enter the correct information from your system for the machine type and serial number.  That should alleviate the POST error you're seeing.

  • Stock Mismatch at Plant level and Serial Number Collection

    Hi,
    I'm working on with the material stocks in my application. For the serialised material (MATNR = 50004050), I'm gettting the plant level stock as 20 and the corresponding serial numbers collection for the same material is 27 which is wrong. Since the plant level stock and the serial number collection should be one and the same
    I'm using MARA, MARC table for getting the plant level stock and EQUI and EQBS table to get the serial number collection. If I increase the stock using the transaction 'MB1C' and movement type '561', the serial numbers which I'm giving for the serialised material is coming in the serial number collection but the plant level stock still in the previous value itself. If I raise the stock for the serialised material, the plant level stock also should get updated.
    Please let me know, how can I get the stock equal in both plant and serial number collection.
    Thanks in Advance,
    Mohan.

    This could happen, if the status of serial number is wrongly updated to ESTO. From where are you taking serial numbers?Physically what is right the qty showing plant stock or the qty showing serial number? May be you go and check the history of the serial number to see if it is really available in stock.
    Also it can be serial number is optional so though the stock is reduced but serial number is not captured while issuing so the stock at plant level is less but serial number is more,
    If this is the case, reconciallation directly from tables will be difficult.
    Regards
    Sangeeta
    Edited by: Sangeeta Khurana on May 4, 2011 12:34 AM

  • K450e motherboard replaced now says error code 00ce machine type and serial number invalid

    Hey guys i just got a replacement motherboard, after motherboard was replaced on bootup the computer says error code 00ce: machine type and serial number are invalid. How do i get rid of this error it was replaced by the same motherboard type that was previously in the system. How can i reset the bios or enter the serial etc? Lenovo tech support was no help.

    Hi Qjafri829,
    Welcome to Lenovo Community!
    As per the query we understood that you are facing issue with serial number invalid error in your k450e desktop.
    As the motherboard been replaced the serial number and MTM number must be updated this is a new motherboard, you can visit to the nearest authorized service center for the serial number update in the BIOS.
    Click here to open a link where you can select the country and get the exact contact support number. I’m sure
    they will be a great help.
    Hope this helps. Do post back if issue persists!
    Best regards,       
    Ashwin.S
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Get Ibase from Model Number and Serial Number

    Hi Experts,
    Please can you help me in getting the existing Ibase Number based on Model Number and Serial Number.
    It is appreciated if you provide me the standard FM's if available and standard tables.
    Thanks in Advnace.
    Raja.

    Hi Naresh,
    It is almost solving the issue but for the same model number there are multiple product_guids.Then how to come to know that is the exact Ibase.
    The exact the requirement is
    The user will send an excel file which consists of Model Number ,Serial Number and other Custom fields.
    Depending on the Model and Serial Number we need to get an Ibase and Component.
    then we need to update the existing ibase and component with custom fields.
    So can you help me in updating the custom fields data from excel file to the existing Ibase.
    Outline : Finding the Ibase and component
                   updation to the existing Ibase and component.
    Thanks In Advance,
    Raja.

  • Material Number and Serial Number are not getting filled...Very very urgent

    I have my code in the badi...CRM_EQUI_LOAD...method PERFORM_LOAD.In this i try to to create a component for the ibase using the function module... CRM_ICSS_CREATE_COMPONENT...The component gets created but the material and serial number are not getting updated...It is very very urgent..please help....

    I am not sure what information you are passing in given FM.
    But in my case I have used FM 'CRM_CREATE_IBASE_FROM_EQUI' to create Ibase and component. It creates IBase and Component along with other details like material number and serial number.
    you may refer the below code for the same >
    Call the standard handling for crm equi load.
      call function 'CRM_CREATE_IBASE_FROM_EQUI'
        exporting
          is_header         = is_header
          it_equi_dmbdoc    = it_equi_dmbdoc
        changing
          et_error_segments = ct_error_segment
        exceptions
          technical_error   = 1
          others            = 2.
      if sy-subrc <> 0.
        raise equi_load_badi_error.
      endif.
    Cheers,
    Ashish

  • Develop module is disabled in LR5. How do I activate my LR5 installation. I have a physical DVD and serial number.

    Hi
    I have a physical copy of a LR5 update. But I am unable to use it because the trial version is expired now and I don´t know how to enter the serial number.
    Any idea?

    Moving this discussion to the Photoshop Lightroom forum.
    Giannisolis have you utilized the option to License this Software?  This will give you the opportunity to enter your Adobe ID and serial number.  The License this Software option is available on the trial expiration screen.

  • 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

  • HT4007 I have lost my original disk and serial number

    I have lost my original disk and serial number, what can I do?

    Do you need to reinstall or only need the serial number?
    To retrieve the serial number - if Aperture is still running on any Mac you own, you can see the serial number in the "About" panel when Aperture is running:
    From the main menu bar:  Aperture > About Aperture.
    If you do no longer have a running Aperture installation to retrieve the serial number, contact Apple with a proof of purchase and ask for a replacement serial number, see these links as to what is considered to be a proof of purchase:
    Pro Application Replacement Serial Numbers: http://support.apple.com/kb/HT1861
    If you need an installer to reinstall Aperture without CD/DVD, download the Aperture Trial:
    You can download the Aperture Trial here:
         Aperture 3.1 Trial
    Delete your current Aperture version from the Applications folder, then run the Trial installer and immediately update using "Software Update" from the -menu.
    Then launch Aperture and enter your serial numbers, all while signed in as an administrator.
    Regards
    Léonie

  • I have had  adobe creative suit 6 design standard for 2 years and all of the sudden it would not open. I do not have the windows disc anymore however i still have the product code, number and serial number. is there anyway to get my photoshop back?

    I have had  adobe creative suit 6 design standard for 2 years and all of the sudden it would not open. I do not have the windows disc anymore however i still have the product code, number and serial number. is there anyway to get my photoshop back?

    uninstall, clean and reinstall per Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    for the installation file(s):
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Can I download Adobe Creative Suite 5.5 Design Premium on a new Mac if I've had it installed on my old one since December 2011? I have the product key and serial number.

    I bought a new Macbook Pro 13 inch in December 2011 and I bought the Adobe Creative Suite 5.5 Design Premium shortly after and installed it on the computer.  The other day my friend spilled his drink on my computer and it is now going to cost me $800 to get it fixed so I am considering getting a new one instead of getting mine fixed I'm not sure if the memory is still ok or not either.  It didn't get that wet and Apple told me it is more than likely ok but there is no guarantee that they are going to keep the memory when they fix it.  So I was wondering if I get a new one if I can install the Suite on the new one I still have the product key and serial number for the Suite.  Or if I decide to get mine fixed and the memory is swept, then can I reinstall it on mine after it is fixed?  If anyone can help me it would be greatly appreciated!!! Thank You

    deactivate your installation on your old computer (help>deactivate).
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I bought Photoshop CS6 Extended(education edition) for Mac. Now ik want to install it on my (new) macbook. I have the product code and serial number. I receive an error code: may be a false copy. How can I install this program?

    In 2012, I bought Photoshop CS6 Extended (education edition) for Mac. Now I want to install it on my new Macbook. I have the correct serial number and product code, but I receive an error message: the software may be a false copy etc....What to do?

    Here is a copy of the error
    This means : Installation failed.
    Verification of the Adobe Software failed
    The product you want to install is no valid Adobe product and seems to be falsified.
    HUgo
    Op 29-aug.-2014, om 23:42 heeft Jeff A Wright <[email protected]> het volgende geschreven:
    I bought Photoshop CS6 Extended(education edition) for Mac. Now ik want to install it on my (new) macbook. I have the product code and serial number. I receive an error code: may be a false copy. How can I install this program?
    created by Jeff A Wright in Downloading, Installing, Setting Up - View the full discussion
    Hugo please turn off your e-mail signature.
    If your serial number is listed as being valid at http://www.adobe.com/ then I would recommend obtaining a fresh copy of the installation files.  You can find details on how to locate your serial number at Find your serial number quickly - http://helpx.adobe.com/x-productkb/global/find-serial-number.html.
    To download a fresh copy of the installation files please see Download CS6 products.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6685617#6685617
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • My iPhone was stolen and I have the IMEI and serial number. Will I still be able to find it?

    My iPhone was stolen and I have the IMEI and serial number. Will I still be able to find it?

    Thanks. Yes. But somehow it's already turned off by the thief. I am just hoping he goes to an area with free wifi to transmit the lost phone mode. I'm giving it a few weeks and i hope that the new iOS 7 function will work. That they won't be able to reset my phone without my apple id & password. I just wish I downloaded the app iHound before.
    Oh and I called up our national telecommunications commission and they'll be able to disable my phone's function through my IMEI.

Maybe you are looking for

  • Cannot remove  Icon from desktop

    I had to copy some files from an SD onto my desktop for a class project and now no matter what I do the folder for the SD card wont go away. I can't eject it or put it in the trash or anything. I no longer have access to the SD card to try to re-ejec

  • I need help with XML Gallery Fade in out transition. somebody please help me :(

    I need help with XML Gallery Fade in out transition. somebody please help me I have my post dont want to duplicate it

  • I am trying to alter files in the cloud.

    I am trying to alter files in a joint work cloud, and every time the computer asks for my password then tells me I don't have permission even though I have been given full administration from our server.  I literally can not do my work.  Help please.

  • Mass settlement of internal orders

    Dear guru   while executed TC -KO8G for  mass settlement of I/O  in the first screen  in selection variant i have given SAP&01 the error is You cannot use this transaction type to post to this asset.WWhat procedure to be followed. Thanks Shivaji

  • Smartform for GR Collective receipt Output parameter/Processing routine

    Dear Friends, We would like print GR Collective slip(WE03) using smart form MMGR3_A. I am not clear about the following information. Appreciate, some one can help in configuring this. Layout Module     :?? SmartForm Name : MMGR3_A Program Name     :