Descriptor query manager and custom PL/SQL call for the data update

hi all,
in the application, I'm currently working on, the operations for the data INSERT/UPDATE /DELETE are allowed only by means of PL/SQL function. Using the descriptor's query manager I'm trying to modify default behavior of TopLink and execute PL/SQL when there is a request to modify the data.
DescriptorQueryManager entityQueryManager = session.getClassDescriptor(MyEntity.class).getQueryManager();
StoredFunctionCall call = new StoredFunctionCall();
call.setUsesBinding(true);
call.setProcedureName("merge_record");
call.setResult("id", Integer.class);
call.addNamedArgument("cbic_id", "id"); // MyEntity.getId() – works!
call.addNamedArgument("publication_flag", "publicationFlag"); // MyEntity.getPublicationFlag () – works!
call.addNamedArgument("routing_id", "routing"); // MyEntity.getRouring() – works!
call.addNamedArgument("issue_id", "issue"); // MyEntity.getIssue() – works!
call.addNamedArgument("country_id", "country"); // MyEntity.getCountry() – works!
entityQueryManager.setInsertCall(call);
entityQueryManager.setUpdateCall(call);
entityQueryManager.setDeleteCall(call);
the problem:
when I call: MyEntity savedObject = (MyEntity) UnitOfWork.deepMergeClone(entity);
the binding doesn’t happen and I see following logs:
[TopLink Finest]: 2008.02.01 02:51:41.534--UnitOfWork(22937783)--Thread(Thread[AWT-EventQueue-0,6,main])--Merge clone xxx.Entity[id=2000]
[TopLink Warning]: 2008.02.01 02:51:41.550--ClientSession(8454539)--Thread(Thread[AWT-EventQueue-0,6,main])--Missing Query parameter for named argument: id null will be substituted. (There is no English translation for this message.)
[TopLink Warning]: 2008.02.01 02:51:41.550--ClientSession(8454539)--Thread(Thread[AWT-EventQueue-0,6,main])--Missing Query parameter for named argument: publicationFlag null will be substituted. (There is no English translation for this message.)
[TopLink Warning]: 2008.02.01 02:51:41.565--ClientSession(8454539)--Thread(Thread[AWT-EventQueue-0,6,main])--Missing Query parameter for named argument: routing null will be substituted. (There is no English translation for this message.)
[TopLink Warning]: 2008.02.01 02:51:41.565--ClientSession(8454539)--Thread(Thread[AWT-EventQueue-0,6,main])--Missing Query parameter for named argument: issue null will be substituted. (There is no English translation for this message.)
[TopLink Warning]: 2008.02.01 02:51:41.565--ClientSession(8454539)--Thread(Thread[AWT-EventQueue-0,6,main])--Missing Query parameter for named argument: country null will be substituted. (There is no English translation for this message.)
[TopLink Fine]: 2008.02.01 02:51:41.565--ClientSession(8454539)--Connection(6233000)--Thread(Thread[AWT-EventQueue-0,6,main])--BEGIN ? := merge_record(cbic_id=>?, publication_flag=>?, routing=>?, issue=>?, country=>?); END;
bind => [=> id, null, null, null, null, null] – WHY?
Calling straight forward the same PL/SQL block using:
DataModifyQuery updateQuery = new DataModifyQuery();
updateQuery.setCall(call);
updateQuery.shouldBindAllParameters();
and passing parameters as Vector works very well.
Could you please help me to fix the binding problem when I’m using the PL/SQL with Query Manager?
regards,

Hello,
This is fairly common. Since the database is case insensitive (mostly) field names passed in don't really matter much. Unfortunately, java string comparisons are case sensitive, so if you db column for the getId() property is defined as uppercase "ID" it will not match to the lower case "id" defined in the
call.addNamedArgument("cbic_id", "id");
This will cause TopLink to get null when it looks for the "id" field in the row it builds from your MyEntity instance.
Matching the case exactly will resolve the issue.
Best Regards,
Chris

