Dynamic poplist in a table not working..Any help here is appreciated

I've a Search Region which renders a table based results region.
The table has 2 poplists. One dependent on the other.
I've PPR attached to the first poplist on which the second is dependent.
I've the following code in the process request
OATableBean peerTable = (OATableBean)webBean.findIndexedChildRecursive("ResultsTable");
OAMessageChoiceBean peerVP1 = (OAMessageChoiceBean)peerTable.findIndexedChildRecursive("Peer1");
if (peer1 != null)
peer1.setListVOBoundContainerColumn(0,peerTable,"Type");
I've a VO which gets executed when the poplist value changes based on the PPR action.
However when I first render the page the second poplist shows all values and changing values in poplist one results in an error.
Any working example on dynamic poplist on a table will greatly help. I've gone through the earlier threads on this topic but none of the suggestions there solve my issue.
Thanks

Pg Definition:
QueryRN for Search Page.
Results of the search displayed in a table with id 'ResultsTable'
The Table has many messageStyled Tests and 2 poplists.
Poplist1 is rendered based on One VO: This VO queries data from lookup.
Has the Picklist View Def defined having the whole directory structure with dots and the Vo name.
Picklist View Instance: Given the instance name
Picklist Display Attribute: Meaning
Picklist Value Attribute: LookupCode
Action Type: firePartialAction
Event: poplist_update
Poplist2 values should be dependent on the above poplist:
It has the Picklist View Def, Picklist Display Attribute and Picklist Value Attribute.
There is no value specified for Picklist View Instance.
Code in Controller:
Process Request:
OATableBean pTable = (OATableBean)webBean.findIndexedChildRecursive("ResultsTable");
OAMessageChoiceBean peer1 = (OAMessageChoiceBean)pTable.findIndexedChildRecursive("Peer1");
if (peer1 != null)
peer1.setListVOBoundContainerColumn(0,pTable,"Type");
Process Form Request:
if ("poplist_update".equals(pageContext.getParameter(EVENT_PARAM)))
OAMessageChoiceBean type = (OAMessageChoiceBean)pTable.findIndexedChildRecursive("Type");
String test = (String)type.getValue(pageContext);
Serializable[] parameters = { test };
OAApplicationModule am = pageContext.getApplicationModule(webBean);
am.invokeMethod("PoplistRenderer",parameters);
Code in AMImpl
public void PoplistRenderer(String bindVar)
PeerTestVOImpl peerVO = getPeerTestVO();
PeerTypeVOImpl typeVO = getPeerTypeVO();
//String bindVar = "AE";
if (peerVO == null)
MessageToken[] errTokens = { new MessageToken("OBJECT_NAME", "PeerTestVO") };
throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", errTokens);
peerVO.initQuery(bindVar);
VO Query:
select person_id, full_name, type
from mvl_peer_test
Code in VOImpl
public void initQuery(String type)
setWhereClause("TYPE = :1");
setWhereClauseParams(null); // Always reset
setWhereClauseParam(0, type);
executeQuery();
} // end initQuery()
The first time the search is conducted, the 2nd poplist shows all values. So the initial bind itself does no seem to work okay.
When I try to change the value of the first poplist, i get this error:
## Detail 0 ##
java.lang.ArrayIndexOutOfBoundsException: 0
     at oracle.jdbc.dbaccess.DBDataSetImpl._getDBItem(DBDataSetImpl.java:379)
     at oracle.jdbc.dbaccess.DBDataSetImpl._createOrGetDBItem(DBDataSetImpl.java:784)
     at oracle.jdbc.dbaccess.DBDataSetImpl.setBytesBindItem(DBDataSetImpl.java:2473)
     at oracle.jdbc.driver.OraclePreparedStatement.setItem(OraclePreparedStatement.java:1204)
     at oracle.jdbc.driver.OraclePreparedStatement.setString(OraclePreparedStatement.java:1624)
     at oracle.jdbc.driver.OraclePreparedStatement.setObject(OraclePreparedStatement.java:2846)
     at oracle.jdbc.driver.OraclePreparedStatement.setObject(OraclePreparedStatement.java:3234)
     at oracle.jbo.server.ViewRowSetImpl.bindParameters(ViewRowSetImpl.java:1424)
     at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:582)
     at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:515)
     at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3347)
     at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:825)
     at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4465)
     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574)
     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:544)
     at oracle.jbo.server.ViewRowSetImpl.executeDetailQuery(ViewRowSetImpl.java:619)
     at oracle.jbo.server.ViewObjectImpl.executeDetailQuery(ViewObjectImpl.java:3311)
     at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3298)
     at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:439)
     at oracle.apps.fnd.framework.webui.OAWebBeanPickListHelper.createListDataObject(OAWebBeanPickListHelper.java:973)
     at oracle.apps.fnd.framework.webui.OAWebBeanPickListHelper.getListDataObject(OAWebBeanPickListHelper.java:818)
     at oracle.apps.fnd.framework.webui.OAWebBeanPickListHelper.getList(OAWebBeanPickListHelper.java:462)
     at oracle.apps.fnd.framework.webui.OAWebBeanPickListHelper.getList(OAWebBeanPickListHelper.java:403)
     at oracle.apps.fnd.framework.webui.beans.message.OAMessageChoiceBean.getList(OAMessageChoiceBean.java:762)
     at oracle.apps.fnd.framework.webui.OADataBoundValuePickListData.getValue(OADataBoundValuePickListData.java:86)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.getAttributeValueImpl(OAWebBeanHelper.java:1760)
     at oracle.apps.fnd.framework.webui.beans.message.OAMessageChoiceBean.getAttributeValueImpl(OAMessageChoiceBean.java:369)
     at oracle.cabo.ui.BaseUINode.getAttributeValue(Unknown Source)
     at oracle.apps.fnd.framework.webui.OADataBoundValuePickListSelectionIndex.getValue(OADataBoundValuePickListSelectionIndex.java:61)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.getAttributeValueImpl(OAWebBeanHelper.java:1760)
     at oracle.apps.fnd.framework.webui.beans.message.OAMessageChoiceBean.getAttributeValueImpl(OAMessageChoiceBean.java:369)
     at oracle.cabo.ui.BaseUINode.getAttributeValue(Unknown Source)
     at oracle.cabo.ui.collection.UINodeAttributeMap.getAttribute(Unknown Source)
     at oracle.cabo.ui.collection.AttributeMapProxy.getAttribute(Unknown Source)
     at oracle.cabo.ui.BaseUINode.getAttributeValueImpl(Unknown Source)
     at oracle.cabo.ui.BaseUINode.getAttributeValue(Unknown Source)
     at oracle.cabo.ui.collection.UINodeAttributeMap.getAttribute(Unknown Source)
     at oracle.cabo.ui.BaseUINode.getAttributeValueImpl(Unknown Source)
     at oracle.cabo.ui.BaseUINode.getAttributeValue(Unknown Source)
     at oracle.cabo.ui.laf.base.BaseLafUtils.getLocalAttribute(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.OptionContainerRenderer.getSelectedIndex(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.OptionContainerRenderer.populateOptionInfo(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.OptionContainerRenderer.createOptionInfo(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.OptionContainerRenderer.prerender(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.ChoiceRenderer.prerender(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.FormElementRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderNamedChild(Unknown Source)
     at oracle.cabo.ui.laf.base.SwitcherRenderer._renderCase(Unknown Source)
     at oracle.cabo.ui.laf.base.SwitcherRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.composite.UINodeRenderer.renderWithNode(Unknown Source)
     at oracle.cabo.ui.composite.UINodeRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.composite.UINodeRenderer.renderWithNode(Unknown Source)
     at oracle.cabo.ui.composite.UINodeRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.InlineMessageRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.table.NormalTableCell.render(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.table.NormalTableCell.render(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderSingleRow(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.TableRenderer._renderTableRows(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderTableRows(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderTableContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.TableRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.apps.fnd.framework.webui.beans.table.OATableBean.render(OATableBean.java:635)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.oracle.desktop.HeaderRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.composite.ContextPoppingUINode$ContextPoppingRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.oracle.desktop.HeaderRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderIndexedChildren(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.composite.UINodeRenderer.renderWithNode(Unknown Source)
     at oracle.cabo.ui.composite.UINodeRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.oracle.desktop.PageLayoutRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BodyRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.render(OABodyBean.java:398)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.DocumentRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.DocumentRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.partial.PartialPageUtils.renderPartialPage(Unknown Source)
     at oracle.apps.fnd.framework.webui.OAPageBean.render(OAPageBean.java:3209)
     at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2888)
     at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2700)
     at OA.jspService(OA.jsp:48)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
     at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
     at java.lang.Thread.run(Thread.java:534)

Similar Messages

  • Vodadfone India 3G is not working on my iphone 5S. Tried manual network selection as suggest by others. still it is not working. any help is greatly appreciated

    Vodadfone India 3G is not working on my iphone 5S. Tried manual network selection as suggest by others. still it is not working. Any help is greatly appreciated

    Hello Tony Lobo
    Try out the article below for issues with connecting to cellular on your iPhone. 
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/TS2755
    Resolution
    Follow these steps for help troubleshooting cellular data issues on your iPhone. After performing each step, please test to see if the issue is resolved.
    Toggle airplane mode: Tap Settings, turn airplane mode on, wait three seconds, and then turn off again.
    Restart your iPhone.
    Make sure that your software is up to date:
    Check for a Carrier Settings Update: Tap Settings > General > About.
    Check for an iOS Software Update: Tap Settings > General > Software Update.
    Note: Some updates may require a Wi-Fi connection.
    Remove the SIM Card and reinsert it. Allow the iPhone to acquire the network again.
    If your SIM card has SIM PIN enabled, try turning it off: Tap Settings > Phone > SIM PIN.
    Try another location. If a different location works, but the original location still doesn't, contact your carrier to report the issue.
    Reset network settings: Tap Settings > General > Reset > Reset Network Settings.
    Restore the iPhone as new.
    Contact your carrier to:
    Verify that the iPhone is properly set up on the account with the appropriate, current data plan.
    Verify that there are no account-related blocks.
    Find out if there are specific error messages in the carrier logs that could help determine why the issue is occurring.
    If none of the above steps resolves the issue, contact your carrier, make an appointment at an Apple Retail Store, or contact AppleCare to troubleshoot further.
    Regards,
    -Norm G.

  • Since I upgrade to Lion OS my optical drive stop working can't read or write at all I did what I could to fix it but still not working , any help please

    Since I upgrade to Lion OS my optical drive stop working can't read or write at all I did what I could to fix it but still not working , any help please

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • I have purchased new iphone 3gs, its usb cable and charger not working.When I plugged in usb cable to my laptop it says"usb power hub exceeded". When I use another cable I have, it works fine.But the original one not working.Any help?

    I have purchased new iphone 3gs, its usb cable and charger not working.When I plugged in usb cable to my laptop it says"usb power hub exceeded". When I use another cable I have, it works fine.But the original one not working.Any help?

    Are you connecting your iPhone directly to your PC or to a USB hub?

  • Downloaded ios6 to my ipod touch and lost all color when i select an artist or song how can i get to be blue again tried resetting did not work any help would be apprciated?

    just downloaded ios6 on my ipod touch and lost all color when I select an artist or song how can I get it to be blue again tried resetting did not work any help offered would be liked

    You need to restore.
    Everything should be on your computer, so you can just sync it back.
    iPod touch User Guide (For iOS 4.3 Software)

  • I have an iphone 4s and i keep getting an error message when ever i try to activate i have already restored the phone and it still will not work. any help would be greatly appreciated

    I have an iphone 4s and i keep getting an error message when ever i try to activate i have already restored the phone and it still will not work. any help would be greatly appreciated

    Activation issues are almost always the result of a device that has been hacked or jailbroken.  If that is the case, no support can be provided here.

  • I'm trying to reset my iPhone 4S but I have no internet as my wifi has broken and I have no data left, I have tried connecting to a computer which did not work any help would be grateful thanks

    I'm trying to reset my iPhone 4S but I have no internet as my wifi has broken and I have no data left, I have tried connecting to a computer which did not work any help would be grateful thanks

    A reset has nothing to do with Internet access or data access.
    A reset is simply pressing and holding the home and power buttons until the white Apple logo appears.
    What are you really trying to do?

  • Apple Composite AV Cable no longer working on Ipad2 after ios8 update. Only getting sound, can you revert back to ios7 or buy a cable that will work any help would be appreciated

    Apple Composite AV Cable no longer working on Ipad2 after ios8 update. I'm only getting sound no video can you revert back to ios7 or buy a cable that will work any help would be appreciated
    Thanks

    The 30-pin connector on the iPhone 4 dock might not have all the connector pins to do video.
    I'm 99% sure the Universal Dock does have the pins (and therefor supports video out).

  • Was advised to delete system configuration file from hard drive and now computer will not start - any help would be appreciated.

    Downloaded Yosemite and since then cannot connect to internet or bluetooth mouse - was advised to delete system configuration file from the hard drive and since then cannot start up computer. Any help would be appreciated - cheers.

    Boot the MBP with the OPTION+COMMAND+R keys down.  The result should be a display showing a revolving globe.  By following the instructions, you will be able to reinstall the original OSX.  Then you may reinstall Yosemite.
    A solid Internet connection will be required.
    Ciao.

  • Hello, delete all of my iphone 3G SHSH and now does not work. any help?

    hi, my iphone 3g not reading, accidentally delete all SHSH, i nedd help.

    If it's happening on all the apps that you've downloaded from the App Store, but not the Apple built-in ones, then try downloading any free app from the store (as that appears to reset something) and then re-try them - the free app can then be deleted.
    If it's happening on all apps including Apple's, then try closing them all completely and then see if they work when you re-open them : from the home screen (i.e.not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close them, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Trying to install Flash 11.5 on Mac OS X 10.6.8. Install completes but Flash does not work - any help?

    Hi, I was told I didn't have Flash 7 when trying to see something online (which I am sure was incorrent to begin with) so I followed the provided link to download Flash version 11.5. The download completed without problems but Flash doesn't seem to work at all. I have uninstalled, reinstalled and restarted. I don't know what to try next, any help would be much appreciated!

    Start here;
    http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-mac.ht ml
    Also, never, never follow links for flash, codecs or plug-ins of any kind from websites that throw up these warnings - there's a high chance of the link being to a malware site.
    Always go directly to the vendor.

  • My iMessaging is not working, any help as to how to get it working again?

    All of my messages are being sent to other iPhone users as texts, and the Apple system statem shows that nothing is wrong, but it's not working. Anyone else?

    Not enough info in your post to help, such as your Messages settings and whether or not you have a data connection,  Have no idea what you mean by "Apple system statem" 

  • OS X Lion secondary click is not working, any help

    Since I`ve downloaded Lion, the secondary click does not work, I can´t even select it on the trackpad window

    More details needed.
    Are you using an Apple mouse or a 3rd party mouse? Can you enable it in System Preferences > Mouse? Can you Control + click and get the menu like you would when you use secondary click?

  • HT204587 iphone 5s finger print not working any help please

    hi
    the finger print has stopped working i have tried everything but nothing works please help.
    Thanks

    The iPhone comes with a 1 year warranty and 90 days of complimentary support. AppleCare + extends that as shown in: http://www.apple.com/support/products/iphone.html
    The following gives instructions for dealing with the forgotten passcode: http://support.apple.com/kb/ht1212

  • TS1538 I have Windows 8 and my ipad and iphone are not recognised by itunes i have goggled and nothing seems to work any help would be appreciated

    I have Windows 8. Itunes is not recognising either my ipad or iphone. I have googled and read much about this problem and associated solutions all of which I have tried except the solutions tend to be windows XP or Vista based. Can ANYONE help me. I've not backed up either product since January when i first got the pc and itunes actually worked. Thanks in advance

    Are you getting an error message when you try to launch iTunes? If so, what does it say? (Precise text, please.)

Maybe you are looking for