C7 belle music player error. Plz help.

i have copied a couple of mp3 from pc to mobile and refreshed the music library. All the mp3 were working perfect.. After some days i deleted the copied folder. There are other mp3s in music folder in my mmc which i use to hear frequently. Now, after deleting the copied folder, i tried to refresh the library but it says "refresh stopped' and when i click libary details it says 'file is corrupt. Operation cancelled'
I can see the album art but cant see any files in that !!! Cross checked the path and played via files.
M using belle frmwr vrsn 111.030.0609 which is latest available in my area.
If you want to thank someone, just click on the BLUE STAR at the bottom of their post
Solved!
Go to Solution.

Hi Stefan W.. unfortunately there is no other way that resetting ur phone..
Have u tried with "Show hidden files" option in windows ? (tried? then skip to next portion)
If not and u dont know, please follow :
1. open computer
2. click Tools and select Folder Option.. (Windows 7 or older)
Click view and select options>>folder n search options in windows 8.
3.Mark to Show Hidden Files..
Then check for the private folder.
Resetting your phone..
If u dont know how to reset the phone please read more..
Backup imp things and... Switch of phone
Press PowerButton+Volume Down Button+ Camera Button for a while..
Hold VolDwnBtn+Cam Btn when the phone vibrates... ( remove from power button)
Your phone is now ressetted..
If you want to thank someone, just click on the BLUE STAR at the bottom of their post