Similar Messages

  • Standard And Customized BEx Reports & workbooks for the Modules FI,SD,MM

    Hi..All
    Can any one explain about Standard and customized BEx Reports and workbooks which were frequently used in implementation projects for the modules SD,MM and FI?
    Thanks & Regards
    Jonn

    Hi John,
    Find below some of FI(AP) queries....
    1.Accounts Receivable: Payment History -0FIAR_C05_Q0001
    2.Accounts Receivable: Overdue Analysis -0FIAR_C03_Q0005
    3.Accounts Receivable: Days Agreed / Days Taken -0FIAR_C03_Q0001
    you can find some queries in help.sap.com
    I don;t remember the queries used for other modules...you can refer the below link and identify the queries most usefull for your requirements...
    help.sap.com/bw
    thanks,
    vachan

  • Custom PL/SQL servlet for HTTP Listener like HTMLDB

    We would like to migrate our applications from apache that use a custom perl application server to the xdb http listener and would need to be able to write a custom pl/sql servlet for the listener
    eg
    <servlet xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">
    <servlet-name>Custom</servlet-name>
    <servlet-language>PL/SQL</servlet-language>
    Can this be done? (Well obviously, HTMLDB did it.)
    Is information available to do this?
    Information on the request (url/headers/content) and response (headers/content) objects
    of the http listener would be needed.
    Our pl/sql applications look like
    create package my_app as
    procedure my_job (request xmltype);
    end;
    This is why we need to do the servlet ourselves and why dbms_epg is not suitable.

    Currently
    we don't plan to allow large input to be passed as a
    CLOB parameter to the procedure. Is there a use-case
    for this?YES ;). I have seen this coming up quite a few times in this forum.
    1) we cannot edit sql scripts in Apex directly (>32KB), this is quite inconvenient to download, edit and upload again. If we are talking about sql scripts, they are often larger than 32KB.
    2) building an application where the user can directly edit or copy/paste spreadsheet data or xml data. It is quite a restriction to only have 32KB at your hand.
    3) the common workaround would be to split the data in 32KB chunks and then reassemble them in the backend. Quite tedious.
    4) editing larger HTML texts for a portal application for example.
    5) editing larger HTML texts for a forum application for example.
    ... the list goes on ...
    Another argument is that all other major technologies like servlets, jsps, perl, php, python they are all capable of handling this kind of data. I often feel it is too much of a restriction.
    What do others in the forum think? Feedback is welcome!!!
    Thanks,
    ~Dietmar.

  • Working with Custom SQL Using Descriptor Query Manager Queries

    Hi All,
    I am Working on Descriptor Query Manager Queries
    Configuring Custom SQL Using Java and Workbench
    Using Java I wrote a static method as in the code given below.
    public static void insertEmployee(ClassDescriptor descriptor){
    descriptor.getQueryManager().setInsertSQLString(
    "insert into EMPLOYEE (EMP_ID, EMP_NAME, EMP_JOB, SAL, DEPTNO) values (#EMP_ID, #EMP_NAME, #EMP_JOB, #SAL, #DEPTNO)"
    I wrote a insert SQL Query in the custom SQL tab of the Toplink workbench .
    Using java and Using Toplink Workbench I had a problem how to call this insert query in the sessionEJBBean .
    Can any one suggest me in this regard.
    Thanks in advance
    regards,
    Satish

    What is the problem you are experiencing?
    Normally you can just execute the query by calling
    'executeQuery(queryName, domainclass) on the session.
    See also
    http://www.oracle.com/technology/products/ias/toplink/
    doc/10131/main/_html/qrybas003.htm#BCFIBGGJ
    Just out of curiosity: why do you need a custom SQL
    to insert something? Can't you use persist()?
    regards,
    LonnekeOr even UnitOfWork ? Why go down the route of using custom inserts to insert objects unless you have some business logic that Toplink's UnitOfWork API cannot provide ?

  • Customer service promised me call back in 24 hrs but it has been 72 hrs and I m still waiting for the call,,,,,

    Apple sent me replacement phones and both with different coverage on them. Repair coverage finishing lot earlier then what I had on the original defective phones. Now they are telling me that he phones they received were different then the ones in Repair Case. After 150 minutes long phone call the rep said me that somebody will call me within 24 hrs and I m still waiting for the call after 3 days. the conversation was polite and helpful all the way from both sides but now I feel like Apple reps are trying to avoid this problem because this is their problem that most likely they misplaced my phones in their wharehouse and after my call (one week after the phones received by apple) they started looking for it.
    I had the repair status updated in my profile after I received the new wrong phones. Even the acknowledgement email from apple mentioning that they have sent out the replacement product came to my inbox two days after I received the phones.
    Is this Mr.Jobs Apple ?
    Does anyone has Customer service email address ?

    I know there is a contact us tab on the web page and thats what I have mentioned here that what happened when I called them.
    thanks for ur input though,

  • Single SQL call for both Report & Chart

    Hi everyone,
    I am pretty new to APEX and I am loving it :)
    I need to create a page with two region (SQL Report & Flash Chart) and both region data will come from identical SQL statement.
    Could I make them both get data from a single sql call, instead of making 2 identical sql call for each region?
    Thanks before for any help.

    Can't think of any practical way to use only one call. Best I can come up with it to create the query as a Shared Component. At least that way your using the identical SQL source.
    HTH
    Chris

  • Upgrade OM 2012 to SP1 Beta - Version of SQL Server for the Operational Database and the Data Warehouse

    Hello,
    When I try to verify the prerequisites to upgrade my SCOM 2012 UR2 Platform to SP1 Beta, I have these errors :
    The installed version of SQL Server is not supported for the operational database.
    The installed version of SQL Server is not supported for the data warehouse.
    But when I execute this query Select @@version on my MSSQL Instance, the result is :
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03   Copyright (c) Microsoft Corporation  Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7600: ) (Hypervisor) 
    But
    here, we can see that :
    Microsoft SQL Server: SQL Server SQL 2008 R2 SP1, SQL Server 2008 R2 SP2, SQL Server 2012, SQL Server 2012 SP1, are supported.
    Do I need to pach my MSSQL Server with a specific cumulative update package ?
    Thanks.

    These are the requirements for your SQL:
    SQL Server 2008 and SQL Server 2012 are available in both Standard and Enterprise editions. Operations Manager will function with both editions.
    Operations Manager does not support hosting its databases or SQL Server Reporting Services on a 32-bit edition of SQL Server.
    Using a different version of SQL Server for different Operations Manager features is not supported. The same version should be used for all features.
    SQL Server collation settings for all databases must be one of the following: SQL_Latin1_General_CP1_CI_AS, French_CI_AS, Cyrillic_General_CI_AS, Chinese_PRC_CI_AS, Japanese_CI_AS, Traditional_Spanish_CI_AS, or Latin1_General_CI_AS.  No other collation
    settings are supported.
    The SQL Server Agent service must be started, and the startup type must be set to automatic.
    Side-by-side installation of System Center Operations Manager 2007 R2 reporting and System Center 2012 Service Pack 1 (SP1), Operations Manager reporting on the same server is not supported.
    The db_owner role for the operational database must be a domain account. If you set the SQL Server Authentication to Mixed mode, and then try to add a local SQL Server login on the operational database, the Data Access service will not be able to start.
    For information about how to resolve the issue, see
    System Center Data Access Service Start Up Failure Due to SQL Configuration Change
    If you plan to use the Network Monitoring features of System Center 2012 – Operations Manager, you should move the tempdb database to a separate disk that has multiple spindles. For more information, see
    tempdb Database.
    http://technet.microsoft.com/en-us/library/jj656654.aspx#BKMK_RBF_OperationsDatabase
    Check the SQL server agent service and see whether it is set to automatic AND started. This got me confused at my first SP1 install as well. This is not done by default...
    It's doing common things uncommonly well that brings succes.

  • How to add a custom PL/SQL code for a button event handler

    Hi All,
    I am a toddler in using Oracle Portal. So please forgive me for my ignorance.
    Q : How do I add a custom PL/SQL code for a button event handler?
    Basically, I would like to write MY PL/SQL function and call it. I could see that we can write "CUSTOM" code as "PL/SQL button event handler" in the form design window. But the question is that it expects only a "call" to procedure. But where do I define the procedure then? If I insert the procedure from the backend, it gets flushed the next time I compile my form.
    Hope I am able to explain my point.
    Thanks in advance,
    Abbas.

    Hi All,
    I am a toddler in using Oracle Portal. So please forgive me for my ignorance.
    Q : How do I add a custom PL/SQL code for a button event handler?
    Basically, I would like to write MY PL/SQL function and call it. I could see that we can write "CUSTOM" code as "PL/SQL button event handler" in the form design window. But the question is that it expects only a "call" to procedure. But where do I define the procedure then? If I insert the procedure from the backend, it gets flushed the next time I compile my form.
    Hope I am able to explain my point.
    Thanks in advance,
    Abbas.

  • The buffer manager failed a memory allocation call for 10485760 bytes

    I have a for each loop container which executes for each row in the recordset destination.
    In the for each loop container i have a dataflow task where in source is a oracle server and it performs two ookups before inserting the data into the destination.
    There are around 270k records coming from source...that means and around when 38k records are inserted in the destination the packages stops its execution and it says "The buffer manager failed a memory allocation call for 10485760 bytes".
    Can anyone help me in fixing this issue??
    TIA

    Hi Abhinav530,
    According to your description, when you execute the SSIS package, you got the error message: "The buffer manager failed a memory allocation call for 10485760 bytes".
    According to the error message, the machine has run out of physical memory (i.e. RAM) and is unable to swap out to hard disk. To troubleshoot the problem, please pay attention to these points:
    Add more physical memory to the computer.
    If you are running the SSIS  package on a computer that is running an instance of SQL Server, when you run the package, set the Maximum server memory option for the SQL Server instance to a smaller value. This behavior increases available memory.
    Exit applications that consume lots of memory when you run the SSIS package that contains dataflow tasks.
    Run the SSIS package and the dataflow tasks in series instead of in parallel to decrease memory usage.
    For more information about Data Flow Performance Features, please refer to the following document:
    https://msdn.microsoft.com/en-us/library/ms141031.aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • HT1925 I was trying to make sure that all my Apple software was uninstalled, and I still can't remove C:\Program Files\iPod\.  I went to the Task Manager and it is not listed in the Processes tab.  What do I do now?

    I was trying to make sure that all my Apple software was uninstalled, and I still can't remove C:\Program Files\iPod\.  I went to the Task Manager and it is not listed in the Processes tab.  What do I do now?

    Are you looking for iPodService.exe?
    Might be better to run services.msc from the run dialog and shut down the service polietly.
    tt2

  • I have started getting spammed on multiple Apple products (iPhone and iPad) with FaceTime calls since the recent IOS update.  Is there any feature or sedtting I can use locally to restrict incoming calls to FaceTime without going to the carrier?

    I have started getting spammed on multiple Apple products (iPhone and iPad) with FaceTime calls since the recent IOS update.  Is there any feature or setting I can use locally to restrict incoming calls to a FaceTime account without going to the carrier?

    After calling AT&T tech support one more time, and explaining to them that the glitch was on their network, they admitted that the problem was at their tower...
    I continued to use the phone on EDGE mode for two more days until the problem was fixed.
    I even got a call back from a tech support guy asking me if my phone was working properly....
    I wish they would have admitted to the problem before I sat at the apple store for 2 hours.

  • I received a message that iOS had crashed and a number to call for restoration I paid 60$   Was I ripped off

    I received a message that iOS had crashed and a number to call for restoration I paid 60$   Was I ripped off

    I received a message that iOS had crashed and a number to call for restoration I paid 60$   Was I ripped off

  • Pls help on error on ereader "this document is protected by DRM ( adobe digital rights management ) and is not currently authorized for use with your adobe id

    how do i solve this in order for the e reader to open the file?“this document is protected by DRM ( adobe digital rights management ) and is not currently authorized for use with your adobe id
    thnaks

    This is something you will need to talk to the publisher of the document. They might have to do something to allow you to open the file. (If you changed Adobe ID since buying the file, for instance, they might have to allow for that).

  • Why is it that Apple have no interest in helping I have a iPhone 4S and since updating to ISO 7.0.4 I have no wifi at all told me it's a hardware issue and I will be charged for the repair sick of it what a scam

    Why is it that Apple have no interest in helping I have a iPhone 4S and since updating to ISO 7.0.4 I have no wifi at all told me it's a hardware issue and I will be charged for the repair as it's just over a yr old so I've got a 24 month contract so 12 months with a phone that is not working right I have read loads of other people that have the same problem so how can they put it down to the phone and when asked where to take it was told to google it not happy at all apple u need to sort it out never again am I buying anything for yourselfs again DISTGUSTED would be an understatement

    No joy at all they just keep saying it's the phone but was fine before update and @metasolaray why should I pay for extra cover when the fault is not the phone but the update they have put out for everyone to install and I am far from being the only person as there is hundreds of people going through the same with this update and it's not been the first time they messed it up
    WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    56888 Views 229 Replies Latest reply: Dec 8, 2013 9:14 AM by Cheney1980   Branched to a new discussion.
    Go to original post 1 ... 6 7 8 9 10 ... 16  Previous Next
    Calculating status...
    sugaaarbabe
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 14, 2013 9:18 AM (in response to Tarrantion82)
    Apple should take resonsibility for this, otherwise they will lose lots of loyal customers. I have moved away from the ipad due to expense and am now very tempted to do so away from the iphone. Selling a product that prompts an update that breaks the phone is not good.
    Like (0) Reply
    Calculating status...
    punkinbits
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 14, 2013 11:31 AM (in response to Tarrantion82)
    Have had the same issues with iPhone 4S since the upgrade.  No wifi button, battery draining every 8 hours with no use, phone shutting on &amp; off for no reason at all.  I gave in and tried the hair dryer method.  Turned the phone off and hel d the dryer over the camera lense area for one minute.  Turned the phone back on and to my shock, had wifi button back again.  That was 2 days ago.  Battery is lasting normal amount of time again and I can use wifi again!  Hopefully this will last.  I know it doesn't work for everyone but it doesn't hurt to try.  Much better than spending the $200 at the Apple store, which by the way, the genius said Apple is aware of the problems but there is nothing they can do.
    Like (2) Reply
    Calculating status...
    Shell1331
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 15, 2013 1:07 AM (in response to Tarrantion82)
    I have exactly the same issue, apple are phoning me this evening.  I am not happy and this has really put me off using iphone.  It's my first iphone and if Apple don't fix it, it will be my last iphone!!
    Like (1) Reply
    Level 1 (0 points)
    lin777
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 15, 2013 3:17 AM (in response to Shell1331)
    you will be fine if you have warranty
    If not Apple won't want to know
    I know I've tried but they will not help.
    I've email bbc watchdog the consumer
    Programme to see if they can help.
    GOOD LUCK
    Like (0) Reply
    Calculating status...
    justezenu
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 15, 2013 4:47 AM (in response to Tarrantion82)
    Mine happened to with an update.  I had nothing wrong before that.
    Like (0) Reply
    Level 1 (0 points)
    justezenu
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 15, 2013 4:50 AM (in response to lin777)
    I am booked in for the same problem on Thursday.  Looks like I won't have much luck.
    Like (0) Reply
    Calculating status...
    ljguadagnini
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 15, 2013 1:11 PM (in response to justezenu)
    Having the same issue: iOS 7.0.2 with no WiFi / poor Battery stamina and really slow software experience when opening several options at Settings icon.
    Apple care agent contacted me and we try all alternatives to isolate and detect if this is regarding a hardware problem. Of course they told me it is. Too sad. My phone is in immaculate condition.
    My mother has an Iphone, my father has an Iphone, my 2 sisters have Iphones, my brother, wife and daugther... we all have Iphones. Mine's the only one with this fault (my personal experience: fail prob is 12,5% -1 out of 8).
    At this point, I'm evaluating to stop buying apple products for fear that in the future the same will happen with some "premium" product that ultimately they are not.
    Too sad, sorry but this is too much.
    Like (4) Reply
    Level 1 (0 points)
    lin777
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 16, 2013 5:08 AM (in response to ljguadagnini)
    Join the IOS 7.02 not working club.COME ON APPLE DO SOMETHING YOU MUST B READING ALL THE
    COMMENTS.ive emailed bbc watchdog consumer programme havent had reply yet.
    Like (0) Reply
    Level 1 (0 points)
    Jungletooth
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 16, 2013 6:15 AM (in response to lin777)
    I got my 4s in August 2012, as an upgrade on my Vodafone contract Following the installation of IOS 7 I also experienced greying out of wifi and bluetooth. I tried various options suggested on forums however none worked. I took my phone to Vodafone who told me it was a problem they were aware of but couldn't do anything about as Apple had to deal with it. I took it to my nearest Apple store (60 miles round trip!) to be told it was not their responsibility, it was Vodafone's - something to do with consumer law! They also said I would have to pay £160 for a replacement phone as it couldn't be repaired. The 'Genius' was very cagey about it being a common problem by the way!! Back to Vodafone who said it was not their responsibility so back to Apple. This time I spoke with a Manager who told me in not so many words that it was an issue and agreed to halve the replacement cost of £160 to £80. By this time I just wanted it sorted to reluctantly paid £80 for a replacment phone. Seeing as this is CLEARLY a design fault, Apple should have replaced it free of charge. This experience just confirms what I am reading in lots of places about the Apple Company. I was going to buy an iPad but have decided not to now. I shall NOT be replacing the iphone when my contract is up. I too will be writing to BBC Watchdog.
    Like (2) Reply
    Level 1 (0 points)
    Jungletooth
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 16, 2013 6:18 AM (in response to justezenu)
    justezenu wrote:
    I am booked in for the same problem on Thursday.  Looks like I won't have much luck.
    You will probably be told that the solution is a replacement phone. Ask to speak to a Manager and insist on getting it at a lower price. I did this and got it at 50% of the usual repacement cost. Still not ideal but at least it saves you a bit of the money you shouldn't have to pay in the first place!
    Like (0) Reply
    Level 1 (0 points)
    lin777
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 16, 2013 6:58 AM (in response to Jungletooth)
    Yes I had the same problem with 02 and apple no one wants to take the blame.Im glad you are writing to watchdog
    As well every one must email them or write to them and I'm sure they will take up the problem for us all.
    Like (0) Reply
    Calculating status...
    vinayak4816
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 19, 2013 7:24 AM (in response to Tarrantion82)
    no
    Like (0) Reply
    Calculating status...
    Jerome101
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 19, 2013 8:30 AM (in response to ljguadagnini)
    I depend alot on my Iphone and this Wifi greyed out issue is really getting to me!! This caused me to lose some business, but I'm sure I will make up for that in Andriod World. Switching back to andriod should have never switched to apple in the first place.
    Like (0) Reply
    Calculating status...
    Deanmort13
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 19, 2013 9:22 AM (in response to Tarrantion82)
    4s owner in the same boat as everyone else.
    I setup a service call with apple on Monday this week and was told it's quite a common hardware failure. When I asked why I should be paying for a new phone I was advised to book an appointment in store. Well I've just returned from my appointment with a "genius" who told me that when the update is installing if any component is weak when installing it will be permanently disabled.  Was then told £150 for a new phone which I declined.
    I've had  iPhones for 4 years now but due to this issue and apple washing their hands of any responsibility it will be my last.
    Disappointed that a premium product has such poor backup from the manufacturer. If it was only my phone and not thousands of others I'd have probably paid for a new phone but I'll never give apple another penny again.
    Like (1) Reply
    Calculating status...
    Coatezy
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 19, 2013 11:16 AM (in response to Tarrantion82)
    Same problem with my partners iPhone 4s. Restored the device but still no luck. Going to book an appointment but it sounds like we wont have much luck as it is just over a year old.
    Nexus 5 time I think for both of us.
    Like (0) Reply
    1 ... 6 7 8 9 10 ... 16  Previous Next
    Up to Discussions in iPhone Hardware  Go to original post Reply to original post

Maybe you are looking for

  • Java.lang.ArrayIndexOutOfBoundsException

    I got java.lang.ArrayIndexOutOfBoundsException in the method find(). But why? /**Class CDRack represents collections of compact discs. Discs are located in the rack in slots numbered from zero upwards. The discs are represented by Record objects and

  • Failure to Sleep... HEAT build up...

    I all, I have a week 40 macbook 1.83GHz machine. This afternoon I put it to sleep (closed the lid) with a fully charged battery. Upon return from my son's Karate class the book was not sleeping, FANS WERE ROARING, heat was incredible (really really h

  • SC gone in to error while creating with attachment

    Hi, SCs gone in to error when ever i create SC with attachement. error is : Shopping cart 3000349408 (PO 2000122875):  000 Can any one help on this..

  • *Basic* Java help needed...

    I feel like a complete novice for posting this kinda stuff, but i figured somebody would take 5 minutes and help me out. My final in my programming class depends on 2 programs, one of which is giving me some actual trouble. What I have to do is creat

  • How to display Rank with specified columns.

    Hi All, I have three columns in my answers. I want to develop the report mak –up looks like bellow.      Region     Zone     Amount     Rank     max(Amount     Count(Amount)      010     010-11     10     2     15     3           010     010-12     5