What should have caused such a Exception?

I am using BC4J UIX to for my web design and now I get a problem.I allways get such a Execption when I do Update or Create:
oracle.jbo.AttributeLoadException: JBO-27022: Failed to load value at index 27 with java object of type java.lang.String due to java.sql.SQLException.
at oracle.jbo.server.OracleSQLBuilderImpl.doLoadFromResultSet(OracleSQLBuilderImpl.java:1037)
at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:1482)
at oracle.jbo.server.ViewObjectImpl.buildDiscrVals(ViewObjectImpl.java:2005)
at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:2020)
at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:1964)
at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:1390)
at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:1241)
at oracle.jbo.server.QueryCollection.get(QueryCollection.java:831)
at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:2619)
at oracle.jbo.server.ViewRowSetIteratorImpl.doFetch(ViewRowSetIteratorImpl.java:2347)
at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2211)
at oracle.jbo.server.ViewRowSetIteratorImpl.refresh(ViewRowSetIteratorImpl.java:2412)
at oracle.jbo.server.ViewRowSetImpl.notifyRefresh(ViewRowSetImpl.java:1554)
at oracle.jbo.server.ViewRowSetImpl.refreshRowSet(ViewRowSetImpl.java:3333)
at oracle.jbo.server.ViewRowSetIteratorImpl.notifyDetailRowSets(ViewRowSetIteratorImpl.java:2842)
at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigation(ViewRowSetIteratorImpl.java:2948)
at oracle.jbo.server.ViewRowSetIteratorImpl.internalSetCurrentRow(ViewRowSetIteratorImpl.java:2734)
at oracle.jbo.server.ViewRowSetIteratorImpl.setCurrentRowAtRangeIndex(ViewRowSetIteratorImpl.java:791)
at oracle.jbo.server.ViewRowSetImpl.setCurrentRowAtRangeIndex(ViewRowSetImpl.java:2127)
Does anybody know why?
thanks & best Regard.
YOng

hi...
try to reCreate your bussiness components again....
did u edit the viewObjects java files....?

