Insert/Update problems with form

This is my first time using data entry in Oracle Portal. I followed the example given in the 'Create and event calendar' in the tutorial. i created a simple form and an ID column. I created a sequence and a default value field with the parameter 'nextval' in it as per the example.
The result is that an ID number is created everytime the form comes up and no queries work. Looks like a fundemental problem (default value with auto increment?). I should be able to increment the ID ONLY on insert somehow.Anyone know the answer?

A reply to a similar questions was posted in the Portal forum that suggested using a trigger. Sounds reasonable, but I haven't been able to make it work. An example would have been great...
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by John Pugh ([email protected]):
This is my first time using data entry in Oracle Portal. I followed the example given in the 'Create and event calendar' in the tutorial. i created a simple form and an ID column. I created a sequence and a default value field with the parameter 'nextval' in it as per the example.
The result is that an ID number is created everytime the form comes up and no queries work. Looks like a fundemental problem (default value with auto increment?). I should be able to increment the ID ONLY on insert somehow.Anyone know the answer?<HR></BLOCKQUOTE>
null

Similar Messages

  • Im trying to update, but all it does is backup my phone, My itunes is updated, BTW, I just went to Apple bar, i had previous problem with prior phone, now im having this update  problem with thyis new phone, someone HELP!!

    Im trying to update, but all it does is backup my phone, My itunes is updated, BTW, I just went to Apple bar, i had previous problem with prior phone, now im having this update  problem with thyis new phone, someone HELP!!

    Same here and this is driving me crazy. I can buy, but can't upgrade. Grrr.

  • Cannot perform insert/update on tabular form, because of dynamic action

    Hello all,
    I have created dynamic action which computes value from several tabular form cells.
    This functionality works nice, when I change value in associated cell then the computed value is changed by the dynamic action.
    But I am not able to insert or update the row in tabular form when the dynamic action is enabled. When I set condition to "Never", then the row is inserted or updated without any problems.
    Any guess where is the problem?
    Apex version: 4.1.1.00.23
    Jiri

    Ok, below are details related to my DA. Sorry for the poor description in previous posts.
    Triggered by: Chnage event
    Selection type: jQuery Selector
    jQuery Selector
    td[headers='SPECIESCODE'] input,td[headers='MEASURETYPE'] input,td[headers='TRUNKLOGID'] input,td[headers='LOGCLASS'] input,td[headers='LENGTH'] input,td[headers='PIECES'] input,td[headers='DIAMETER'] inputTrue Actions:
    *1.*
    //get element id which was changed by user
    var v_elementid = (jQuery(this.triggeringElement).attr('id'));
    switch(v_elementid.substr(0,3))
      case "f05":
       //assign value from triggered element to hidden field     
       $s("P210_HIDDEN_SPECIES",jQuery(this.triggeringElement).val());   
       //assign actual values also to other hidden elements     
       $s("P210_HIDDEN_MEASURE",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='MEASURETYPE'] input").val());
       $s("P210_HIDDEN_TRUNKLOGID",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='TRUNKLOGID'] input").val());
       $s("P210_HIDDEN_LOGCLASS",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LOGCLASS'] input").val()); 
       $s("P210_HIDDEN_LENGTH",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LENGTH'] input").val()); 
       $s("P210_HIDDEN_PIECES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='PIECES'] input").val()); 
       $s("P210_HIDDEN_DIAMETER",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='DIAMETER'] input").val()); 
       break;
      case "f06":
       $s("P210_HIDDEN_MEASURE",jQuery(this.triggeringElement).val());
       //assign actual values also to other hidden elements     
       $s("P210_HIDDEN_SPECIES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='SPECIESCODE'] input").val());
       $s("P210_HIDDEN_TRUNKLOGID",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='TRUNKLOGID'] input").val());
       $s("P210_HIDDEN_LOGCLASS",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LOGCLASS'] input").val()); 
       $s("P210_HIDDEN_LENGTH",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LENGTH'] input").val()); 
       $s("P210_HIDDEN_PIECES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='PIECES'] input").val()); 
       $s("P210_HIDDEN_DIAMETER",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='DIAMETER'] input").val());      
       break;
      case "f07":
       $s("P210_HIDDEN_TRUNKLOGID",jQuery(this.triggeringElement).val());
       //assign actual values also to other hidden elements     
       $s("P210_HIDDEN_MEASURE",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='MEASURETYPE'] input").val());
       $s("P210_HIDDEN_SPECIES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='SPECIESCODE'] input").val());
       $s("P210_HIDDEN_LOGCLASS",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LOGCLASS'] input").val()); 
       $s("P210_HIDDEN_LENGTH",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LENGTH'] input").val()); 
       $s("P210_HIDDEN_PIECES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='PIECES'] input").val()); 
       $s("P210_HIDDEN_DIAMETER",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='DIAMETER'] input").val());
       break;
    }*2.*
    //get element id which was changed by user
    var v_elementid = (jQuery(this.triggeringElement).attr('id'));
    switch(v_elementid.substr(0,3))
      case "f09":
       $s("P210_HIDDEN_LOGCLASS",jQuery(this.triggeringElement).val());
       //assign actual values also to other hidden elements     
       $s("P210_HIDDEN_MEASURE",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='MEASURETYPE'] input").val());
       $s("P210_HIDDEN_TRUNKLOGID",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='TRUNKLOGID'] input").val());
       $s("P210_HIDDEN_SPECIES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='SPECIESCODE'] input").val());
       $s("P210_HIDDEN_LENGTH",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LENGTH'] input").val()); 
       $s("P210_HIDDEN_PIECES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='PIECES'] input").val()); 
       $s("P210_HIDDEN_DIAMETER",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='DIAMETER'] input").val());      
       break;
      case "f12":
       $s("P210_HIDDEN_LENGTH",jQuery(this.triggeringElement).val());
       //assign actual values also to other hidden elements     
       $s("P210_HIDDEN_MEASURE",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='MEASURETYPE'] input").val());
       $s("P210_HIDDEN_TRUNKLOGID",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='TRUNKLOGID'] input").val());
       $s("P210_HIDDEN_SPECIES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='SPECIESCODE'] input").val());
       $s("P210_HIDDEN_LOGCLASS",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LOGCLASS'] input").val());
       $s("P210_HIDDEN_PIECES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='PIECES'] input").val()); 
       $s("P210_HIDDEN_DIAMETER",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='DIAMETER'] input").val());
       break;
      case "f13":
       $s("P210_HIDDEN_PIECES",jQuery(this.triggeringElement).val());
       //assign actual values also to other hidden elements     
       $s("P210_HIDDEN_MEASURE",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='MEASURETYPE'] input").val());
       $s("P210_HIDDEN_TRUNKLOGID",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='TRUNKLOGID'] input").val());
       $s("P210_HIDDEN_SPECIES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='SPECIESCODE'] input").val());
       $s("P210_HIDDEN_LENGTH",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LENGTH'] input").val()); 
       $s("P210_HIDDEN_LOGCLASS",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LOGCLASS'] input").val());
       $s("P210_HIDDEN_DIAMETER",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='DIAMETER'] input").val());  
       break;
      case "f14":
       $s("P210_HIDDEN_DIAMETER",jQuery(this.triggeringElement).val());
       //assign actual values also to other hidden elements     
       $s("P210_HIDDEN_MEASURE",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='MEASURETYPE'] input").val());
       $s("P210_HIDDEN_TRUNKLOGID",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='TRUNKLOGID'] input").val());
       $s("P210_HIDDEN_SPECIES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='SPECIESCODE'] input").val());
       $s("P210_HIDDEN_LENGTH",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LENGTH'] input").val()); 
       $s("P210_HIDDEN_PIECES",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='PIECES'] input").val()); 
       $s("P210_HIDDEN_LOGCLASS",jQuery(this.triggeringElement).parents("tr:first").find("td[headers='LOGCLASS'] input").val());
       break;
    }*3.*
    call PL/SQL function (values from hidden fields are used as input params)
    begin
    :P210_HIDDEN_VOLUME :=  function(:P210_HIDDEN_SPECIES,:P210_HIDDEN_MEASURE,:P210_HIDDEN_TRUNKLOGID,:P210_HIDDEN_LOGCLASS,:P210_HIDDEN_LENGTH,:P210_HIDDEN_DIAMETER,:P210_HIDDEN_PIECES, :G_USERLANG);
    end;*4.*
    here I want to set computed value from hidden field to VOLUME cell in tabular form. And it seems there is some problem, because not only the corresponding VOLUME cell is changed, but also several other cells. I realized that also several cells which are hidden to user has same value as computed VOLUME field. Including ROWID and then the insert/update operations are not done.
    // find the VOLUME-Field and set it to the computed value
    jQuery(this.triggeringElement).parents("tr:first").find("td[headers='VOLUME'] input").val($v("P210_HIDDEN_VOLUME"));I hope I have provide more information and somebody will be able to he help me. maybe the problem is clear, but with my poor jQuery knowledge i am not able to find it.
    Thanks in advance!
    -Jiri
    Edited by: Jiri N. on Aug 10, 2012 3:24 AM

  • Update problems with itunes 10.6.1 on xp

    When I try to update to iTunes 10.6.1 n Windows XP sp3 I get the dialog box to repair or remove. If I select repair the update fails. Any ideas on how to correct this issue?

    I have an old macbook too.
    It seems like Apple writes new software that makes older computers not work as well.
    I always have reservations about updating with an older model.
    Does anybody else have any problems with the new iTunes?
      Model Name:          MacBook
      Model Identifier:          MacBook4,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.4 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          3 MB
      Memory:          2 GB
      Bus Speed:          800 MHz
      Boot ROM Version:          MB41.00C1.B00
      SMC Version (system):          1.31f1
      Serial Number (system):        
      Hardware UUID:        
      Sudden Motion Sensor:
      State:          Enabled

  • Static/Dynamic PDF problem with Forms 7.0

    Hi all
    I wonder if anyone has an answer to this?
    I'm having problems with getting the instance manager to work correct in a couple of forms. It works great if I preview in Designer (8.1) or render through ES 8.2, but since we haven't upgraded our production environments yet, I'm stuck with Forms 7.0 there. And when I try to render with that, the form is simply not working as it should...
    My guess is that Forms 7.0 chooses to make the form static instead of dynamic, but how to change this behaviour from the xdp? I've checked all the options of making it a dynamic xdp via Forms->Properties and checked just about everything I can come up with, but it's simply not working right now... anyone with ideas?
    What I'm trying to do is to hide subforms depending on what the user has chosen in a different form (html), so that the user won't see irrelevant data. It's been done before but now it seems like Forms 7.0 wants to run the forms static always.
    I've contacted Adobe support for a week ago but still haven't got anything from them leading me the right way. That's the reason I'm now asking here if anyone has any good idea...
    A bit more information about what I've tried:
    When I set min instances to 1, they are all visible but then they don't hide.
    If I don't set minimum instances to 1, they don't display at all in forms 7.0 when choice Repeat subform for each item is set.
    Using initialCount set to 1 do no good.
    Doesn't matter if I use setInstances, addInstance or removeInstance as far as I've been able to see. I have also tried using presence = "hidden"; but with no luck.
    If the prefill xml file is using appropriate xml syntax, it shows correct number of subforms but since I also wants to hide irrelevant subforms, it's not an acceptable solution.
    Thanks in advance for any tips.

    Yes. I could add an "Of course" but it has happened before that it's something that simple. Been scratching my head for at least 4 hours just today and at least the same amount of hours before so I think I've narrowed out all the simple stuff but I might have missed one..
    Any more tips? One strange issue is the fact that the form behaves different if the prefill xml file is structured in different ways. Nothing to do with prefilling, just how the PDF itself behaves.

  • OS update problem with BB Torch 9810

    Hi there
    I've got a problem with my BB device. It is Torch 9810 and recently a software patch has been applied ( version 7.0.0 bundle 1465 to bundle 2406 ). After the upgrade though BB device doesn't work properly, its screen freezes, some applications ( GPS in particular ) does not work, virtual keyboard sensitivity is poor etc. Hence I need to roll back to the previous version of software however rollback option on device is disabled. I can't roll back to the previous version using desktop software either.
    Please advice how to resolve the issue or provide me with a link where I can find previous OS version i.e. 7.0.0 bundle 1465.
    Regards,
    Krum Garkov

    Hi kgarkov and welcome to the BlackBerry Support Community Forums!
    Plug your BlackBerry® smartphone into your PC and go to www.blackberry.com/update.  When prompted to do the update, click on View Other Versions to choose an older version of software to install.
    Thanks
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Since LION update problem with iphone syncronisation

    Since the LION update on our macbook we have problems with the iphone syncronisation, reset the iphone has not solve the problem - what ist the mistake?

    What worked for me was not on the Apple troubleshooting list. I tried the whole list.
    First, I reset the phone. (Reset the iPhone by holding the sleep/wake button at the top right of the device and the home button at the bottom center of the face at the same time. Hold them both until you see the screen go black and the white Apple logo appear. When this happens, you can let go - the iPhone is rebooting.)
    Second, I restored the phone.
    I could not restore the phone until I reset it.
    Good luck.

  • Problem with forms authentication in OWA

    Hi
    I have a problem with exchange 2013 standard
    When I enable forms authentication on OWA, after logging in I get a 404 file not found error.
    Forms authentication works fine on ECP.
    I noticed that the login url has a ReturnUrl on the querystring which is double url encoded.i.e. I am getting
    https://centaur.patriot.local/owa/auth/logon.aspx?replaceCurrent=1&url=https%3a%2f%2fcentaur.patriot.local%2fowa%2flogin.aspx%3fReturnUrl%3d%252fowa%252f%253fbO%253d1%26bO%3d1
    If I unescape the ReturnUrl and put that in the browser,(like the following), it works:
    https://centaur.patriot.local/owa/auth/logon.aspx?replaceCurrent=1&url=https%3a%2f%2fcentaur.patriot.local%2fowa%2flogin.aspx%3fReturnUrl=/owa/?bO=1&bO=1
    So either IIS is redirecting twice or the redirect url is incorrect.
    Any ideas on how to fix this?

    Hello,
    You're right. the issue is related to IIS.
    If you do not want IIS to allow doubled-encoded requests to be served, please set allowDoubleEscaping vaule to false to check the result.
    -Encoded Requests" section in the following article:
    http://www.iis.net/learn/manage/configuring-security/use-request-filtering
    If the settings don't work, I recommend you post your issue to iis forum.
    http://forums.iis.net/
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • 2.3 Update:  Problem with AppleTV learning third-party remote

    Hello,
    I'm trying to set up my third party remote (DirecTV HR21) after updating to 2.3. It all starts well; I go to Settings -> General -> Remotes -> Learn Remote, but I am having an issue when I am making my Apple TV learn the second key (down arrow); I get the error message "apple tv has already learned this button". It's as if the Apple TV thinks the 'up arrow' and the 'down arrow' on my remote are the same key. I tried several times, to no avail.
    Anyone else having this issue?

    I'm experiencing the same problem with the current DirecTV remote not being able to learn more than the first button prompted to enter (arrow-down). The error message "appletv has already learned this button" appears when attempting to enter the second button prompted (arrow-up). Furthermore, I have attempted configuration on two separate DirecTV HR21 remotes in both AV1 and AV2 modes.
    Come on Apple -- don't tease us! Testing wasn't done to make sure AppleTV can learn to respond to a current DirecTV remote? Yikes. I wonder what 3rd-party remotes were tested and confirmed to work.

  • Update problems with Adobe Flash Player preinstalled via Chrome. Can any one help?

    Dears, I am using the Chrome and it says it has installed the Adobe Flash Player and the auto updater. I selected to be advised every time an update is available, before it gets installed. During the start up of my Windows system (i.e. the "autoexec" run) the Flash Player auto updater  sometimes indicates there is an Adobe Flash Player update to be installed. Most of the time it is indicated BEFORE the autoexec finishes its sequence and thus still do not have an internet connection perfectly set up. At this point in time the adobe flash player auto updater window indicates there is an error and asks me to retry. Normally I wait a few seconds so the Autoexec run is finished and retry again. Most of the time the adobe flash player auto updater window indicates a second error message, claiming there is still an error. I have already attempted to connect the internet again and normally I am successful, indicating there is NOT a problem with the internet connection. At this point I give up trying to update the Adobe Flash Player and close the window. Can someone give me some light on how to fix this????

    The Adobe Flash Player updater DOES NOT update the PepperFlash plug-in in Chrome. Chrome uses a PPAPI plug-in and Adobe ONLY updates the NPAPI plug-ins for IE and other browsers. You can ONLY update the PepperFlash plug-in for Chrome by updating Chrome. The PepperFlash plug-in is a separate file in a separate folder location.

  • Problems with Forms view in Web browser

    I am having several problems with viewing forms in IE 7.
    I am running Oracle 10g. When I run a form for the first time it seems to run ok. Then if I make changes and want to view the changes, the form does not refresh. I also have a problem viewing different forms...IE keeps displaying the initial form instead of the new one. I have to completely shut down Forms Builder and OC4J in order to see a different form, or changes to the current form.
    Also, I am having the annoying text problem where after the first view, HTML code appears on the screen and I have to remove a digit from before the HTM part of the URL in order to even attempt to run anything. Refreshing the screen does not work.
    Please help...this is really irritating...
    Thanks,
    Kristin

    IE 7 isn't certified against Forms 10g
    is it important for you to use version 7 ?

  • Safari update - problem with magic mouse

    Hi all, I recently installed safari update to 5.1 (6534.50) on a mabbook pro OS X 10.6.8. Ever since update, I've been experiencing the problem with safari reloading pages and kicking me out of websites that use flash player (back to log-in screen). I can deal with that by using another browser, however the update has really messed up my magic mouse. At first, every time I put my macbook to sleep or shut it off, the mouse would stop responding when I woke the mac up. I would have to disconnect the mouse and reconnect. But this was really eating up my batteries, so this morning I shut the mouse off when I put the mac to sleep. Now it won't connect at all. Anybody have any suggestions? Thanks in advance for your help!

    Thanks Carolyn and Barry,
    I did what Carolyn suggested - moving the .plist file into the trash. I have not resetting the PRAM or SMC yet.
    When I go to system preferences>Bluetooth, I get a screen that says:
    Bluetooth power is off. To use Bluetooth, first you must turn it on. (Note - my mouse is turned on)
    Both ON and DISCOVERABLE are checked.
    In the middle of the screen, it says No Devices (Set Up New Device...)
    When I select set up new device, it finds my device and attempts to pair but is unsuccessful.
    Resetting the SMC and PRAM scares me. After reading the links that Carolyn provided, I remembered another weird issue I had with my mac shortly before the update and mouse issue. For some reason, my clock suddenly became out of sync and I was on a 2000 date. I got an error message and reset the clock manually. Could this be the cause of my mouse issue? I feel like every step I've taken to get my mouse working again has made the problem just a little bigger!
    Thanks again for helping me!
    Judy

  • Strange Problem with Forms (Smart Forms)

    I have lately been experiencing a strange problem with standard forms in the system. We have WebAS640 / ECC5.0 System. Soon after the initial run of patches, most forms in the system are showing the character '#' in place of formatted texts.
    I have searched the internet and most forums, but have not found a solution. Since this is the standard forms that i am talking about (unmodified and untouched) so i assumed this had something to do with our patch levels. However that is only an assumption.
    In particular i am having problem with the billing invoice type RD00, form name: LB_BIL_INVOICE. I have traced the problem to this much. The form shows the expected text, where no character format is applied to it. And where ever there is some character format, it just shows a string of hashes ('#'). The style being used by this form is LO_STYLE.
    I am also listing my patch levels in case that helps.
    SAP_BASIS     640             0014
    SAP_ABA             640             0014
    ST-PI             003C_640     0001
    PI_BASIS     2004_1_640     0006
    SAP_BW             350             0012
    SAP_HR             500             0005
    SAP_APPL     500             0006
    PI             2004_1_500     0004
    EA-IPPE             300             0004
    EA-RETAIL     500             0005
    EA-PS             500          0005
    EA-HR             500          0005
    EA-GLTRADE     500          0005
    EA-FINSERV     500          0005
    EA-DFPS      500          0005
    EA-APPL      500           0005
    Hope somebody can help in regard

    Hi Ashan!
    Interesting problem. You are seeing replacement characters, because assigned font(size) is not installed (somewhere, SAP or printer).
    But since this is completely standard, open an OSS-request - maybe it's not as fast as SDN, but I'm sure you will get a qualified answer (and solution).
    Regards,
    Christian

  • Latest iTunes update problems with repeated error messages every 65 seconds??

    After this mornings' update of iTunes.  Problems with Applemobiledeviceservices.exe.  Error message every 65 seconds - software exception (oxc06d007e) occurred in the application at location 0x7c812fd3.
    How do I stop this?

    'The installer has insufficient privileges to modify this file C:\Program Files (x86)\Common Files\Apple\Apple Application Support\Web kit.resources\inspector\Images\Spinner Inactive Selected.gif.'
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • 4.1 update - problems with stereo connectivity

    I have a high end audio system in my car... Focals, w7, etc etc. It is ran by a avhp3100dvd. Since I updated my iphone4 to the new 4.1 OS, I get random static through the audio system. It is sporadic, lasts 3 to 4 seconds, goes away, and then comes back. It worked earlier today before I did the update. My itouch works fine, so I know it isn't the radio. I restored the iphone4 AGAIN (a clean restore btw, so I just spent an extra hour organizing my iphone again) just to see if the upgrade was corrupted somehow. I still have the same issue. The phone plays like normal with headphones, it is just when the iphone is synced to the radio.
    I have seen numerous complaints about the new OS not being compatible with radios after updates. I was very hesitant to purchase the iphone4 because of this, but I tested it before I bought it, and everything worked with 4.0. That is the ONLY reason I purchased the iphone4. I felt like apple forced 3g customers to upgrade after the 4 update made them unusable. 3g phones need to be fixed with the new operating system and PLEASE FIX connection problems with other devices.
    It doesn't make sense why an update would mess up connection capabilities with other devices (isn't that a step backward?). The reason why I have purchased apple devices (iphones, macbook, itouch, ipad) is because they typically just work. That hasn't been the case lately. Thanks for reading my rant

    Thanks for the rant but it's probably better to contact Apple about this. We don't work for them.
    Regards