Similar Messages

  • NOKIA 5700 Music PLAYER MALFUNCTION PLZ HELP!!

    HI everyone..
    i hv a nokia 5700 and the music player is giving a little bit of problem..
    wehenever i twist da fone to view dedicated music keys and play next or previous song, the opposite arrow highlights in da display...
    say if i press >>| then the one highlighted on the display is | WEIRD??
    V.03.27
    12-04-07
    RM-230
    Nokia 5700(20.01)
    plz suggest a solution..
    help largely APPRECIATED..
    ==ISINOTIS==using NOKIA 5700 XpressMusic

    SORRY...WAT I MEANT WAS:
    say if i press >>| then the one highlighted on the display is | WEIRD??
    ==ISINOTIS==using NOKIA 5700 XpressMusic

  • Payment error.plz help me

    We are into problem while processing your request.
    (PS1036ti)
    Confim purhase error
    Plz help me
    #Amir

    When I want to use my credit card and set it in my Q5 this error comes,I do,kt know what should I do???
    #Amir

  • Adding "window to a container:illegal argument exception".error plz help

    Thanks to Mr.Andrew and sun for developing the following code for a
    mediaplayer which is implemented in jmf.This is working in core java. But
    when i have converted it to Applet it compiles but an error adding "window
    to a container:illegal argument exception".code is given below plz point
    me where is the error;
    import javax.media.*;
    import java.text.DecimalFormat;
    import java.awt.*;
    import java.awt.FileDialog;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    class nwa extends WindowAdapter{
    frameclass frame;
    public nwa(frameclass frame){
    this.frame=frame;
    public void windowClosing (WindowEvent e)
    //User selected close from System menu.
    //Call dispose to invoke windowClosed.
    frame.dispose ();
    public void windowClosed (WindowEvent e)
    //if (player != null)
    //player.close ();
    System.exit (0);
    class frameclass extends JFrame
    frameclass(){
    nwa n=new nwa(this);
    this.addWindowListener(n);                    
    public class PlayerApplet extends JApplet
              implements
    ActionListener,ControllerListener,ItemListener, KeyListener
    frameclass frame=new frameclass();
    Player player;
    Component vc, cc;
    JProgressBar volumeBar;
         JButton fastRewind;
         JButton fastForward;
         JButton play;
    int sizeIncrease = 2;
    boolean invokedStop = false;
         /** Big */
         int progressFontSize=30;
    boolean first = true, loop = false;
    String currentDirectory;
    public void init(){
    JMenu m = new JMenu ("File");
    JMenuItem mi = new JMenuItem ("Open...");
    mi.addActionListener (this);
    m.add (mi);
    m.addSeparator ();
    JCheckBoxMenuItem cbmi = new JCheckBoxMenuItem ("Loop", false);
    cbmi.addItemListener (this);
    m.add (cbmi);
    m.addSeparator ();
    mi = new JMenuItem ("Exit");
    mi.addActionListener (this);
    m.add (mi);
    JMenuBar mb = new JMenuBar ();
    mb.add (m);
    frame.setJMenuBar (mb);
    setSize (200, 200);
         final JPanel p = new JPanel(new GridLayout(1,0,5,5));
              p.setBorder(new EmptyBorder(3,5,5,5) );
              fastRewind = new JButton("<html><body><font size=+"+
    sizeIncrease+ "><<");
              fastRewind.setToolTipText("Fast Rewind");
              fastRewind.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        if (player!=null) {
                             invokedStop = false;
                             skipBack();
                        } else {
    JOptionPane.showMessageDialog(play,
                             new JLabel("Open a sound file
    first!"));
              fastRewind.addKeyListener(this);
              p.add(fastRewind);
              JButton stop = new JButton("<html><body><font size=+"+
    sizeIncrease+ ">&#9632;");
              stop.setToolTipText("Stop");
              stop.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        invokedStop = true;
                        //player.stop();
                        sp();
              stop.addKeyListener(this);
              p.add(stop);
              play = new JButton("<html><body><font size=+"+
    sizeIncrease+ ">>");
              play.setToolTipText("Play");
              play.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        if (player!=null) {
                             invokedStop = false;
                             player.setRate(1);
                             st();
                        } else {
    JOptionPane.showMessageDialog(play,
                             new JLabel("Open a sound file
    first!"));
              play.addKeyListener(this);
              p.add(play);
              fastForward = new JButton("<html><body><font size=+"+
    sizeIncrease+ ">>>");
              fastForward.setToolTipText("Fast Forward");
              fastForward.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        if (player!=null) {
                             invokedStop = false;
                             skipForward();
                        } else {
    JOptionPane.showMessageDialog(play,
                             new JLabel("Open a sound file
    first!"));
              fastForward.addKeyListener(this);
              p.add(fastForward);
              p.addKeyListener(this);
              frame.add(p,BorderLayout.CENTER);     
              add(frame);
    // pack ();
    setVisible (true);
    public void start(){
    st();
    public void stop(){
    sp();
    public void destroy(){
    player.stop();
    player.deallocate();
    public void actionPerformed (ActionEvent e)
                   if (e.getActionCommand().equals("Exit"))
                   // Call dispose to invoke windowClosed.
                   frame.dispose ();
                        return;
         FileDialog fd = new FileDialog (frame, "Open File",
    FileDialog.LOAD);
         fd.setDirectory (currentDirectory);
         fd.show ();
         // If user cancelled, exit.
              if (fd.getFile() == null)
         return;
    currentDirectory = fd.getDirectory ();
              if (player != null)
         player.close ();
         try
         player = Manager.createPlayer (new MediaLocator
    ("file:" +
    fd.getDirectory() +
    fd.getFile()));
         catch (java.io.IOException e2)
    System.out.println (e2);
    return;
         catch (NoPlayerException e2)
    System.out.println ("Could not find a player.");
    return;
              if (player == null)
         System.out.println ("Trouble creating a player.");
         return;
    first = false;
    frame.setTitle (fd.getFile ().toString());
    player.addControllerListener (this);
    player.prefetch ();
    public void controllerUpdate (ControllerEvent e)
    if (e instanceof ControllerClosedEvent)
    if (vc != null)
    remove (vc);
    vc = null;
    if (cc != null)
    remove (cc);
    cc = null;
    return;
    if (e instanceof EndOfMediaEvent)
    if (loop)
    player.setMediaTime (new Time (0));
    player.start ();
    return;
    if (e instanceof PrefetchCompleteEvent)
    player.start ();
    return;
    if (e instanceof RealizeCompleteEvent)
    vc = player.getVisualComponent ();
    if (vc != null)
    add (vc);
    cc = player.getControlPanelComponent ();
    if (cc != null){
         this.add (cc, BorderLayout.SOUTH);
                        this.show();
    public void keyReleased(KeyEvent ke) {
    int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
         public void keyTyped(KeyEvent ke) {
         int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
         public void keyPressed(KeyEvent ke) {
              int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
              }else if (keycode==KeyEvent.VK_UP) {
                   st();
              }else if (keycode==KeyEvent.VK_DOWN) {
                   sp();
    public void skipForward() {
    double secs=5;
    double playersecs = player.getMediaTime().getSeconds();
    Time settime = new javax.media.Time(playersecs + secs);
    player.setMediaTime(settime);
    public void skipBack() {
              double secs1=5;
    double playersecs1 = player.getMediaTime().getSeconds();
    Time settime1 = new javax.media.Time(playersecs1 - secs1);
    player.setMediaTime(settime1);
         public void st() {
         player.start();
         public void sp() {
         player.stop();
    public void itemStateChanged (ItemEvent e)
    loop = !loop;
    When i comment add(frame) this error goes but i got a null poiter
    exception
    Plz help
    manu

    Hi Andrew,
    Thanks for ur reply.Sorrry that my code not included in the code block.
    My problem have been solved partly.Now playerapplet is working properly.It can play files from local machine(through open menuitem from file menu) as well as local network (through url menuitem from file menu).
    There is no requirement to play file from internet at present.
    I have given arrow keys to forward/backward/open/close.
    I have now completed my first part of project.Now i have to start the second part ie Controlling arrow keys using a joystick like instrument.The instrument and driver will be provided by my co. and the user is using only this device.Plz help me how to do that.
    The code is given below
    import javax.media.*;
    import java.text.DecimalFormat;
    import java.awt.*;
    import java.awt.FileDialog;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    <APPLET CODE=PlayerApplet.class
    WIDTH=320 HEIGHT=300>
    </APPLET>
    class nwa extends WindowAdapter
         frameclass frame;
         Player player;
         public nwa(frameclass frame,Player player)
          this.player=player;
          this.frame=frame;
         public void windowClosing (WindowEvent e)
          //User selected close from System menu.
          //Call dispose to invoke windowClosed.
          frame.dispose ();
          public void windowClosed (WindowEvent e)
              if (player != null)
                   player.stop();
                player.close ();
                   player.deallocate();
          System.exit (0);
    class frameclass extends JFrame
    Player player;
         frameclass(Player player)
         nwa n=new nwa(this,player);
         this.addWindowListener(n);                    
    public class PlayerApplet extends JApplet
               implements ActionListener,ControllerListener,ItemListener, KeyListener
               Player player=null;
               frameclass frame=new frameclass(player);
                 Component vc, cc;
                 Container f;
                 JProgressBar volumeBar;
                 JButton fastRewind;
              JButton fastForward;
              JButton play;
              int sizeIncrease = 2;
              boolean invokedStop = false;
              /** Big */
              int progressFontSize=30;
                 boolean first = true, loop = false;
                 String currentDirectory;
                 public void init()
                          f=frame.getContentPane();
                         JMenu m = new JMenu ("File");
                         JMenuItem mi = new JMenuItem ("Open...");
                         mi.addActionListener (this);
                         m.add (mi);
                         m.addSeparator ();
                         mi = new JMenuItem ("URL");
                         mi.addActionListener (this);
                         m.add (mi);
                         m.addSeparator ();
                         JCheckBoxMenuItem cbmi = new JCheckBoxMenuItem ("Loop", false);
                         cbmi.addItemListener (this);
                         m.add (cbmi);
                         m.addSeparator ();
                         mi = new JMenuItem ("Exit");
                         mi.addActionListener (this);
                         m.add (mi);
                         JMenuBar mb = new JMenuBar ();
                         mb.add (m);
                         frame.setJMenuBar (mb);
                         setSize (500, 500);
                           JPanel p = new JPanel(new GridLayout(1,0,5,5));
                        p.setBorder(new EmptyBorder(3,5,5,5) );
                        fastRewind = new JButton("<html><body><font size=+"+ sizeIncrease+ "><<");
                        fastRewind.setToolTipText("Fast Rewind");
                        fastRewind.addActionListener( new ActionListener(){
                             public void actionPerformed(ActionEvent ae) {
                                  if (player!=null) {
                                       invokedStop = false;
                                       skipBack();
                                  } else {
                                       JOptionPane.showMessageDialog(play,
                                       new JLabel("Open a sound file first!"));
                        fastRewind.addKeyListener(this);
                        p.add(fastRewind);
                        JButton stop = new JButton("<html><body><font size=+"+ sizeIncrease+ ">&#9632;");
                        stop.setToolTipText("Stop");
                        stop.addActionListener( new ActionListener(){
                                  public void actionPerformed(ActionEvent ae) {
                                       invokedStop = true;
                                       sp();
                        stop.addKeyListener(this);
                        p.add(stop);
                        play = new JButton("<html><body><font size=+"+ sizeIncrease+ ">>");
                        play.setToolTipText("Play");
                        play.addActionListener( new ActionListener()
                                  public void actionPerformed(ActionEvent ae) {
                                       if (player!=null) {
                                            invokedStop = false;
                                            player.setRate(1);
                                            st();
                                       } else {
                                            JOptionPane.showMessageDialog(play,
                                            new JLabel("Open a sound file first!"));
              play.addKeyListener(this);
              p.add(play);
              fastForward = new JButton("<html><body><font size=+"+ sizeIncrease+ ">>>");
              fastForward.setToolTipText("Fast Forward");
              fastForward.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        if (player!=null) {
                             invokedStop = false;
                             skipForward();
                        } else {
                             JOptionPane.showMessageDialog(play,
                             new JLabel("Open a sound file first!"));
              fastForward.addKeyListener(this);
              p.add(fastForward);
              frame.getContentPane().add(p,BorderLayout.CENTER);
              frame.setVisible (true);
              frame.pack();
              frame.setResizable(false);
      public void stop(){
      sp();
      public void destroy(){
       player.stop();
        player.deallocate();
      public void actionPerformed (ActionEvent e)
              if (e.getActionCommand().equals("Exit"))
                             // Call dispose to invoke windowClosed.
                             player.stop();
                             player.close();
                             player.deallocate();
                             frame.dispose ();
                                  return;
              if (e.getActionCommand().equals("Open..."))
                             FileDialog fd = new FileDialog (frame, "Open File",
                                         FileDialog.LOAD);
                              fd.setDirectory (currentDirectory);
                              fd.show ();
                              // If user cancelled, exit.
                              if (fd.getFile() == null)
                             return;
                              currentDirectory = fd.getDirectory ();
                                   if (player != null){
                                       player.close ();
                                       player.deallocate();
                         try
                  player = Manager.createPlayer (new MediaLocator
                                               ("file:" +
                                               fd.getDirectory() +
                                               fd.getFile()));
                              catch (java.io.IOException e2)
                            System.out.println ("file not found :"+e2);
                            return;
                              catch (NoPlayerException e2)
                            System.out.println ("Could not find a player.");
                            return;
                    if (player == null)
                   System.out.println ("Trouble creating a player.");
                   return;
                    first = false;
                    frame.setTitle (fd.getFile ().toString());
                    player.addControllerListener (this);
                    player.prefetch ();
                   return;
              if (e.getActionCommand().equals("URL"))
                             FileDialog fd = new FileDialog (frame, "Open File",
                                         FileDialog.LOAD);
                         fd.setDirectory (currentDirectory);
                         fd.show ();
                         // If user cancelled, exit.
                              if (fd.getFile() == null)
                             return;
                         currentDirectory = fd.getDirectory ();
                              if (player != null){
                                       player.close ();
                                       player.deallocate();
                   try
                        URL url = new URL ("file://"+fd.getDirectory()+fd.getFile());
                    MediaLocator mediaLocator = new MediaLocator (url);
                        player = Manager.createPlayer (mediaLocator);
                   catch (java.io.IOException e2)
                  System.out.println ("file not found :"+e2);
                  return;
                    catch (NoPlayerException e2)
                  System.out.println ("Could not find a player.");
                  return;
                    if (player == null)
                   System.out.println ("Trouble creating a player.");
                   return;
          first = false;
          frame.setTitle (fd.getFile ().toString());
          player.addControllerListener (this);
          player.prefetch ();
              return;
       public void controllerUpdate (ControllerEvent e)
          if (e instanceof ControllerClosedEvent)
              if (vc != null)
                  frame.getContentPane().remove (vc);
                  vc = null;
              if (cc != null)
                  frame.getContentPane().remove (cc);
                  cc = null;
              return;
          if (e instanceof EndOfMediaEvent)
              if (loop)
                  player.setMediaTime (new Time (0));
                  player.start ();
              return;
          if (e instanceof PrefetchCompleteEvent)
              player.start();
              return;
          if (e instanceof RealizeCompleteEvent)
            if (vc != null)
                  remove (vc);
                  vc = null;
              if (cc != null)
                  remove (cc);
                  cc = null;
              vc = player.getVisualComponent ();
              if (vc != null)
                  frame.getContentPane().add(vc,BorderLayout.NORTH);
              cc = player.getControlPanelComponent ();
              if (cc != null){
                       frame.getContentPane().add (cc, BorderLayout.SOUTH);
                     frame.setVisible(true);
                     frame.pack();
    public void keyReleased(KeyEvent ke) {
    int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
         public void keyTyped(KeyEvent ke) {
         int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
         public void keyPressed(KeyEvent ke) {
              int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
              }else if (keycode==KeyEvent.VK_UP) {
                   st();
              }else if (keycode==KeyEvent.VK_DOWN) {
                   sp();
    public void skipForward() {
    Time settime;
    double secs=5;
    double playersecs = player.getMediaTime().getSeconds();
    double duration = player.getDuration().getSeconds();
              if((playersecs+secs) < duration){
                      settime = new javax.media.Time(playersecs + secs);
                      player.setMediaTime(settime);
              }else {
                        player.setMediaTime(new Time(duration));
    public void skipBack() {
              double secs1=5;
              double secs2=0;
              double playersecs1 = player.getMediaTime().getSeconds();
              Time settime1;
              if((playersecs1 - secs1) > secs2){
                      settime1 = new javax.media.Time(playersecs1 - secs1);
                      player.setMediaTime(settime1);
              }else {
                        player.setMediaTime(new Time(0));
         public void st() {
         player.start();
         public void sp() {
         player.stop();
       public void itemStateChanged (ItemEvent e)
          loop = !loop;
    With Thanks
    manuEdited by: mm_mm on Nov 27, 2007 11:09 PM

  • Urgent! Music player error/bug

    my n95 8gb's music player has some kinda error. i downloaded a mp3 file, the artist name was ACDC. i renamed it to AC/DC, but the ACDC artist name wasn't deleted. i opened it, nothing was there. i tried to delete it, but a pop-up message says General: Feature Not Supported. Can anyone here help me with this? coz i have to sell my phone so i can buy an electric guitar. Please help..
    Regards,

    This is a normal case with the phone
    on firmware 3.08 you often get General System Error
    on firmware 3.26 you would get an never ending Searching for Music
    on firmware 4.13 you would freeze up your music playing by using the original head set after playing 2-5 tracks
    I have to add that the music player is the major flaw in this phone with its series of bugs.  It has issues when updating library after adding new songs too, in addition to its low sound production.
    I have tried the phone soft reset but this is never a permanent solution
    The phone is a good phone still but Nokia seems to neglect its users.

  • Belle music player

    belle's music player isn't good enough , it always show album 1st when u open the player and i dont think there is a way to change the default setting . i really hope that nokia can make something on it as not everyone will purchase or download the whole album and memorize all albums' name . perhaps nokia should make a setting that users can change to show artist or song 1st . 
    if anyone out there do have the knowledge or way to change the setting , please help me . 
    thanks  =)

    The Music Player app of the Nokia N73 Music Edition (which I also have besides the N8), is even better than the Music Player for S^3 and S^4 devices. I hope you guys at Nokia could make the music player as versatile and manageable as the one in N73 Music Edition in the next update. Updating the Nokia Music Player program for PC to be much more manageable like Apple's iTunes would also be great.
    I hope you guys could read this.

  • Nokia 6085 music player error

    i just purchased a nokia 6085, but the music player does not play any kind of music, be it mp3, wav, wma, aac, amr, etc...it tells me "cannot create media player. DRM exception: 3
    (javax.microedition.media.MediaException:device error audio/mp3)"
    i've exchanged my phone for a new one, but the new one has the exact same problem. i can play the music file in the gallery, but if it's played in the gallery, i can't close the phone, nor can it skip to the next song. actually, the very first hour or so that i got both phones, it worked, but somehow it suddenly stopped working (i didn't change anything at all, i just left it there). i went to ask the people in the store, but they didn't know either. any help? please?

    hi all. i hope someone can help me transfer a playlist i created on the pc suite to the memory card. it only allows me to transfer to the phone and of course i get a msg stating that i don't have enough memory. for some reason it's not recognizing the memory card. i've formatted the card and still nothing. i can directly transefr from my pc but they end up being individual files. please help! thx-miko

  • I keep getting this error plz help

    Every time that i download the new iphone version 3.1 it gets towards the end and then i get an error. "could not finish transferring to iphone. Network connection failed". I dont know why it keeps giving me this problem when i have internet and i can connect to the itunes store perfectly and also download applications. Can somebody plz help me its driving me nuts. thanks for your time.
    *i have itunes 9(the new one) and my firewall is off

    bump. plz hlep

  • E71 music player error

    ever you got your music player doesn't respond when you click "refresh"?
    and new song doesn't display on all song list?
    please help me..I really need your help..
    thanx sooo much before...

    whenever u transfer the music transfer it to media transfer mode & copy all the songs in the Music folder only after that wait for at least  10 sec and try with refresh button in music player yesterday  i did the same n got all the songs in music player....I'll tell you one more thing when u'll do this u'll not able to control the volume in the music player ..please check it and let me know..

  • Music player!! Help!

    Hello, as the topic says.. Im looking for an other music player for my mac in wich I can have all my songs in a list (like winamp or iTunes) and you may ask "why whould I want an other music player if I've got iTunes?"
    ok the answer is that I've got 3 external hard drives, in 1 I have all my iTunes library, in the other one I have all the music in a single folder, thats the one that I use when Im "DJing" since its easier for me to access to all songs if they are in the same folder, But I need the other player to configure it with that hard drive. Its anoying to have all the time both hard drives plugged when I can use only one with out having to listen in iTunes then find the song in the other HD and play it on Traktor studio...
    Thanks.

    I guess u could use VLC media player, im not to sure but it should work.
    to change a mp3 (iTunes) file to VLC player, delete the ".mp3" at the end of a file name, and change it to ".avi", or just go to the info and change the default application to open it with, then press do the same with all such files
    hope i helped in some way

  • Reports Paramters Error, Plz Help me!

    Have anybody tried a reports in Web with parameters containing the ' '(space), '&'(and),'?' and other URL special character?
    When I passed a paramter with these character from my form, the reports server returned a REP-56033 error, and said that it cannot get job with ID -2.
    My reports are rdf/rep files.
    My system is 9ias R2. My reports service's version is 9.0.2.0.1
    Please help me. This question is urgent.

    When I use showjobs, I cannot get this job. But if I delete the special char, I can get the job and say it has error.
    I guess the report doesn't run with the special char!!!!
    I can run other report which without the special char parameter.
    For example
    add_parameter(pl_id,Text_Parameter,'where deptno=59 and staffno=34');
    If my parameter list contain this value, the report cannot run!!!
    If I change to
    add_parameter(pl_id,Text_Parameter,'wheredeptno=59andstaffno=34');
    The report can run, but return error.
    Plz help me!!

  • Symbian Belle Music Player

    hello people,
    this is my first post here, so i start with a quick introduction:
    i´ve been using a lot of different nokia-phones over the last 10 years, but had never used the phones as a music-player.
    Until i bought a 5230 last year. This phone was used a music player. the s60v5-music player software was good, everything fine (well... "gapless playback" is still something i missed, but i come back to this later).
    now i would like to upgrade to a faster device like the nokia 701, but...
    i had sorting/tagging issues with the music player in symbian anna, when trying out the nokia c7, so i gave the phone back.
    and now my questions:
    1. does the music-player in symbian belle allow the old sorting used in s60v5? or at least any correct sorting of albums even if they are compilations?
    2. does the music-player in symbian belle alllow the creation of your own equalizer presets?
    3. i nearly dont dare to ask... could it be that nokia managed it, to get the player play the songs of an album gapless?
    some remarks:
    to 1: if not, the solution would be to retag all my music??
    to 2: why did they remove the option? is there a plan to get it back, maybe with a belle-update?
    to 3: does really nobody at nokia listen to albums that need continuous play? live albums, classical music, electronic music, dj-mixes?
    thank you for reading, and for possible answers!
    have a nice day
    p

    Running my new N8 on Belle. (haven't treid it on Anna by the way ... )
    1 conclussion : Very Disapointed (with capital V & A). what a piece of **bleep** it is !!
    I really don't know where to put my disagree with this sh*t. It seems like there are several topics about it.
    I've had a couple of Nokia's in the last years, but this is really... ( I don't have any words for it) after the upgrade to Belle.
    You CAN'T properlily play a music album which is on a memory-card or on the phone itself !!!!
    I can only play songs from an alphabatical list with singers. Not from an album !!! Making a playlist from a list of albums is also not possible ...  Made changes on the laptop with putting albumnames, changing artistnames, made m3u of playlists. Nothing works !!!
    Why have they made it like this ??
    I had a N86 8MP : perfect. You can choose what you want to play ; album or song. You could change the picture of the album. It had a little equalizer. Even my older 6500C had it !!! And therefore my 6300 had it !!!!!
    Why made a change of something that was good ???
    I really hope that the upgrade to Belle 112 (which is STILL NOT available for N8, but only for 700) whill resolve this kind of problems .... but I got a glitch that it won't ....
    Bought an expensive N8 cause of the 16Gb inside and addional 32GB & 12MP camera, but iI can't used it like any other MP3-device ......  I really think it wil be my last Nokia ....
    And this is not the last issue with Belle ...  Navigation is navigation. In the N86 you got some extra's with compass & searching sattelites & tripmeter... Non in the N8 ...
    Looking pictures like dia from map to map is still not possible ... Only the complete list ...
    Sorry Nokia, but you missed it completly with this "High End" phone....

  • Ora - 00600 error plz help urgent

    hello all sir plz. help would should i do.
    by mistake i made changes in spfile file.... after that i got this error
    any solution ?
    plz. help sir
    SQL> create pfile from spfile;
    create pfile from spfile
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [733], [538970164], [pga heap], [],
    help sir
    waiting for reply

    first of all
    thanx for my reply
    sir i have bkp through rman but when i am connect to rman it give me error
    2. i have no pfile<sid>.ora file
    3. i try to start my database through pfile text file i got error..
    plz. reply sir what should i do.....
    how can i connect rman....
    C:\>set oracle_sid=db01
    C:\>rman target sys/oracle@db01
    Recovery Manager: Release 10.1.0.2.0 - Production
    Copyright (c) 1995, 2004, Oracle. All rights reserved.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00554: initialization of internal recovery manager package failed
    RMAN-04005: error from target database:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    C:\>
    again thanx.
    i have full database bkp through rman.

  • C7 Belle Music Player

    Hey All:
    I was under the impression that Belle's music player would come with the ability to sort by artist (i.e. play all songs by a particular artist) rather than locking it to the albums that they've produced.
    This is clearly not the case with the C7 Rollout of Belle. What gives? Is this feature going to be added at some point?
    Thanks!
    --Databoy2k

    E7 same prob. Only Artist and Albums (which is just silly!) I too was hoping for a fix of that problem in Belle, but no!
    On top of that the picture quality of the album covers is now very poor! Same files as in Anna, where quality was good........

  • HT201210 my iphone wont restore coz of an unknown error plz help

    my iphone wont restore coz of an unknown error plz help

    iOS: Resolving update and restore alert messages
    BTW: This is the iPod Touch fourm.

Maybe you are looking for