Similar Messages

  • What could have caused me to lose all my texts on my iPhone 4?

    I've been using my iPhone 4 regularly since I purchased it in October of 2010 & have never had issues with it.  I'm the type of person that saves all my texts, so I have basically every text I've ever sent or received from August of 2008 when I purchased my iPhone 3G up to yesterday. 
    Yesterday I sent a picture to a friend via MMS, and right after sending it, my phone went straight to the silver Apple Logo like I had restarted my phone.  It loaded like it does after a restart, but I went to "Messaging" and all my texts were completely gone.  Texting is working just fine as a friend sent a text a few minutes later and it showed up, but now that's my only text & all past texts disappeared. 
    Fortunately I backed up my phone on May 13, so I should be able to do a restore from that backup and only lose my texts from the last 10 days, but it's still a pain and I have no idea what may have caused it.  Has anyone else had this issue in the past & is there anything I can do to avoid it?  If anything, this'll teach me to backup my phone daily instead of every few weeks.

    Try here:
    iOS: Not responding or does not turn on

  • RE: (forte-users) What could have caused the StopWatch classto r eturn

    Attila
    1. Ops - I DO instantiate it as follows:
    [snip]
    sw : StopWatch = new;
    [snip]
    I missed the "= new" in the orig mail message (cut/past from wrong
    workspace).
    2. LogWriter(deltaT:integer, t1:DateTimeData, t2:DateTimeData)
    [snip]
    task.part.logmgr.put('| ');
    task.part.logmgr.put(deltaT);
    task.part.logmgr.put(' | ');
    task.part.logmgr.put(t1);
    task.part.logmgr.put(' | ');
    task.part.logmgr.put(t2);
    task.part.logmgr.putline(' |');
    [snip]
    OK, it's just a quick 'n dirty but it does the job for testing.
    Regards,
    Dirk
    -----Original Message-----
    From: Attila Rácz [mailto:[email protected]]
    Sent: Thursday, 7 October 1999 14:35
    To: Haben, Dirk
    Subject: Re: (forte-users) What could have caused the
    StopWatch class to
    return a negative v alue?
    Hi Dirk,
    1. You don't instantiate the StopWatch object!!! So the
    attached code have to
    throw a NIL exception. On my PC it does:
    "Trying to invoke a method on a NIL object (qqos_StopWatch, 1)."
    2. Send the whole LogWriter method for analyzing.
    Attila
    "Haben, Dirk" wrote:
    G'day
    Suppose the following output is produced:
    Loaded Forte Message Catalog 'fortemsg/en_us.cat'
    NLM Startup is Complete - Partition's Locale is 'c'
    Loading partition CollectResponseStatistics_cl0_Client built on 30-Sep-1999
    09:12:28.
    Attached to manager for node BLAH.
    %DiH-I-VERID: CollectResponseStatistics_v371.002
    %DiH-I-BGP, BGP Started...
    %DiH-I, Repeat Interval (in milliseconds) 300000
    %DiH-I, Sample Account Number: 123456
    %DiH-I-BGPSTART, BackgroundProcessing started at: 07-Oct-1999 08:54:16
    | Total Time | Account Fetch | Account Fetch |
    | in milliSeconds | Start Time | Completion Time |
    |-----------------|----------------------|----------------------|
    | -194 | 07-Oct-1999 08:54:16 | 07-Oct-1999 08:54:17 |
    What could cause the stopwatch class to return this negative value? Here is
    the code that is run:
    sw : StopWatch;
    //that line is actual as follows:
    sw : StopWatch = new;
    //*****[Dirk]
    >>
    BP_t1 : DateTimeData = new;
    BP_t2 : DateTimeData = new;
    BP_t1.SetCurrent();
    self.LogWriter('%DiH-I-BGPSTART, BackgroundProcessing started at: ',BP_t1);
    self.LogWriterHeading();
    tmpAcc : account = new;
    sw.fire();
    BP_t1.SetCurrent();
    tmpAcc = self.AccountFetch(aAccountNumber);
    BP_t2.SetCurrent();
    deltaT : Integer = sw.split();
    self.LogWriter(deltaT,BP_t1,BP_t2);
    Oh, and the logwriter is just a formatted logmgr.put(deltaT) ,
    logmgr.put(t1) etc
    Any light on this one much appreciated.
    Thanks,
    Dirk
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to:
    [email protected]
    Attila Racz Lufthansa
    Systems Hungary
    BUD LSYH
    E-mail: [email protected] .-``'.
    Tel.: (36 1) 431-2910 .` .' Mazsa ter 2-6.
    Fax : (36 1) 431-2977 _.-' '._ H-1107
    Budapest, Hungary

    Attila
    1. Ops - I DO instantiate it as follows:
    [snip]
    sw : StopWatch = new;
    [snip]
    I missed the "= new" in the orig mail message (cut/past from wrong
    workspace).
    2. LogWriter(deltaT:integer, t1:DateTimeData, t2:DateTimeData)
    [snip]
    task.part.logmgr.put('| ');
    task.part.logmgr.put(deltaT);
    task.part.logmgr.put(' | ');
    task.part.logmgr.put(t1);
    task.part.logmgr.put(' | ');
    task.part.logmgr.put(t2);
    task.part.logmgr.putline(' |');
    [snip]
    OK, it's just a quick 'n dirty but it does the job for testing.
    Regards,
    Dirk
    -----Original Message-----
    From: Attila Rácz [mailto:[email protected]]
    Sent: Thursday, 7 October 1999 14:35
    To: Haben, Dirk
    Subject: Re: (forte-users) What could have caused the
    StopWatch class to
    return a negative v alue?
    Hi Dirk,
    1. You don't instantiate the StopWatch object!!! So the
    attached code have to
    throw a NIL exception. On my PC it does:
    "Trying to invoke a method on a NIL object (qqos_StopWatch, 1)."
    2. Send the whole LogWriter method for analyzing.
    Attila
    "Haben, Dirk" wrote:
    G'day
    Suppose the following output is produced:
    Loaded Forte Message Catalog 'fortemsg/en_us.cat'
    NLM Startup is Complete - Partition's Locale is 'c'
    Loading partition CollectResponseStatistics_cl0_Client built on 30-Sep-1999
    09:12:28.
    Attached to manager for node BLAH.
    %DiH-I-VERID: CollectResponseStatistics_v371.002
    %DiH-I-BGP, BGP Started...
    %DiH-I, Repeat Interval (in milliseconds) 300000
    %DiH-I, Sample Account Number: 123456
    %DiH-I-BGPSTART, BackgroundProcessing started at: 07-Oct-1999 08:54:16
    | Total Time | Account Fetch | Account Fetch |
    | in milliSeconds | Start Time | Completion Time |
    |-----------------|----------------------|----------------------|
    | -194 | 07-Oct-1999 08:54:16 | 07-Oct-1999 08:54:17 |
    What could cause the stopwatch class to return this negative value? Here is
    the code that is run:
    sw : StopWatch;
    //that line is actual as follows:
    sw : StopWatch = new;
    //*****[Dirk]
    >>
    BP_t1 : DateTimeData = new;
    BP_t2 : DateTimeData = new;
    BP_t1.SetCurrent();
    self.LogWriter('%DiH-I-BGPSTART, BackgroundProcessing started at: ',BP_t1);
    self.LogWriterHeading();
    tmpAcc : account = new;
    sw.fire();
    BP_t1.SetCurrent();
    tmpAcc = self.AccountFetch(aAccountNumber);
    BP_t2.SetCurrent();
    deltaT : Integer = sw.split();
    self.LogWriter(deltaT,BP_t1,BP_t2);
    Oh, and the logwriter is just a formatted logmgr.put(deltaT) ,
    logmgr.put(t1) etc
    Any light on this one much appreciated.
    Thanks,
    Dirk
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to:
    [email protected]
    Attila Racz Lufthansa
    Systems Hungary
    BUD LSYH
    E-mail: [email protected] .-``'.
    Tel.: (36 1) 431-2910 .` .' Mazsa ter 2-6.
    Fax : (36 1) 431-2977 _.-' '._ H-1107
    Budapest, Hungary

  • After updating my 4S to iOS 5.1.1 last night, none of my data applications are working today, nor Siri, iMessage or anything of the like. I'm at a loss as to what might have caused it. Is anyone else having this issue/has anyone found a fix?

    After updating my 4S to iOS 5.1.1 last night, none of my data applications are working today, nor Siri, iMessage or anything of the like. I'm at a loss as to what might have caused it. Is anyone else having this issue/has anyone found a fix? Everything seems to work fine if I connect to wireless, but if I'm not connected to it then nothing is working. My service provider says everything should be working fine, I still have the 3G symbol and full bars.

    Somebody clearly hasn't read the User Guide.
    Basic troubleshooting steps are retart, reset, restore from backup, restore as NEW. 
    If you have tried ALL of these steps and you're still having problems, then you need to bring your phone into Apple for evaluation.

  • I bought an ipad a few days before I went on holiday. On my return some weeks later I found my BT broadband had peaked astronomically. It had quadrupled my normal monthly usage. I hardly used it for wifi whilst there. Any ideas what may have caused it?

    Any ideas what may have caused it? 

    Thank you again....Not having a clue what WEP is, I've done a little research. I have a BT Home Hub 3 which apparently by default uses WPA.  BT have suggested I turn my hub off for 24 hours for them to monitor. However on returning home my February usage has gone back down again to it's average usage, so I think it's unlikely we'll learn a great deal. I am convinced the huge peak was caused somehow by my limited use of the ipad whilst we were abroad. I've been trying to get to the bottom of it, so that it doesn't happen again next time we go abroad.
    For interest the ipad doesn't have we fi plus cellular.
    The new BT Home Hub uses WPA (Wi-Fi Protected Access) encryption by default to protect the data that moves across the radio waves from it to other wireless devices. Many wireless devices sold today offer this more secure method of protection. WEP (Wireless Equivalent Privacy) is an older, less secure way of protecting such data. The BT Home Hub and BT Home Hub 1.5 both use WEP encryption by default since some older wireless devices are not compatible with stronger encryption types, such as WPA.

  • Selected from my iphone "Buy more ringtones"and it has dowloaded as a music file how do i get it to be a ring tone which is what should have happened.  Any ideas on how to fix this?

    selected from my iphone "Buy more ringtones"and it has dowloaded as a music file and is now in itunes on my laptop and in music on my iphone. How do i get it to be a ring tone which is what should have happened in the first place.  Any ideas on how to fix this? As in itunes I cannot see how to a) change it to a ring or b) drag across to the right area...
    I simply followed the prompts on my iphone 4s and would have expected it to end up as a ring tone.. any help, guidance, advice welcome...

    selected from my iphone "Buy more ringtones"and it has dowloaded as a music file and is now in itunes on my laptop and in music on my iphone. How do i get it to be a ring tone which is what should have happened in the first place.  Any ideas on how to fix this? As in itunes I cannot see how to a) change it to a ring or b) drag across to the right area...
    I simply followed the prompts on my iphone 4s and would have expected it to end up as a ring tone.. any help, guidance, advice welcome...

  • What should have the next update of Windows Phone ...

    In the next firmware update of Nokia Lumia 1020 and all the Windows Phone 8.3 update should have at least 4 extra functions and 8 updates.
    1. To exist 4 arrows up, down, left and right or at least the 2 basic arrows which is left and right in typing messages keyboard.
    Cause i have big fingers and i cant go exactly to the letter of the word that i want to correct - change.
    2. In typping messages i prefer to draw the letters just as i was writing to a blank paper or at least like SWYPE.
    3. I want to predownload the Sattelite View maps of a country and not just the ordinary one.
    4. It should have Ring Profiles such us Meeting, Loud Area, Silence and other.
    A. Need update the levels of the brightness of the screen.
    At this moment it has only 3 steps (Low-Medium-High), so it needs at least 2 more such us (Very Low and Very High).
    B. In Screen Lock needs up to 10 options for software fast state.
    C. In Fast Eye View in Night Mode should have not only 3 colors such us (Red,Green,Blue) but all the 20 colors that Thems has.
    The Size of the clock should be adjustable and not just one size.
    It should have at least 3 sizes (Small-Medium-Large).
    D. The camera should take only 1 photo in 38MP and not 2 photos 5MP+38MP.
    Also we should have the ability to edit the 38MP on my phone and not only on my PC.
    E. In Bluetooth i dont have any options.
    I need to change my BlueTooth Name and i cant.
    Also I want to set some BlueTooth devices to white and black list and i cant.
    F. I should have the option to know how much battery i have in percentage between 0-100% also in minutes left.
    G. In Wifi options i should know how much in percent is the signal between 0-100%.
    H. The tiles even when it is in small or medium size should be move as it was in large size.
    Also anyone who has any ideas that should been add any new funtion or anything else in the next Widnows Phone Update added down please.
    P.S. I have the Nokia PureView 808 and i want to transfer Contacts, Messages, Calendars, Notes, Photos, Music, Videos to my new Nokia Lumia 1020 and i cant.
    How can i transfer it all fast, secure and easy?

    Hello Paul.
    Thank you for your time and for your continue helping me.
    I see all help Nokia Videos and i did all your steps tha you suggest me.
    1. Ok but is says up something about Hotmail can i remove the hotmail option also?.
    2. I deselect the Sync for the accounts but still left some contacts inside my phone.
    Also when i want to backup my telephone numbers what i must do but not get messed with the email accounts.
    I want to backup the phone numbers as i did with my nokia account.
    My nokia account doesnt work with my lumia 1020.
    3. In the 1st i need to tap 2 times and then save.
    Cause the 1st menu is History Calls and if i tab once continue then the only option that i have is erase element.
    When i tab once then it goes me to profil for call and sms so i tab continue the call number and gives me the option copy.
    This to moves could be as one as it is in Symbian Belle.
    Not need to tab 2 times.
    In the 1st menu when i tab continue should give me 3 options Edit,Copy,Erase.
    Thats why Symbian Belle still rules.
    4. I dont want to use 1st the name cause also i have more contacts that have the same name than have contacts who have the same last name.
    Also many of the names and last names i have it use more than 10 characters in 1st and in last name each.
    So total is more than 20 characters without spaces or other characters.
    for example "Panagiotis Papadopoulos" is 23 characters most of the names that i have inside is between 20-30 characters.
    Please do something about that.
    5. Still need fix must disconnect the volume zoom from ringtone and vibration.
    Also need vibration some choices as continoues or with short pauses or increasing - decrease vibrating.
    6. I have 3 classes which are 40 people in each.
    So total is 120 students.
    I cant do 6 Groups for informing them.
    I need 1 up to 3 Groups not more.
    Also my co-workers are about 100 I cant do more than 1 or 2 Groups.
    My relatives are also about 60 also i need 1 Group again.
    I cant have so many groups as you tell me.
    Basicly I need 3 Groups to be easy and practicaly for me not 20 Groups.
    If Groups is not about then for what is?
    Also why in Symbian Belle i could add as many as i wanted and here i cant?
    What then i need to do 3 Groups?
    7. I try to do what you are telling me and it works only when i am not use 1st the search button.
    1st i must found the people that i want to inform.
    For example i set character 1 for class 1
    then when i use the search to find who is in class 1
    then shows me all the students in class 1
    but i must choose everyone, one by one and do all the same steps from the beggining.
    it should give me the option when has found the 30 person to set some box in the left and chooce all of them.
    That is not happening.
    Please check it.
    8. Finaly I found my 5MP + 38MP in the phone but 1st i must extract the 38MP to my computer so to edit.
    But i want to use always only my 38MP and never my 5MP photos.
    So we need some how to disable the option to take 2 pictures one 5MP and one 38MP.
    Its must take only one 38MP and nothing else.

  • What should have in equal tnsnames,ora and listener.ora?

    Hi forum members again I'm very new in oracle, and I'm trying to create a sucessfull net service name, using oracle net configuration assitant, but when I try to test it I got this error, .***"""ORA-12514: TNS:listener does not currently know of service requested in connect descriptor."""*** And I have read that tnsnames.ora and listener.ora should have some parameters in common, but exactly I don't know, Do you know what parameters should be? or The ORA-12514 problem , doesn't have relation with the tnsnames.ora and listener files?, If doesn't wich is the reason of this message?
    By the way I put what contain these files:
    ---------------------------------------------------------------------------listener.ora
    # listener.ora Network Configuration File: /opt/oracle/product/10.1.0.3/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = oracle.gentoo)
    (ORACLE_HOME = /opt/oracle/product/10.1.0.3)
    (SID_NAME = oracle)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    SAVE_CONFIG_ON_STOP_LISTENER = TRUE
    TRACE_LEVEL_LISTENER = USER
    /////////////////////////////////////////////////////////////////////////////tnsnames.ora
    # tnsnames.ora Network Configuration File: /opt/oracle/product/10.1.0.3/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    NORACLE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = tux)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = noracle)
    By the way what must be the username and the pasword that ask the ORACLE CONFIGURATION ASSINTANT to test the net service name? Must be the user name and password of the system user?
    Thanks in advance

    OK, here we go ... extra long as I intend to bookmark this and make reference, as this is a very common question ... skip to the bottom if you want my guess to the solution.
    Oracle Net Services (formerly SQL*Net, Net8, Oracle Networking) has two parts - the client and the server side. I'll discuss the server first, then the client.
    1) Server, and specifically Listener:
    The Oracle Listener is a monitor that listens for Oracle service requests on one or more ports. Usually this is on TCP/IP port 1521. When it gets an Oracle request from any network client, it checks whether it's in the list of Oracle Services for which it is monitoring. If found, it will contact that service, request a connection for the client, tell the service and client where and how to connect, and get itself out of the loop.
    Notes:
    a) It can listen on behalf of any number of services;
    b) A service can be a database instance, an EPG service (the DBMS_EPG is the replacement for Apache in the database in 10gR2), an external job, etc;
    c) One listener can listen on behalf of multiple database instances;
    d) The services can be listed in the LISTENER.ORA or they can self-register;
    e) If databases self-register, they use the initialization parameter LOCAL_LISTENER
    f) If self-registering, the listener should be up before the database
    g) Shutting down the listener will stop future connections, but has no impact on existing ones.
    One frequent point of confusion - a connection request on the local machine may loop out to the network and contact the listener, or it may bypass the listener entirely and use a bequeath adapter. The 'beq' connection is the 'normal' connection by "sqlplus / as sysdba" or "sqlplus system/manager" on the local machine (note that no @instance was used ... in *nix, that is derived from the $ORACLE_SID environment variable)
    In your listener.ora, you specify global_dbname=oracle.gentoo and sid_name=oracle. I assume therefore you can find an initoracle.ora or spfileoracle.ora somewhere on your system.
    2) Client:
    A client that wants to connect to an Oracle service uses the client side of the Oracle Net Services. The definition of client includes: any Oracle client utiltiy (SQLPlus, SQLLoad, Forms, Reports, etc.); an Oracle database instance that wants to make a external procedure call or a dblink; third party tools such as ODBC and JDBC.
    In SQL*Net version 1 the connection was made by specifying the target in the connect string ("user/password@host:listener_port:sid") and that is also used these days by many JDBC drivers, especially the Oracle Thin JDBC driver. Oracle's Easy connection mechanism uses a similar variant.
    Since SQL*Net Version 2, Oracle has supported the concept of alias translation. Basically it's very similar in concept to DNS - give it the name of the service and tell it where to find the translation table. The translation tables include TNSNAMES.ORA, ONAMES servers (deprecated in 10g), LDAP usng Oracle's OiD. The choice of translation table, and alternate order if the lookup fails in one, is stored in the SQLNET.ORA (if one exists).
    Assuming TNSNAMES.ORA, the chain of events is:
    - get the alias to look up (in your case NORACLE);
    - if the SQLNET.ORA has a DEFAULT_DOMAIN setting, (often =WORLD) append a dot and that value to the alias;
    - go to the TNANSMES.ORA file pointed by the TNS_ADMIN variable (environment or registry), or (if not set) the one in the $ORACLE_HOME/network/admin directory;
    - look up the first occurance of the alias;
    - if found, use the protocol specified to request a connection to the host, usin DNS to unravel the host to an IP address if necessary (in your case TCP/IP, to TUX) ;
    - if host connection if made, connect to the listener that is configured for that port (in your case 1521);
    - if listener is there, ask it for connection to the service (in your case, you are asking for instance 'noracle');
    i if the listener knowwss about the service, it will hand off the request.
    Your problem appears to be asking for instance 'noracle' in the tnsnames but listeneing for 'oracle' at the listener. Of course, I can not see any auto-registered instances which you would get from "lsnrctl status" on the server.

  • IMac with 10.6. Firefox opens but does web pages will not load. It just "thinks" indefinately. Can't think what may have caused, just stopped working one day

    Safari works fine. Have reset, reinstalled, disabled ad-ons. Am coming up with blanks on the support site.

    https://support.mozilla.org/en-US/kb/fix-problems-connecting-websites-after-updating
    If you are using a third-party firewall, you might want to check that. Other security software can also cause problems with an updated version of Firefox.

  • I took my mac book pro to an apple store to repair a broken lcd display.  When we go to pick it up, they tell us the drive is corrupted therefore the hard drive had to be wiped clean!  What could have caused this?

    I am wondering how i could have a corrupted drive, when right before the lcd screen cracked I was writing a paper.  They pretty much gave only one option which was the wipe it clean, they didn't even allow us to ex

    Why didn't you ask the repair tech who told you your drive is corrupted? 

  • Any idea what could have caused this screen issue?

    I was wiping off the keyboard on my Mac pro 1,1 and now the screen looks like the attached photo. I am running OS 10.7.5 and had no issues with the computer or the monitor until a few minutes ago
    It is a Gateway KX2153 monitor and I tried adjusting the screen with little help. Everything is all washed out now.
    Any suggestions on how to fix this?

    Here is how the web page itself looks with the posted question

  • Windows 7 crash on starting of Photoshop CS6, any idea what could have caused this?

    Any advise is much appreciated

    Operating system drivers are most likely responsible for system crashes.
    See if you can update your display driver, from the web site of the maker of your video card.
    -Noel

  • My friends iPad isn't acting under the same apple id as her iPod although it is so she cannot FaceTime or I'm from her IPad and what should have happened is her devices should have streamed as one cloud under her apple I'd between her devices.

    Any suggestions?

    I'd love to help but I don't understand the issue.  Please try again with periods and caps and real sentences.

  • TS3697 I do not have the Photos pane in my iTunes. What might have happened and how do I restore it ?

    Last week I was able to sync photos to my iPad and this week the "photos" pane is absent from my iTunes screen on my computer. Does anyone have an idea as to what I may have done or what may have caused this?

    Yes I realise this. I click on the IPAD icon in the left hand corner. When it opens the menu across the top does not include the Photo pane. Includes are like the Info Apps Music Movies etc.

  • ITA Policies and protection schemas - What should I expect.

    Hi all.  I am working on a streaming windows store app the uses a PMP and I need  to apply protection to the output.  I have tried several protection schema to determine if my implementation is correct but the results have not been what I
    expected. 
    For example for my DVI connection (MFCONNECTOR_DVI) it states that it supports
    MFPROTECTION_DISABLE. If I enable it I get a decode error and playback is rejected.  According to the documentation that I have what should have happened is the video rectangle should
    have been blanked while the rest of the screen is left unaffected.  If I look at the logs I can see that GetSchemaType() of my IMFOutputSchema implementation object returns the guid MFPROTECTION_DISABLE
    and GetConfigurationData() returns the non-zero value that states that it should be enabled.  However I don't see a call to GetOriginatorID().
    I have also tried MFPROTECTION_CONSTRICTVIDEO.  In this case GetSchemaType() also returns the appropriate guid and GetConfigurationData() returns a nonzero value stating that it should
    be enabled.  For the max number of pixels allowed I set that as a double word attribute MFPROTECTIONATTRIBUTE_CONSTRICTVIDEO_IMAGESIZE set to 50 which equates to 50,000 pixels.  This is all per the documentation I have.  I was expecting the
    video to be degraded.  I tried less and more but didn't see an affect. In this case I also don't see the call to GetOrigonatorID().
    Have any of you used these protections systems?  What were your observations?  Difficulties?
    In the end I have to have HDCP and CGMSA but I need test equipment to verify that its actually working.
    Thanks

    AFAIK, these attributes are only compatible with desktop app, I'm not sure if they can work in Store app...
    Best Regards,
    Please remember to mark the replies as answers if they help

Maybe you are looking for

  • Unable to retrieve tables from this connection

    I have been using Dreamweaver for over 5 years. I have been using an Access database and ASP the entire time. I am using a Windows 2000 server for the database and web site. I have used every verson of Dreamweaver since Ultra Dev. When I bought verso

  • Custom JAAS Module - How to use in certification test?

    Hello, I just read the document about certification for custom JAAS modules ("BC-AUTH-SAML Test Plan"). What I don't understand is how our custom login module can get the custom information it needs (like a certain request parameter). First, what we

  • 6288 - screen goes dark after 15 seconds

    Hi Have just purchased a 6288. Screen goes dark after 10 - 15 seconds if you don't touch the keypad - very annoying if reading a message. Have turned Power saver and sleep mode off, but screen still goes dark. Does anyone know how to stop it from doi

  • Want to organize library by "album", not "album by year"

    I had my library organized by "album". I closed itunes, started back up, and now it appears as "album by year" (even though the right-click drop down menu lists it as just "album". I have tried closing itunes, restarting the computer, and downloading

  • Podcast is downloading twice on same file. How do I correct this problem?

    I'm in charge of podcasting for my church. For the last four weeks, the podcast feed has been doubling the time. I'm not getting the same sermon in two different files, but the sermon comes in twice on the same file. In other words, a sermon that sho