Maybe you are looking for

  • Exclamation Mark instead of my photo's

    I know someone asked this below but I need to start from scratch! I don't know what I have done to make this happen, it happened when I first bought my iMac just over a year ago and Apple sorted it over the phone but unfortunately I can't remember wh

  • How to change page size from A5 to A4 in CS3

    How do I change the pagesize of my booklet from A5 to A4 - basically I just want to blow the whole thing up a notch... I've tried to activate automatic layout adjust and then changing document settings but the result is scattered objects that are sti

  • Removing "Unknown Album" from Cover Flow

    Is it possible to remove any albums that don't have names (but are named "Unknown Album" on the iPod) from Cover Flow, but still keep those songs on your iPod? The "Unknown Album" art clutters Cover Flow...I don't mind it in Now Playing but in Cover

  • Hhow to disable invoice detail table

    Hi I've fussion web applicateion developed on Jdeveloper 11.1.2.3.0 I've a page showeing Purchase invoice from 2 database tables first table for invoice Info such as purchase_id,Purchase_date,vendor,location,Inoice_statuse wither invoice is compleste

  • Need details about Toshiba 15.4" Intel Duo Core 2 T5800

    Can anyone give me any information/review on this computer. I found it in a FuturShop store for 999.99$. However I can't seem to find any information about it online anywhere. I was told by a friend that it's a new special edition laptop or something