Help on 2 error messages / code request please

Why am I getting this error message about an abstract when I'm not declearing one.
error messages I'm getting below -----------
.\LkList.java:26: Method LinkedList getList() requires a method body. Otherwise declare it as abstract.
public LinkedList getList();
DCalc.java:10: class LkList is an abstract class. It can't be instantiated.
LkList Expression =new LkList(exp);
code below ------------------------------
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.event.*;
import java.util.*;
class JCal extends JFrame implements KeyListener
     JLabel answer, expression;
     JButton b1, b2, b4, b5, b6, b7, b8, b9, b10, b11, b12, b13, b14, b15, b16, b17, b18, b19,
          b20, b21, b22, b23, b24, b25, b26, b27;
     JMenuBar menuBar;
     JMenu menu;
     JMenuItem menuItem, menuItem1;
     LkList equation;
     String exp="";
     String ans="";
     double memory=0;
     public JCal()
     {     super("Nicks Swing Calculator");
//------------------------- labels ---------------------------------------------
          answer = new JLabel(" 0 "); //Answer Lable
          answer.setBounds (20, 20, 220, 30);
          answer.setBorder (BorderFactory.createLoweredBevelBorder());
          answer.setBackground (Color.pink);
answer.setHorizontalAlignment (SwingConstants.RIGHT);
          expression = new JLabel(" 0 "); // Expression Lable
          expression.setBounds (20, 55, 220, 30);
          expression.setBorder (BorderFactory.createLoweredBevelBorder());
          expression.setBackground (Color.white);
//------------------------- menu -------------------------------------------------
          menuBar = new JMenuBar();
          setJMenuBar (menuBar);
          menu = new JMenu ("File");
          menuItem = new JMenuItem (" Help", new ImageIcon("help.gif"));
          menuItem1 = new JMenuItem (" Splash Page");
          menuItem.addActionListener(new ActionListener() // Help menu
          {     public void actionPerformed(ActionEvent e)
               {     new JHelp();
menuItem1.addActionListener(new ActionListener() // Splash Page
          {     public void actionPerformed(ActionEvent e)
               {     new JSplash();
//------------------------ buttons ------------------------------------------------
          JButton b1 = new JButton (new ImageIcon ("mc.gif")); // MR button
          b1.setBounds(20, 100, 55, 50);
          JButton b2 = new JButton (new ImageIcon ("mr.gif")); // MC button
          b2.setBounds(75, 100, 55, 50);
JButton b3 = new JButton (new ImageIcon ("ms.gif")); // MS button
          b3.setBounds(130, 100, 55, 50);
JButton b4 = new JButton (new ImageIcon ("mplus.gif")); // M+ button
          b4.setBounds(185, 100, 55, 50);
          JButton b5 = new JButton (new ImageIcon ("seven.gif")); // 7 button
          b5.setBounds(20, 170, 55, 50);
          JButton b6 = new JButton (new ImageIcon ("eight.gif")); // 8 button
          b6.setBounds(75, 170, 55, 50);
          JButton b7 = new JButton (new ImageIcon ("nine.gif")); // 9 button
          b7.setBounds(130, 170, 55, 50);
JButton b8 = new JButton (new ImageIcon ("div.gif")); // divide button
          b8.setBounds(185, 170, 55, 50);
          JButton b9 = new JButton (new ImageIcon ("four.gif")); // 4 button
          b9.setBounds(20, 220, 55, 50);
          JButton b10 = new JButton (new ImageIcon ("five.gif")); // 5 button
          b10.setBounds(75, 220, 55, 50);
          JButton b11 = new JButton (new ImageIcon ("six.gif")); // 6 button
          b11.setBounds(130, 220, 55, 50);
          JButton b12 = new JButton (new ImageIcon ("times.gif")); // times button
          b12.setBounds(185, 220, 55, 50);
JButton b13 = new JButton (new ImageIcon ("one.gif")); // 1 button
          b13.setBounds(20, 270, 55, 50);
          JButton b14 = new JButton (new ImageIcon ("two.gif")); // 2 button
          b14.setBounds(75, 270, 55, 50);
          JButton b15 = new JButton (new ImageIcon ("three.gif")); // 3 button
          b15.setBounds(130, 270, 55, 50);
          JButton b16 = new JButton (new ImageIcon ("minus.gif")); // minus button
          b16.setBounds(185, 270, 55, 50);
          JButton b17 = new JButton (new ImageIcon ("zero.gif")); // 0 button
          b17.setBounds(20, 320, 55, 50);
          JButton b18 = new JButton (new ImageIcon ("neg.gif")); // negitive button
          b18.setBounds(75, 320, 55, 50);
          JButton b19 = new JButton (new ImageIcon ("dot.gif")); // decimal button
          b19.setBounds(130, 320, 55, 50);
          JButton b20 = new JButton (new ImageIcon ("add.gif")); // addition button
          b20.setBounds(185, 320, 55, 50);
          JButton b21 = new JButton (new ImageIcon ("left.gif")); // left bracket button
          b21.setBounds(20, 375, 110, 35);
          JButton b22 = new JButton (new ImageIcon ("right.gif")); // right bracket button
          b22.setBounds(130, 375, 110, 35);
          JButton b23 = new JButton (new ImageIcon ("equals.gif")); // equals button
          b23.setBounds(20, 415, 220, 35);
JButton b24 = new JButton (new ImageIcon ("clear.gif")); // clear button
          b24.setBounds(20, 460, 55, 50);
          JButton b25 = new JButton (new ImageIcon ("ce.gif")); // ce button
          b25.setBounds(75, 460, 55, 50);
          JButton b26 = new JButton (new ImageIcon ("sqrt.gif")); // sqrt button
          b26.setBounds(130, 460, 55, 50);
          JButton b27 = new JButton (new ImageIcon ("percent.gif")); // % button
          b27.setBounds(185, 460, 55, 50);
          //------------------- adding everything on the pane -------------------
          Container contentPane = getContentPane();
          contentPane.setLayout(null);
          // the default layout is BorderLayout
          contentPane.add(b1); // adds buttons
          contentPane.add(b2);
          contentPane.add(b3);
          contentPane.add(b4);
          contentPane.add(b5);
          contentPane.add(b6);
          contentPane.add(b7);
          contentPane.add(b8);
          contentPane.add(b9);
          contentPane.add(b10);
          contentPane.add(b11);
          contentPane.add(b12);
          contentPane.add(b13);
          contentPane.add(b14);
          contentPane.add(b15);
          contentPane.add(b16);
          contentPane.add(b17);
          contentPane.add(b18);
          contentPane.add(b19);
          contentPane.add(b20);
          contentPane.add(b21);
          contentPane.add(b22);
          contentPane.add(b23);
          contentPane.add(b24);
          contentPane.add(b25);
          contentPane.add(b26);
          contentPane.add(b27);
          contentPane.add(answer); // adds answer label
          contentPane.add(expression); // adds expression lable
          menuBar.add(menu); // adds menu
          menu.add(menuItem); // adds menu item "Help"
          menu.add(menuItem1); // adds menu item "Splash Page"
//------------ button functions ---------------------------------------
          b1.addActionListener(new ActionListener()          // MR
          {     public void actionPerformed(ActionEvent e)
               {     String TempMemory="";
                    answer.setText(TempMemory.valueOf(memory)); }});
          b2.addActionListener(new ActionListener()          //Mc
          {     public void actionPerformed(ActionEvent e)
               {     memory=0; }});
          b3.addActionListener(new ActionListener()          //M-
          {     public void actionPerformed(ActionEvent e)
               {     Double DblTemp=new Double(answer.getText());
                    double dblTemp=DblTemp.doubleValue();
                    memory=memory-dblTemp; }});
          b4.addActionListener(new ActionListener()          //M+
          {     public void actionPerformed(ActionEvent e)
               {     Double DblTemp=new Double(answer.getText());
                    double dblTemp=DblTemp.doubleValue();
                    memory=memory+dblTemp; }});
b5.addActionListener(new ActionListener() // Seven
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"7";
                    expression.setText(exp); }});
          b5.addKeyListener(this);
          b6.addActionListener(new ActionListener() // Eight
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"8";
                    expression.setText(exp); }});
          b6.addKeyListener(this);
          b7.addActionListener(new ActionListener() // Nine
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"9";
                    expression.setText(exp); }});
          b7.addKeyListener(this);
          b8.addActionListener(new ActionListener()          // Divide
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"/";
                    expression.setText(exp); }});
          b8.addKeyListener(this);
          b9.addActionListener(new ActionListener() // Four
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"4";
                    expression.setText(exp); }});
          b9.addKeyListener(this);
          b10.addActionListener(new ActionListener() // Five
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"5";
                    expression.setText(exp); }});
          b10.addKeyListener(this);
          b11.addActionListener(new ActionListener() // Six
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"6";
                    expression.setText(exp); }});
          b11.addKeyListener(this);
          b12.addActionListener(new ActionListener()     // Times
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"*";
                    expression.setText(exp); }});
          b12.addKeyListener(this);
          b13.addActionListener(new ActionListener() // One
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"1";
                    expression.setText(exp); }});
          b13.addKeyListener(this);
          b14.addActionListener(new ActionListener() // Two
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"2";
                    expression.setText(exp); }});
          b14.addKeyListener(this);
          b15.addActionListener(new ActionListener() // Three
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"3";
                    expression.setText(exp); }});
          b15.addKeyListener(this);
          b16.addActionListener(new ActionListener()          // Minus
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"-";
                    expression.setText(exp); }});
          b16.addKeyListener(this);
          b17.addActionListener(new ActionListener() // Zero
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"0";
                    expression.setText(exp); }});
          b17.addKeyListener(this);
          b18.addActionListener(new ActionListener() // negative
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"-";
                    expression.setText(exp); }});
          b18.addKeyListener(this);
          b19.addActionListener(new ActionListener()          // Decimal
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+".";
                    expression.setText(exp); }});
          b19.addKeyListener(this);
          b20.addActionListener(new ActionListener()          // Addition
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"+";
                    expression.setText(exp); }});
          b20.addKeyListener(this);
          b21.addActionListener(new ActionListener()     // Left Bracket
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+"(";
                    expression.setText(exp); }});
          b21.addKeyListener(this);
          b22.addActionListener(new ActionListener()          // Right Bracket
          {     public void actionPerformed(ActionEvent e)
               {     exp=exp+")";
                    expression.setText(exp); }});
          b22.addKeyListener(this);
          b23.addActionListener(new ActionListener() // Equals
          {     public void actionPerformed(ActionEvent e)
               {     LkList equation = new LkList();
                    equation.ProcessExpress();
                    ans=equation.getAns();
                    answer.setText(ans);
                    exp="";
                    ans="";     }});
          b23.addKeyListener(this);
          b24.addActionListener(new ActionListener()          // Clear
          {     public void actionPerformed(ActionEvent e)
               {     exp="";
                    ans="";
                    expression.setText(exp);
                    answer.setText(ans); }});
          b25.addActionListener(new ActionListener()          // Clear Entry
          {     public void actionPerformed(ActionEvent e)
               {     exp="";
                    ans="";
                    expression.setText(exp);
                    answer.setText(ans); }});
          addWindowListener( new WindowAdapter()
                    {     public void windowClosing(WindowEvent e)
                         {     System.exit(0);
          this.setBounds(10, 10, 270, 600);
          this.show();
     public static void main(String[] args)
     {     new JCal();
public void keyReleased(KeyEvent evt){}
     public void keyTyped(KeyEvent evt) {}
     public void keyPressed(KeyEvent evt)
     {     char x=evt.getKeyChar();
          switch(x)
          {     case '0': exp=exp+"0";
                    expression.setText(exp);
                    break;
               case '1': exp=exp+"1";
                    expression.setText(exp);
                    break;
               case '2': exp=exp+"2";
                    expression.setText(exp);
                    break;
               case '3': exp=exp+"3";
                    expression.setText(exp);
                    break;
               case '4': exp=exp+"4";
                    expression.setText(exp);
                    break;
               case '5': exp=exp+"5";
                    expression.setText(exp);
                    break;
               case '6': exp=exp+"6";
                    expression.setText(exp);
                    break;
               case '7': exp=exp+"7";
                    expression.setText(exp);
                    break;
               case '8': exp=exp+"8";
                    expression.setText(exp);
                    break;
               case '9': exp=exp+"9";
                    expression.setText(exp);
                    break;
               case '+': exp=exp+"+";
                    expression.setText(exp);
                    break;
               case '-': exp=exp+"-";
                    expression.setText(exp);
                    break;
               case '*': exp=exp+"*";
                    expression.setText(exp);
                    break;
               case '/': exp=exp+"/";
                    expression.setText(exp);
                    break;
               case '.': exp=exp+".";
                    expression.setText(exp);
                    break;
               case '(': exp=exp+"(";
                    expression.setText(exp);
                    break;
               case ')': exp=exp+")";
                    expression.setText(exp);
                    break;
               default: break;
// ================================= equation =============================
class Equation
{     private double nbr1;
     private double nbr2;
     private char op;
     private double answer;
     private String StrNum1="";
     private String StrNum2="";
     private String StrOper="";
     private String StrAns="";
     //Constructor
     Equation(String number1, String number2, String operator)
     {     StrNum1 = number1;
          StrNum2 = number2;
          StrOper = operator;
          convert();
     public double getNum1() {return nbr1;}
     public double getNum2() {return nbr2;}
     public char getOp() {return op;}
     private void convert()
     {     Double temp=new Double(StrNum1);
          nbr1=temp.doubleValue();
          temp=new Double(StrNum2);
          nbr2=temp.doubleValue();
          op=StrOper.charAt(0);
     private void convertAnswer()
     {     StrAns=StrAns.valueOf(answer);
     public String toString()
     {     return StrAns;
     public void calculate()
     {     switch (op)
          {     case '+': answer=nbr1+nbr2;
                    break;
               case '-': answer=nbr1-nbr2;
                    break;
               case '*': answer=nbr1*nbr2;
                    break;
               case '/': answer=nbr1/nbr2;
                    break;
          convertAnswer();
// =============================== linked list ================================
class LkList
{  char[] operator = {'+','-','*','/','(',')'}; // operators used
LinkedList Express = new LinkedList(); // Linked list of expression
String StrExp = null;
String oper = ""; // operator
String number1 = ""; // first number used in expression
String number2 = ""; // second number used in expression
String answer = ""; // answer of expression
Exp TempExp; // Temporary expression
String Temp;
// Constructor
LkList (String e)
{ StrExp = e;
     formList (); // expression turn into liked list nodes
     trimList (); // remove spaces from linked list expression
public String toString()
     { return Express.toString();
public LinkedList getList();
     { return Express;
public String getAns()
     { return Express.get(0).toString();
public void ProcessExpress() // removing brackets
     {  removeBrack();
private void formList()
{  int j = 0;
boolean lastOper = true;
     for (j = 0 ; j < Express.length(); j++ )
{  if (!(belongTo(operator, StrExp.charAt (j))))
          {  Temp = Temp + StrExp.charAt (j);
     lastOperator = false;
     if (belongTo(operator, StrExp.charAt (j)))
     {   if ((StrExp.charAt (j) =='-') && (lastOperator))
          {   Temp = "-";
     lastoperator = false;
          else
          {   Express.add (Temp);
          Temp = "";
               Temp = Temp + StrExp.charAt (j);
               Express.add (Temp);
               Temp = "";
               if (StrExp.charAt (j) == ')')
               {  lastOperator = false;
               else
               {   lastOperator = true;
     Express.add (Temp);
     Temp = "";
private void trimlist ()
{   int sp = 0;
while ((sp !=-1))
{  sp = Express.indexOf ("");
     if (sp !=-1)
     {  Express.remove (sp);
private static boolean belongTo (char[] ar, char c)
{  for (int k = 0; k < ar.length; k++)
     {  if (c == ar[k]) return true;
return false;
private boolean findBrack ()
{  if (Express.contains (")"))
{  return true;
return false;
private void removePoints (int pt1, int pt2 )
{  int range = (pt2 - pt1);
for (int j = pt2; j >= pt1; j--)
{  Express.remove (j);
private void processOperator (String Oper)
{  int point =-1;
     while (Express.contains (Oper))
     {  point = Express.indexOf (Oper);
     oper = Express.get(point).toString();
          number1 = Express.get(point-1).toString();
          number2 = Express.get(point+1).toString();
          TempExp = new Exp (number1, number2, oper);
          TempExp.calculate();
          answer = Temp.toString();
          Express.add(point-1, point+1);
          removePoints (point-1, point+1);
point =-1;
private void removeBrack()
{  int opBrack = 0;
int clBrack = 1;
     int j = 0;
     String Temp = "";
     while (findBrack())
     {  clBrack = Express.indexOf (")");
     j = clBrack;
          do
          {  Temp = Express.get(j).toString();
          if (Temp.charAT(0) =='(')
          {   opBrack = j;
               j--;
          while (opBrack < 0);
          number1 = Express.get(opBrack +1).toString();
number2 = Express.get(clBrack -1).toString();
          oper = Express.get(opBrack+2).toString();
          TempExp = new Exp (number1, number2, oper)
          TempExp.calculate();
          answer = TempExp.toString();
          Express.add(clBrack+1, answer);
          removePoints(opBrack, clBrack);
          opBrack=-1;
          clBrack=0;
private void removeDivide()                         
     {     processOperator("/");                    
          remMult();                         
     private void removeTimes()                         
     {     processOperator("*");                         
          remAdd();                         
     private void removeAdd()                         
     {     processOperator("+");                         
          remSub();                         
     private void removeSub()                         
     {     processOperator("-");
// ================================= help menu ============================
class JHelp extends JFrame
{     JTextArea textarea;
     public JHelp()
     {     super ("Help");
          Container contentPane = getContentPane();
     /*     JPanel textPan1 = new JPanel (new BorderLayout());
          textarea = new JTextArea ("How to use Nicks Calculator");
          textarea.setWrapStyleWord(false);
          JScrollPane textAreaPane1 = new JScrollPane (textarea);
          textPan1.add (textarea, BorderLayout.CENTER);
          contentPane.add(textPan1);
          textarea.setEnabled(false); */
          JLabel lab=new JLabel(new ImageIcon("helpmenu.jpg"));
          contentPane.add(lab, BorderLayout.CENTER);
          setBounds(400,200,400,400);
          this.show();
// ================================ Splash Page =============================
class JSplash extends JFrame
{     public JSplash()
{   super ("Splash Page");
          Container contentPane=getContentPane();
          JLabel lab=new JLabel(new ImageIcon("nick.jpg"));
          contentPane.add(lab, BorderLayout.CENTER);
          setBounds(400,200,250,320);
          this.show();

Spot the difference:
public LinkedList getList();
public LinkedList getList()
Notice the semi-colon. Thats the problem

Similar Messages

  • My iphone 4s cant activate after i update the ios to 6.0.1, always shows this message " Your request couldn't be processed" we are sorry but there was an error processing your request, Please try again later........please someone help me...

    My iphone 4s cant activate after i update the ios to 6.0.1, always shows this message " Your request couldn't be processed" we are sorry but there was an error processing your request, Please try again later........please someone help me???

    It sounds a lot like your phone was jailbroken or hacked to unlock it before you updated.
    Was it?

  • Hi.my itunes appear this error ERROE CODE:1009 please help me

    hi.my itunes appear this error ERROE CODE:1009 please help me

    Read my post. I don't know if you're having the same problem but I hope this helps. http://discussions.apple.com/thread.jspa?threadID=1351705&tstart=0
    Message was edited by: Happyfish

  • BluRay error message "code 6, audio buffer underflows. Total bitrate is too high near time = 000000 seconds."

    Hello,
    I’m trying to create BluRays using Encore and I keep getting the following error messages: ‘code 6, audio buffer underflows. Total bitrate is too high near time = 000000 seconds.”
    For info, I created a H264 Bluray - NTSC 24fps master from an Apple prores HQ in Adobe Media Encoder. Duration: 52m, size: 11go. I'm on Mac OSX 10.9.5, the bluray burner is Samsung SE-506CB/RSWD and the BR disks are TDK Blu-ray Disc 50 Spindle - 25GB 4X BD-R - Printable.
    I looked around in forums and tried the following without success: replacing disk name to shorter name without space, creating bluray without menu frame, I also tried with a Mpeg2 bluray master. I tried to export a new master but I can't seem to be able to change the audio bitrate.
    Can anyone please help ?
    Thanks.

    Hi Stan, thanks for getting back.
    I tried to create a new master from Media Encoder but I can only export audio in PCM, I don't get a dolby option. See pic below.
    I tried a new project in Encore and chose PCM instead of Dolby in the preference menu, but I still got the same error. Should I try again limiting bitrate to 15 ? I was on 30 before.
    Please help, I've already wasted 10 bluray and this is getting really frustrating!

  • Error Message = ORA-20001: Please make sure all system pa

    Hi,
    We have 2 business group one default setup business group and another one new one.
    There is a common custom workflow for timesheet approval. This workflow process working without any problem with default business group (setup Business Group). But new businees group giving following error:
    Error in Workflow PMSTSAPR/50112*156 ORA-20001: Please make sure all system pa
    Item Type = PMSTSAPR
    Item Key = 50112*156
    User Key =13-OCT-01
    Error Name = -20001
    Error Message = ORA-20001: Please make sure all system pa
    Error Stack =
    XXPM_WF_TS_APPROVAL_PKG.start_sub_approval_workflow p type PMSTSAPR pkey 50112*156 item type PMSTSAPR item key 50112*156/1(PMSTSAPR, 50112*156/1)
    XXPM_WF_TS_APPROVAL_PKG.Find_Approver - 8 (PMSTSAPR, 50112*156)
    Wf_Engine_Util.Function_Call(XXPM_WF_TS_APPROVAL_PKG.FIND_APPROVER, PMSTSAPR, 50112*156, 173547, RUN)
    Activity Id = 173547
    Activity Label = TIMESHEET_APPROVAL_PROCESS:START_CHILD_PROCESS
    Result Code = #EXCEPTION
    Notification Id =
    Assigned User =
    I will appreciate, if somebody can help me .
    Also this workflow process are submitting from Oracle Forms.
    Regards
    Satheesh Kumar

    Problem solved,
    Custom database function raised this error

  • Touchscreen not working: error message code 45, says "device is not connected to the computer"

    My subject message basically says it all.  My touchschreen is not working at all.  I went into device manager and found error message code 45, which states that the "device is not connected to the computer."
    I have tried updating drivers, uninstalling and reinstalling the device, and other things, but nothing working.
    All advice appreciated.

    Hi @Jim9 ,
    Welcome to the HP Forums!
    I saw your post regarding the error code 45. From what you have described this sounds like it is a hardware issue. The only real troubleshooting I can recommend (that you haven't already done), is going a full System Recovery to restore it back to factory defaults. If the issue still occurs then we know it is a hardware problem.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • When I try to sign in to my account on iTunes, I get the above error message, along with "Please review your account information". When I then click on "Review"

    When I try to sign in to my account on iTunes, I get the above error message, along with"Please review your account information".
    When I then click on "Review", it comesup with the page "Create an Apple Account for the iTunes Store"and presents me with the Terms Of Service.
    When I click "Agree",  It is disabled.
    Can anyone tell me why this has happened and how to resolve it?
    Please, please, please help.

    Count me in as having the same problem. I have been leaving messages in the iTunes for Mac forum where others in there also are having problems. I have been unable to access my account since 11/7/2007. E-mails with Apple have not worked and now I haven't heard back from them since Saturday. I have tried both on a Mac and Windows machine and keep receiving the same error message that:
    This Apple ID has not yet been used with iTunes.
    I last purchased music with this account on 10/30/2007. I even tried resetting my password, changing my account info, trying on a computer with iTunes 7.4, etc. I have money in that account and 150 songs and 5-6 tv shows that I cannot access. I also just purchased a new computer and cannot sync my iPod with this computer since these songs will not transfer.
    Apple really needs a phone number for technical support. Having to deal with e-mails back and forth (and waiting a day for each e-mail) is not a good business practice. Hopefully they will have a phone number in the future.
    Either way, count me in on getting annoyed that a week later, this issue has not been fixed.

  • The error message: SE 337 Please enter a line number.

    Dear Experts,
    We have a PO that can not be transferred to P1 because of the error message:
    SE 337 Please enter a line number.
    We tried to checked the transfer of the PO.
    The error message came from the Backend Function BBP_PO_INBOUND.
    But it is not possible to define the exact cause of the issue (the exact transfer parameter) due to missing RFC authorization.
    The following changes were made in the PO (PO already mapped in Backend) after that PO cannot be transferred:
    - a deleted item was set back
    - WBS Element was changed
    Thank you in advance.
    Best regards
    Evgeny

    Hello Evgeny,
    Whenever you create a  PO in SRM irrespective of number of the
    line items chosen, in the backend system this PO will contain
    a single line item in the Item section.
    If you delete all the line items in the PO and
    attempt to undelete them the undeletion will not work since the PO is already
    considered to be deleted in the backend.
    Please try delete and undelete a individual line item
    in a PO provided there is at least one item which is not deleted.
    hope this helps
    Daniel

  • After updating ADE to version 2.0 I am getting the error message 'code E_AUTH_NOT_READY'

    after updating ADE to version 2.0 I am getting the error message 'code E_AUTH_NOT_READY' when trying to authorize my computer (Adobe Id is correct, password I have refreshed, but ..) what to do?
    Running ADE on WinXP with recent SP
    ===> use CTRL-SHIFT-D in ADE to de-authorize and then re-authorize vial Help-Menu

    yes, I agree with what you say: the note '==> ...' is the solution to
    my problem, found it after some time in another thread  
         regards
         Von: sjpt <[email protected]>
         An: zwergenerv <[email protected]>
         Betreff: after updating ADE to version 2.0 I
    am getting the error message 'code E_AUTH_NOT_READY'
         Datum: Mon, 23 Sep 2013 10:59:41 +0200
    RE: AFTER UPDATING ADE TO VERSION 2.0 I AM GETTING THE ERROR MESSAGE
    'CODE E_AUTH_NOT_READY'
      created by sjpt in Adobe Digital Editions - View the full
    discussion

  • Oracle error message code 1653 op 4, ORA-01653: unable to extend table

    Hi
    Our application use Oracle 9i as database. I modified one of tables and try to convert it from this application, then I got an Oralce 1653 error as followings:
    Creating Table SAMPLE_T
    Copying data from SAMPLE to SAMPLE_T
    Unable to move data from table 'SAMPLE' to table 'SAMPLE_T'
    Oracle error message code 1653 op 4, ORA-01653: unable to extend table SAND.SAMPLE_T by 1024 in tablespace SAMPLE_RESULT
    I suspect the tablespace SAMPLE_RESULT is not big enough and also can not extended automatically, but not sure if it is right or there maybe other reasons behind this error.
    Any idea?
    Thanks
    Li

    Lets try .....
    SQL> select tablespace_name,sum(bytes)/1024 from dba_free_space where tablespace_name='USERS' group by tablespace_name;
    TABLESPACE_NAME                SUM(BYTES)/1024
    USERS                                      384
    SQL> alter database datafile 'C:\ORACLE\ORADATA\MYDB\USERS01.DBF' autoextend off;
    SQL> alter table scott.emp allocate extent;
    Table altered.
    SQL> /
    alter table scott.emp allocate extent
    ERROR at line 1:
    ORA-01653: unable to extend table SCOTT.EMP by 128 in tablespace USERSI believe you must add more space to tablespace SAMPLE_RESULT or set the autoextend on for associated datafiles.
    Hope it help ..
    Bhupinder

  • I can't download Lightroom for some reason.  I keep getting this error:  Exit Code: 7 Please see specific errors below for troubleshooting. For example,  ERROR: DW006 ...  -------------------------------------- Summary ------------------------------------

    I can't download Lightroom for some reason.  I keep getting this error:
    Exit Code: 7
    Please see specific errors below for troubleshooting. For example, ERROR: DW006 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s)
    ----------- Payload: Adobe Photoshop Lightroom 5 5.4.0.0 Adobe Photoshop Lightroom 5.pkg_5.4 -----------
    ERROR: DW006: Apple Package failed to install successfully.
    ERROR: Third party payload installer Adobe Photoshop Lightroom 5.pkg failed with exit code: 1

    Link for Download & Install & Setup & Activation problems may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/

  • Error message: The request for account "iCloud" failed.  The server responded with "400" to operation CalDAVUpdateShareesQueuableOperation.

    I created a new public iCAL. Trying to send invitations to join and am receiving this error message:
    The request for account “iCloud” failed.
    The server responded with
    “400”
    to operation CalDAVUpdateShareesQueuableOperation.
    Tried copying the URL link provided for the Calendar into a MailChimp announcement.  Not working.
    I've tried the uncheck calendar method on iCLOUD and re-checking to stop the pop-up message.
    Is this perhaps because they don't have an iCLOUD account? If they have iTUNES, shouldn't it work?
    Appreciate any help. 

    Try this first:
    In iCal Preferences…, choose Accounts, then select the account that is giving you trouble. Uncheck the box labeled Enable this account. Wait a few seconds, then re-check the box. This should solve the problem.

  • I have downloaded a movie from ITunes.  It shows up in my video app.  When I go to play it I get an error message: "The requested URL was not found on this server". When I checked back on iTunes, where you click to rent or buy a movie it says "Downloaded"

    I have downloaded a movie from ITunes.  It shows up in my video app.  When I go to play it I get an error message: "The requested URL was not found on this server". When I checked back on iTunes, where you click to rent or buy a movie it says "Downloaded".  Any advice on what I can do in order to watch this movie that I rented a couple of weeks ago?

    Select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History on your computer.

  • HT201210 Just replaced the battery in my iPhone 4S.  Before doing so I backed-up then wiped the phone.  Now when I go to restore it, it gets about 3/4 done and that is when I get an error message, "Code 1." does this mean I fried it??  :-(

    Hello,
      Just replaced the battery in my iPhone 4S.  Before doing so I backed-up then wiped the phone.  Now when I go to restore it, it gets about 3/4 done and that is when I get an error message, "Code 1." does this mean I fried it??

    Hey joshuafromisr,
    If you resintall iTunes, it should fix the issue. The following document will go over how to remove iTunes fully and then reinstall. Depending on what version of Windows you're running you'll either follow the directions here:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    http://support.apple.com/kb/HT1925
    or here:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Best,
    David

  • TS1368 I cannot sync my iTunes library to my iphone 5 can you help I get error message connection could not be established to iPhone

    I cannot sync my iTunes library to my iphone5 can you help I get error message a connection could not be established to the iPhone

    Yes it is.
    Initially I got an error message saying can't connect because of Date & Time settings.
    Went in and re-verified that those were correct.
    Tried to update downloads and then got a new error message: "Can't connect to iTunes Store".
    I live in the US and that's where I created my iTunes a/d and Apple ID.
    I am currently in India --- can that coause confusion re date & time?

Maybe you are looking for

  • Configration of Deffered Tax

    Hai, How do we configured about the deferred Tax? Where we will show? Thanks in advance, kindly helpmeout RameshK Moderator: Please, read and respect the rules of SDN

  • Read Statement with Single key with multiple values

    Dear Friends, In ECC 4.6c, I wrote statement like this. Read table message with key type = 'E' or 'S'. if sy-subrc = 0. Populated the message log to output internal table. endif. But when i transported to QA which is ECC 6.0, it is giving error. Can

  • IMac G5 - Can't find accurate tech info

    Hello, Forum; My G5 iMac developed a problem last week where it tries to start, the screen stays dark (no activity what so ever) and the fan goes into overdrive. All conventional work-arounds have had no effect (restarting from DVD drive to reinstall

  • Multiple Streams From iTunes

    Currently, use multiple streams to two Airport Express stations to various parts of the house when I entertain guests. If I add an Apple TV, will I be able to stream music to it at the same time as the two Airport Express stations? Has anyone tried t

  • Can't open file://-URLs (Links) in Mail or Messages. Adium works. What is wrong?

    Hi, in our office, we send links to documents on our server with file://-URLs. In Yosemite (Mail and Messages) it is no longer possible to open these links via the services menu (open URL). Adium works. Do I have to change something in my Yosemite-Co