Facing troubles with "requestFocus()"

Hi
Can anyone help me telling what is wrong with my code?. I hv 2 JTextFields and both will hv their values checked when losing focus. My problem is that a MessageDialog is showed telling what's wrong for the user, but then when ok button is clicked, the same messagedialog appears but with no button or message and everything freezes.
Here's my code
public void focusGained(FocusEvent e)
public void focusLost(FocusEvent e)
if (e.getSource().equals(edtCityCode))
//check if CityCode is valid or not               
if (!valid)
JOptionPane.showMessageDialog(null, "This code is not valid. Type another");
edtCityCode.requestFocus();
else if (e.getSource().equals(edtCityName))
if (edtCityName.getText().equalsIgnoreCase(""))
JOptionPane.showMessageDialog(null, "You must type field = cityname");
edtCityName.requestFocus();
Thanks in advance.

After reading all over Sun/Google/Yahoo about this bug and the workarounds posted for this problem I finally got to get it to work as per my requirements.
Following were some of the constraints that I had:-
1) All screens are already developed and buttons are already coded so I cannot go back and
substitute extended JButton instance with has altered behaviour regarding focus events.
So the one possible workaround that for this problem which involved extending JButton was ruled out.
2) I want to make the IV generic so that it can read from some property file the rules to validate this.
(I did not include this stuff in the implementation below but if you need that you can ask via email.
3) I did not liked the idea of altering the basic plaf which was another way how people have worked out their ways from this problem.
So here is my solution.
1: Assign an extended verifier SCAInputVerifier to the JTextField/JTextArea. Pass the Container that contains the text field to the constructor of SCAInputVerifier.
2: First time when the verify() method is called it creates a SCAJFocusListner as listed below. It validates and keeps the result in SCAInputVerifier but always returns true.
3: As soon as the focus is about to loose to the next component the SCAJFocusListner comes into picture
and displays the message via JOptionPane.showMessageDialog().
(Before clicking the Ok button on this error message dialog if the user clicks on any AbstractButton it showed random behaviour.
This is addressed in point 5)
(Optional)
4: As a general rule I we have all Cancel button or Close button closing the JDialog and their name starts with Cancel.
If the user clicks cancel or close button on the screen user is allowed to go exit.
5: Now the main problem:If the focus was going to a AbstractButton it was showing weired behaviour.
It was getting pressed as soon as mouse was over that button.
This problem is fixed in focusLost() method of SCAFocusListener.
6: The focus is requested back into the text field.
* SCAFocusListener.java
* Created on August 14, 2003, 7:01 PM
package walgreens.sca.system;
import java.awt.event.*;
import javax.swing.*;
* @author Yogesh Gadge
public class SCAFocusListener extends FocusAdapter{
private SCAInputVerifier iv = null;
public SCAFocusListener(SCAInputVerifier iv) {
super();
this.iv=iv;
public void focusLost(FocusEvent fe) {
if ( (! iv.isGood()) && iv.getParentPane()!= null && iv.getParentPane().isVisible()) {
java.awt.Component opp = fe.getOppositeComponent();
//if cancel or close button
if (opp instanceof AbstractButton) {
AbstractButton aBut = (AbstractButton)opp;
String name = aBut.getText();
if(name != null && (name.trim().toLowerCase().startsWith("cancel") || name.trim().toLowerCase().startsWith("close"))) {
return;
//workaround for bug in JDK 1.4.1 bugID 4342333
ButtonModel mod = aBut.getModel();
aBut.revalidate();
if (mod.isArmed())
mod.setArmed(false);
if (mod.isPressed())
mod.setPressed(false);
JOptionPane.showMessageDialog(iv.getParentPane(),"Input is invalid.");
java.awt.Component c = fe.getComponent();
//fe.consume();
c.requestFocusInWindow();//InWindow();
} else
super.focusLost(fe);
import javax.swing.*;
import java.awt.event.*;
* @author Yogesh Gadge
public class SCAInputVerifier extends javax.swing.InputVerifier {
private java.awt.Container parentPane=null;
private boolean good = false;
private FocusListener focusListener = null;
/** Creates a new instance of SCAInputVerifier */
public SCAInputVerifier(java.awt.Container parentPane) {
this.parentPane=parentPane;
public boolean verify(javax.swing.JComponent comp) {
if (focusListener == null)
comp.addFocusListener(createFocusListener());
this.good=true;
if (comp instanceof javax.swing.text.JTextComponent) {
javax.swing.text.JTextComponent field = (javax.swing.text.JTextComponent) comp;
String input = field.getText();
System.out.println(input);
try {
//lets say it is convergence factor
double d = Double.parseDouble(input);
if (d < 0.0 || d >=1.0 )
good=false;
} catch(Exception e) {
good=false;
return true;
public boolean isGood() {
return this.good;
protected FocusListener createFocusListener() {
FocusListener f = new SCAFocusListener(this);
System.out.println(f);
this.focusListener=f;
return f ;
/** Setter for property good.
* @param good New value of property good.
public void setGood(boolean good) {
this.good = good;
/** Getter for property focusListener.
* @return Value of property focusListener.
public java.awt.event.FocusListener getFocusListener() {
return focusListener;
/** Setter for property focusListener.
* @param focusListener New value of property focusListener.
public void setFocusListener(java.awt.event.FocusListener focusListener) {
this.focusListener = focusListener;
/** Getter for property parentPane.
* @return Value of property parentPane.
public java.awt.Container getParentPane() {
return parentPane;
/** Setter for property parentPane.
* @param parentPane New value of property parentPane.
public void setParentPane(java.awt.Container parentPane) {
this.parentPane = parentPane;

Similar Messages

  • Has anyone faced troubles with iPhone internal speaker?

    Unfortunately, since I've bought my iPhone 4S less than 8 months, I'm facing troubles with the internal speaker of the phone.
    It was enough just to restart the device to get the ringtone and speaker work.
    But today, suddenly, the voice has disappeared again! I can hear the ppl calling me but no any other tones or rings r working.
    I googled for a solution, and I was shocked that I found a lot of iPhone users r facing the same problem!
    With all types of iPhone, seems it's been a long time problem with apple software that apple hasn't found a solution to it, nor admitting that they have such problem.
    I need to get my phone fixed, but I do t want to lose my data, photos, a d programs..
    And I DON'T WANT TO LEAVE MY PHONE AT A WORK SHOP! It's a HEADACHE?
    So please if u have any other easy solutions to provide, I'll be so thankful.

    Have you tried resetting your iPhone?
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds). Ignore the "Slide to power off"
    A further troubleshooting step would be to backup your iPhone and then restore it as new using iTunes.

  • HT201496 Hai there. I am facing trouble with my garageband apple loops.i don't see apple loops in my browser since quite some time i don't know what has happened to it and how it happened . i just wanted to learn some of basic things about music.can you h

    Hai there. i am having a trouble with the garage band apple loops to get into my macbook pro. . i had it some time back and i dont know where it has gone and how it get it back. is there anyone to help me to get the loops back into the browser . i will be grateful to you if some one can help me with it/ thanks.

    First check, if you do not accidentally have hidden or filtered your loops:
    Uncheck the "Filter for more relevant results" option in the Audio tab of the GarageBand Preferences.
    And the drop down menu on top of the Loop Browser should be set to "Loops", not to some Jam Pack or other collection.
    If you still don't see any loops, check if you have set your project to a special signature, like 9/8, for that no standard loops do exist.
    Then check, if any loops actually are installed in your system Library: Depending on your GarageBand version you should find the standard loops in the Audio folder of your system Library (Application Support > GarageBand):
        Your System Drive > Library > Audio > Apple Loops
    If the Loops are installed, but GarageBand does not show them, you need to rebuild your Apple Loops Index: See the FAQ for how to do it:
    Re-Index GarageBand's Loops
    This requires two steps:
    erase the old Apple Loops Index by deleting everything in
    Your System Drive > Library > Audio > Apple Loops Index
    and then rebuilding the Loops Index by dragging the folder containing all of your loops onto the Loop Browser in GarageBand.
    If no Loops are installed in your Library, you will have to restore them from your Backup.
    Regards
    Léonie

  • Trouble with the hosted website from a page viewer web part. (Sahrepoint 2010)

    Hi everyone,
    I am facing trouble with sharepoint and I would like some help.
    I use Sharepoint 2010 and I have included a page viewer page part in one the pages I 've created that hosts another website. Although most of the functionality of the hosted website is there, some functions of it don't work. These functions are apply buttons
    or downloading documents buttons. My guess is that the web part has to update dynamically and it should be independent from the Sharepoint page.
    Is there a way to do this? It is important that the website is hosted in the since at the same page I have s guide on how to use the hosted website.
    If this can't be done using a page viewer webpart I am open to other suggestions as well.
    Thanks in advance!
    Sakis

    Is it possible that the hosted website page is using HTML5 of other functionality that isn't supported by the IE-8 restriction in the SharePoint master page? We've run into that before, where the page wouldn't work in the page viewer. I also had problems
    where Chrome/Firefox wouldn't display a pager viewer when it crossed hosts/changed protocol.
    What I had to do was add some javascript/Jquery to pop up another window to view the page if I wasn't on IE, getting out of the restriction of the SharePoint master page. If I was in IE the page viewer webpart worked.  Not ideal, but maybe you could
    adapt - they could see your instructions on the page but work with the host page on another.
    <script type="text/javascript" src="/Javascript/JQuery/JQueryMin-1.8.2.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
    var isIE = /*@cc_on!@*/false || document.documentMode;
    if(!isIE) {
    window.open('http://fmgblog/measure/email/dashboard.php');
    }); // end of document ready
    </script>
    Robin

  • JavaMail troubles with

    I'm still facing troubles with my javamail combination. the reason is that I want to send data which should be select from my sql database....
    at the moment my main problem is that I do not know how to combine my code fragments....
    here is my mailbean for sending javamail
    package coreservlets;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class MailBean {
         public String sendMail() {
              Properties props = new Properties();
                props.put("mail.smtp.host", "mail.xxx.com");
                Session s = Session.getInstance(props,null);
                MimeMessage message = new MimeMessage(s);
                InternetAddress from = null;
              try {
                   from = new InternetAddress("[email protected]");
              } catch (AddressException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                try {
                   message.setFrom(from);
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                InternetAddress to = null;
              try {
                   to = new InternetAddress("[email protected]");
              } catch (AddressException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                try {
                   message.addRecipient(Message.RecipientType.TO, to);
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                try {
                   message.setSubject("something");
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                try {
                   message.setText("MESSAGE SHOULD BE DATA SELECTED FROM DATABASE");
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                try {
                   Transport.send(message);
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              return ("mailsuccess");}
    }but this code fragment does not send the data from the database... so I wrote another method for selecting data from mysql:
         public String SelectMail() {
             try {
                 Class.forName( "com.mysql.jdbc.Driver" ); //( "org.gjt.mm.mysql.Driver");
                 Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/imac", "user", "password");
                 try {
                      PreparedStatement ps = con.prepareStatement("SELECT (firstname, lastname, companyname, brench, email) FROM table;");
                      ps.setObject(1, firstname);
                      ps.setObject(2, lastname);
                      ps.setObject(3, companyname);
                      ps.setObject(4, brench);
                      ps.setObject(5, email);
                      ps.executeUpdate();
                 } finally {
                     con.close();
             } catch (ClassNotFoundException e) {
                  // TODO: handle exception here
                  return null;  // stay on the same page
             } catch (SQLException e) {
                  // TODO: handle exception here
                  return null;  // stay on the same page
            return("mailsuccess");  // or whatever for Navigation
         }I'm sorry but i really do not know how to combine them... shall i put them together into one method?
    or is it necessary to call up one method by the other.....
    please, please help me

    I really do my best but I'm completely confused now....
    I tried to do the following.. but the problem ist the return(ps); is not a string which is expected :(
    I really need your help...
    package coreservlets;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class MailBean {
         public String sendMail() {
              Properties props = new Properties();
                props.put("mail.smtp.host", "xxx.xx");
                Session s = Session.getInstance(props,null);
                MimeMessage message = new MimeMessage(s);
                InternetAddress from = null;
              try {
                   from = new InternetAddress("[email protected]");
              } catch (AddressException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                try {
                   message.setFrom(from);
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                InternetAddress to = null;
              try {
                   to = new InternetAddress("[email protected]");
              } catch (AddressException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                try {
                   message.addRecipient(Message.RecipientType.TO, to);
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                try {
                   message.setSubject("Questionnaire - Answers");
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                try {
                   message.setText(SelectMail());
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                try {
                   Transport.send(message);
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              return ("mailsuccess");
         public PreparedStatement SelectMail() {
             try {
                 Class.forName( "com.mysql.jdbc.Driver" ); //( "org.gjt.mm.mysql.Driver");
                 Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/imac", "user", "password");
                 try {
                      PreparedStatement ps = con.prepareStatement("SELECT * FROM questionnaire;");
                      ps.executeUpdate();
                     return ps;
                 } finally {
                     con.close();
             } catch (ClassNotFoundException e) {
                  // TODO: handle exception here
                  return null;  // stay on the same page
             } catch (SQLException e) {
                  // TODO: handle exception here
                  return null;  // stay on the same page
    }thanks a lot!!!

  • I have Iphone 3g but I'm facing a huge trouble with it once it's discharged it doesn't switch on again even with it's own cable

    hii i have iphone 3g but i am facing a huge trouble with it.Once it's discharged it doesn't switch on again even if i connect it with electricity . what should i do?? please answer me.

    Hello manal1994,
    You may want to try resetting and, if necessary, restoring your iPhone.
    iPhone, iPad or iPod touch: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    If the device remains unresponsive or does not turn on (or power on), try resetting
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds.
    If there is no video, verify that the device has enough charge to turn on
    If you are using an iPad, ensure that it's connected to the 10W USB Power Adapter.
    Let charge for at least twenty minutes, then see if it starts normally.
    If there is no image on the screen, press the Home button to attempt to wake the device.
    If the screen displays a red battery icon, let the device to continue to charge until it turns on.
    If the above steps do not resolve the issue, or the if the screen remains black or shows a persistent Apple logo, try restoring with iTunes
    Connect the device to your computer and open iTunes.
    If the device appears in iTunes, select and click Restore on the Summary pane. Learn more about restoring iOS software.
    If the device doesn't appear in iTunes, try to force the device into recovery mode.
    All the best,
    Allen

  • Trouble with 3 ATV to connect to iTunes in one WiFi / LAN

    Hi community,
    I've trouble with my ATVs in my network. I have 1 3Gen. ATV connected via LAN to iTunes on iMac and 2 2Gen. ATVs via WiFi. The problem I am facing is, if I am connected with two of them to my iTunes Library the third can't even the others ( which have been conneted) are off. If I restart iTunes, I can connect again two of them and the third (doesn't matter which one) cannot. So I can circle arround which one gets connected but it is not very satisfying. 
    My network is setup on two Airport express and a TC 2Gen to cover the whole house. As I stated above, the ATV 3Gen is connected via Lan, and the other two via WLAN?
    Any idea what I've made wrong, or what to do to find the problem?
    Thanks in advance

    Until the MacBook Air was released and supported in 10.5, the Mac did not consider USB to be a valid Networking Protocol. So set the Mac with USB solutions aside.
    To connect computer-to-computer, you typically need to be using an Ethernet crossover cable. Assigning the same address to two Ethernet devices is never the solution -- it gives a Network Conflict, just as you said.
    If your Windows box has some mechanism for Sharing its WiFi connection over Ethernet, you would have to follow its rules. Whether that means Manually assigning an Ethernet Address in the same range or the PC will provide the Address, I do not know.
    Best success may be running an Ethernet cable to your Wired/Wireless Base Station, or using a "gaming adapter" (Ethernet-to-Wireless no drivers required) connected to the Mac's Ethernet port to give it WiFi access. What is your Base Station {Cable, DSL, FIOS, Other} ? Ethernet cables can be up to 100 meters (an American Football Field). Often the Base Station can be moved closer for more convenience.

  • OC4J: Troubles with characters in Reports 9i and JSP

    We are having troubles with especial characters in OC4J. Those problems appear in JSP's and Reports.
    Some information about it:
    - the especial characters in spanish are replaced by strange characters (2 chars for every especial char).
    - this happens with strings from ApplicationResources.properties (we use Struts framework) and NOT with those chars read from database via JDBC.
    - the problem doesn't happen in JDeveloper. It happens when we deploy the application to iAS 9i R2. With reports, it happens both from RWBuilder and local OC4J + RWServlet
    - When we used iAS R1 core version this didn't happen. When we changed to iAS R2 full installation (to be able to use Reports Server) it began to happen.
    Any help about it ?
    Thanks

    Hi Pozo,
    Have you got the solution for the problem specified. Even I'm facing the same problem with Arabic characters.
    Pl. let me know if you've got the solution.
    Thanks,
    Vinod.

  • Trouble with SQL Expressions

    Hello everyone,
    I'm having trouble with this SQL expression that works in 8.5, and XI R2 runtime and designer, but I cannot edit the expression.  As soon as I open the SQL Expression and click the X-2 check button, the error following
    SQL Expression I'm trying to run:
    (Select Distinct b1.CandEmploymentType
        from ceistaffing a1
        inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
    Where a1.Staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID"
        and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
    The Errror I Receive After Clicking the X-2 button:
    Crystal Reports
    Error in compiling SQL Expression :
    Failed to retrieve data from the database.
    Details: ADO Error Code: 0x
    Source: SalesLogix OLE DB Provider
    Description: The multi-part identifier "CEIHRPROJECTEDACTUAL.STAFFINGCHAINID" could not be bound.
    Native Error:  [Database Vendor Code: 181797304 ].
    OK  
    This is the SQL statement passed to the database:
    SELECT (Select Distinct b1.CandEmploymentType
    from ceistaffing a1
    inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
    Where a1.Staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID"
    and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
    If I reverse the order of the where clause as follows, I do not get the error
    (Select Distinct b1.CandEmploymentType
    from ceistaffing a1
    inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
    Where CEIHRPROJECTEDACTUAL."STAFFINGCHAINID" = a1.Staffingchainid
    and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
    This is the working SQL statement passed to the database.
    SELECT (Select Distinct b1.CandEmploymentType
    from ceistaffing a1
    inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
    Where CEIHRPROJECTEDACTUAL."STAFFINGCHAINID" = a1.Staffingchainid
    and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
    FROM   "sysdba"."CEIHRPROJECTEDACTUAL" "CEIHRPROJECTEDACTUAL"
    I figured I would just reverse the where clause statements, but then I came to this one that I couldn't get to work:
    (Select case when tmp.restartcount = 0 then 'F' else 'T' end from
    (Select Count(b.restart) as restartcount from ceistaffing a inner join ceihrprojectedactual b on a.staffingchainid = b.staffingchainid
    where a.candcontactid = (Select distinct candcontactid from ceistaffing a2 where a2.staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID")
    and b.restart = 'T'
    and a.createdate = (Select min(a1.createdate) from ceistaffing a1
                   where a1.createdate > (Select max(a3.createdate)
                                  from ceistaffing a3
                                  where a3.staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID")
                   and a1.candcontactid = a.candcontactid)) as tmp )
    I've burned an entire day trying to find some solution.  Are there any patches out there that will fix this?
    I'm running Crystal Report XI Release 2 SP2 - Version 11.5.8.826
    Thank you, ...Rob

    Okay, to simplify the illustration of the problem Iu2019m facing, Iu2019ve created a bare bones example as described below:
    I've created a report that returns all contacts from our "CONTACT" table.  On the report, I've created a SQL expression to return a count of all contacts with the similar last name, as shown below:
    (Select count(a1.ContactID) from CONTACT a1 where a1.LASTNAME = "CONTACT"."LASTNAME")
    When I try to save the SQL expression,  I get this error:
    Crystal Reports
    Error in compiling SQL Expression :
    Failed to retrieve data from the database.
    Details: ADO Error Code: 0x
    Source: SalesLogix OLE DB Provider
    Description: The multi-part identifier "CONTACT.LASTNAME" could not be bound.
    Native Error:  [Database Vendor Code: 205193720 ].
    OK  
    This SQL expression works fine in CRW 8.5, but no luck in XI R2 SP4 - As mentioned above in the thread, this seems to be an issue solely with how XI R2 is parsing the SQL Expression.  If I remove the "A1" alias from my expression all is good, but that will not work for some of the more advanced SQL expressions I have that are using joins and sub queries.
    What will it take to get this recognized as an issue worthy of a hot fix?  I'm at a stand-still here, facing the unfortunate possibility of having to re-architect many of my reports.  Please help.
    Thank you, ...Rob
    Edited by: Rob Bartram on Aug 6, 2008 3:45 PM

  • Trouble with te camera

    Hello everybody, I have some trouble with my new M4 aqua. When I use the camera app for filming something that's work but when I want to see the video I can't.The video doesn't start. Can someone help me ? Sorry for my poor english.

    I´m facing the same problem here. This weekend I have recorded 4 videos using M4´s camera, but I cannot view them in the cell phone. The files are in MP4 format. I´ve also tried to see these videos in my computer, but I can only hear the audio, no image.  I could not find any setup about file format used by the camera. Any tip here?

  • Trouble with DateTime

    Hi experts.
    We are facing a trouble with DateTime in Java Server.
    The OS (windows server) shows the hour 7:30 a.m. (non summer time)
    However, in the graphical mapping, when I use currentDate, i get 8:30 a.m. (summer time)
    All time zones are equals.
    Does anyone have an ideia how we can fix it?

    Hi Diego,
    You might want to check the time settings of the SAP system you are working with. Your basis consultant can help you with this.
    Regards,
    Glenn

  • I AM TRYING TO DOWNLOAD A FRESH COPY OF CS6 BUT HAVING TROUBLE WITH MY SERIAL NUMBER

    I AM TRYING TO DOWNLOAD A FRESH COPY OF CS6 BUT HAVING TROUBLE WITH MY SERIAL NUMBER?

    Hi Rob,
    Please share few more details about the issue you facing.
    Which Operating system you have?
    Which product are you using?
    What exact error message/code you get?
    Thanks,
    Ratandeep Arora

  • I have been having a lot of trouble with the latest itunes update and my ipod classic 80Gb i.e. being unable to sync songs, but now i have no files at all on my ipod, it is completely blank when i view it from my computer. I need help, please, anybody.

    As it says above, i have been having a lot f trouble with my ipod classic and the latest itunes update, i was unable to sync songs or anything to it and have tried every conceivable 'fix' i could find. i have run an itunes diagnostic and the results are posted below. a major problem is that when i try and view my ipod through my computer it displays nothing at all on the ipod, no files or anything, this may be the problem but i have no idea how it has happened or how i could resolve it.
    This ipod holds huge sentimental value and i am loathe to buy a new one! If anybody can help it is greatly appreciated, than kyou in advanced.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    ASUSTeK Computer Inc. K50IJ
    iTunes 11.1.5.5
    QuickTime not available
    FairPlay 2.5.16
    Apple Application Support 3.0.1
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.1.1.3
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0038B8600B98D1E0
    Current user is not an administrator.
    The current local date and time is 2014-03-21 16:52:39.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: 2fd81a1f13cf3ff25a8b4f0e8e725116
    **** Device Connectivity Tests ****
    iPodService 11.1.5.5 (x64) is currently running.
    iTunesHelper 11.1.5.5 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) ICH9 Family USB Universal Host Controller - 2934.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2935.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2936.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2937.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2938.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2939.  Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A.  Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • Trouble with Toshiba built-in webcam: "unable to enumerate USB device"

    I am running archlinux on a Toshiba Satellite L70-B-12H laptop, and having troubles with the Webcam. *Once in a while*, everything goes well and I get
    # lsusb
    Bus 004 Device 002: ID 8087:8000 Intel Corp.
    Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 004: ID 04f2:b448 Chicony Electronics Co., Ltd
    Bus 003 Device 003: ID 8087:07dc Intel Corp.
    Bus 003 Device 002: ID 8087:8008 Intel Corp.
    Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    # dmesg
    [ 3433.456115] usb 3-1.3: new high-speed USB device number 4 using ehci-pci
    [ 3433.781119] media: Linux media interface: v0.10
    [ 3433.809842] Linux video capture interface: v2.00
    [ 3433.826889] uvcvideo: Found UVC 1.00 device TOSHIBA Web Camera - HD (04f2:b448)
    [ 3433.835893] input: TOSHIBA Web Camera - HD as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.3/3-1.3:1.0/input/input15
    [ 3433.835976] usbcore: registered new interface driver uvcvideo
    [ 3433.835977] USB Video Class driver (1.1.1)
    Unfortunately, *most of the time* the camera seems invisible to my system, and I get
    # lsusb
    Bus 004 Device 002: ID 8087:8000 Intel Corp.
    Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 003: ID 8087:07dc Intel Corp.
    Bus 003 Device 002: ID 8087:8008 Intel Corp.
    Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    (note the missing "04f2:b448 Chicony Electronics Co., Ltd" device), and
    # dmesg
    [ 480.104252] usb 3-1.3: new full-speed USB device number 4 using ehci-pci
    [ 480.171097] usb 3-1.3: device descriptor read/64, error -32
    [ 480.341235] usb 3-1.3: device descriptor read/64, error -32
    [ 480.511375] usb 3-1.3: new full-speed USB device number 5 using ehci-pci
    [ 480.578007] usb 3-1.3: device descriptor read/64, error -32
    [ 480.748151] usb 3-1.3: device descriptor read/64, error -32
    [ 480.918282] usb 3-1.3: new full-speed USB device number 6 using ehci-pci
    [ 481.325196] usb 3-1.3: device not accepting address 6, error -32
    [ 481.392091] usb 3-1.3: new full-speed USB device number 7 using ehci-pci
    [ 481.798926] usb 3-1.3: device not accepting address 7, error -32
    [ 481.799166] hub 3-1:1.0: unable to enumerate USB device on port 3
    Searching on the web, most results I found lead to this page, where it is said that the problem is due to badly tuned overcurrent protection, and advocated that unplugging and switching off the computer for a little while gets things back into normal. This does not really work for me; the problem seems to occur more randomly, unfortunately with high probability (my camera is available after less than one boot out of ten).
    I tried to ensure that the ehci-hcd module is loaded at boot with the ignore-oc option (with a file in /etc/module-load.d/), to no avail.
    I also wrote a script which alternatively removes and reloads the ehci-pci driver until my device is found in lsusb. It is sometimes helpful, but usually not. And even when my device is found that way, it can only be used for a while before disappearing again.
    Anyway, such a hack is unacceptable... So, my questions are:
    is it indeed related to overcurrent protection ?
    is there anything else I can try ?
    should I file somewhere an other of the numerous bug reports about "unable to enumerate USB device" already existing ?
    If of any importance, I am running linux 3.15.7, because at the time I installed my system, I couldn't get the hybrid graphic card Intel/AMD working under 3.16.
    Last edited by $nake (2014-10-18 16:29:06)

    uname -a
    Linux libra 3.9.4-1-ARCH #1 SMP PREEMPT Sat May 25 16:14:55 CEST 2013 x86_64 GNU/Linux
    pacman -Qi linux
    Name : linux
    Version : 3.9.4-1
    Description : The linux kernel and modules
    Architecture : x86_64
    URL : http://www.kernel.org/
    Licences : GPL2
    Groups : base
    Provides : kernel26=3.9.4
    Depends On : coreutils linux-firmware kmod mkinitcpio>=0.7
    Optional Deps : crda: to set the correct wireless channels of your country
    Required By : nvidia
    Optional For : None
    Conflicts With : kernel26
    Replaces : kernel26
    Installed Size : 65562.00 KiB
    Packager : Tobias Powalowski <[email protected]>
    Build Date : Sat 25 May 2013 16:28:17 CEST
    Install Date : Sun 02 Jun 2013 15:30:35 CEST
    Install Reason : Explicitly installed
    Install Script : Yes
    Validated By : Signature

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

Maybe you are looking for

  • Is iPod compatible with windows media player 11?

    Hello, is iPod compatible with windows mediaplayer 11?

  • Calculate tab for form field properties

    This question was posted in response to the following article: http://help.adobe.com/en_US/acrobat/X/pro/using/WS4516ED9A-07B3-46c7-B547-E083678A2D44.w.h tml

  • Forget all that....Word doesn't work in Yoshmite!

    32 GB New  imac, working great in Mavericks (well, except the audio interface and click problem!) BUT, now... with every click in a Word document, the beachball begins to spin. EVERY CLICK! Painstaking work! Tried several suggestions that are out the

  • Inbound Interface for Accepting Bank Statement Through EDI

    Hi All ,                 Pls Help me out to complete this  Scenerio with u r Ideas and Inputs .     Inbound Interface for Accepting Bank Statement Through EDI. Rgds Rafi .

  • Carousel in a state

    Hello, I tried to put a carousel in a state but it doesn't work. Does anyone know why ? <mx:State name="MetzPromo">      <mx:RemoveChild target="{image1}"/>      <mx:RemoveChild target="{button1}"/>      <mx:RemoveChild target="{button2}"/>      <mx: