Error WWW_FLOW_SECURITY. should be declared

Hi,
I install Apex 3.1.2, and when I have to change the password for admin I become the error:
WWW_FLOW_SECURITY.G_SECURITY_GROUP_ID should be declared
WWW_FLOW_SECURITY.G_USER should be declared
WWW_FLOW_SECURITY.G_IMPORT_IN_PROGRESS should be declared
WWW_FLOW_SECURITY.G should be declared
I can not define a password for admin, eather using:
@apxxepwd.sql or
@apxchpwd.sql
What can I do?
Thanks
Gissel

The "should be declared abstract" error message means that you have either extended an abstract class with abstract methods that you have not implemented, or you have implemented an interface and not implemented all of its methods. Non abstract classes have to implement all methods that their base classes or interfaces declare.
The "getAudioClip() not found" error message means that the compiler could not find the method getAudioClip(). Either your class or one of its base classes has to define this method.

Similar Messages

  • Error "class should be declared abstract"

    i am having a problem.
    when i compile my program, there is one error,
    below is the error occurs:
    glay2.java:5:glay2 should be declared abstract; it does not define
    actionPerformed(java.awt.event.ActionEvent) in glay2
    public class glay2 extends
    ^
    Applet implements ActionListener
    what does this mean?

    below is my codes...
    I dun really understand what your are saying.
    i got my actionperformed right there? ^^;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    public class glay2 extends Applet implements ActionListener
    // buttons
    Button button1, button2, button3, button4, buttonpress,
    dsp1, dsp2, dsp3, dsp4,
    eable1, eable2, eable3, eable4,
    dable1, dable2, dable3, dable4;
    // texts
    TextField textfield1, pr1, pr2, pr3, pr4;
    // labels
    Label label1, label2, label3, label4, title;
    boolean in1 = true, out1 = false, can1 = false,
    dis1 = false, in2 = true, out2 = false, can2 = false,
    dis2 = false, in3 = true, out3 = false, can3 = false,
    dis3 = false, in4 = true, out4 = false, can4 = false,
    dis4 = false;
    int pump1[] = {0, 0, 10},
    pump2[] = {0, 0, 10},
    pump3[] = {0, 0, 10},
    pump4[] = {0, 0, 10};
    String state1 = "init",
    state2 = "init",
    state3 = "init",
    state4 = "init";
    String menu1[] = {"State: ", "Litres: ", "Price: "},
    menu2[] = {"State: ", "Litres: "},
    menu3[] = {"State: ", "Litres: "},
    menu4[] = {"State: ", "Litres: "};
    public void init(){
    // west panel
    button1 = new Button("0.01");
    dsp1 = new Button("Dsp 1");
    button2 = new Button("0.02");
    dsp2 = new Button("Dsp 2");
    button3 = new Button("0.03");
    dsp3 = new Button("Dsp 3");
    button4 = new Button("0.04");
    dsp4 = new Button("Dsp 4");
    // east panel
    eable1 = new Button("Enable 1");
    dable1 = new Button("Disable 1");
    eable2 = new Button("Enable 2");
    dable2 = new Button("Disable 2");
    eable3 = new Button("Enable 3");
    dable3 = new Button("Disable 3");
    eable4 = new Button("Enable 4");
    dable4 = new Button("Disable 4");
    // south panel
    buttonpress = new Button("Set Fuel Price(p)");
    textfield1 = new TextField(" ");
    // north panel
    title = new Label("Jeanifer and Yew Leng's Petrol Station");
    // set color for buttons
    button1.setBackground(Color.red);
    button2.setBackground(Color.red);
    button3.setBackground(Color.red);
    button4.setBackground(Color.red);
    // set color for dsp
    dsp1.setBackground(Color.yellow);
    dsp2.setBackground(Color.yellow);
    dsp3.setBackground(Color.yellow);
    dsp4.setBackground(Color.yellow);
    // set color for eable
    eable1.setBackground(Color.green);
    eable2.setBackground(Color.green);
    eable3.setBackground(Color.green);
    eable4.setBackground(Color.green);
    // set color for dable
    dable1.setBackground(Color.blue);
    dable1.setForeground(Color.white);
    dable2.setBackground(Color.blue);
    dable2.setForeground(Color.white);
    dable3.setBackground(Color.blue);
    dable3.setForeground(Color.white);
    dable4.setBackground(Color.blue);
    dable4.setForeground(Color.white);
    // define panel
    Panel pn = new Panel();
    Panel ps = new Panel();
    Panel pw = new Panel();
    Panel pe = new Panel();
    Panel pc = new Panel();
    // layout
    setLayout(new BorderLayout());
    setBackground(Color.lightGray);
    // adding grid for west panel
    pw.setLayout(new GridLayout(4,2));
    pw.add(button1);
    pw.add(dsp1);
    pw.add(button2);
    pw.add(dsp2);
    pw.add(button3);
    pw.add(dsp3);
    pw.add(button4);
    pw.add(dsp4);
    // adding grid for east panel
    pe.setLayout(new GridLayout(4,2));
    pe.add(eable1);
    pe.add(dable1);
    pe.add(eable2);
    pe.add(dable2);
    pe.add(eable3);
    pe.add(dable3);
    pe.add(eable4);
    pe.add(dable4);
    // place button on south panel
    ps.add(buttonpress);
    ps.add(textfield1);
    //place label on north panel
    pn.add(title);
    // adding panel
    add("North", pn);
    add("West", pw);
    add("East",pe);
    add("South", ps);
    add("Center", pc);
    // button action
    button1.addActionListener(this);
    button2.addActionListener(this);
    button3.addActionListener(this);
    button4.addActionListener(this);
    buttonpress.addActionListener(this);
    //dsp action
    dsp1.addActionListener(this);
    dsp2.addActionListener(this);
    dsp3.addActionListener(this);
    dsp4.addActionListener(this);
    //enable action
    eable1.addActionListener(this);
    eable2.addActionListener(this);
    eable3.addActionListener(this);
    eable4.addActionListener(this);
    // color in box for each decision
    public void paint(Graphics g)
    if (in1)
    g.setColor(Color.red);
    else if(out1)
    g.setColor(Color.orange);
    else if(can1)
    g.setColor(Color.green);
    else if(dis1)
    g.setColor(Color.blue);
    g.fillRect(150, 50, 100, 150);
    g.setColor(Color.yellow);
    g.fillRect(170, 50, 80, 125);
    g.setColor(Color.black);
    g.setFont(new Font ("Arial", Font.PLAIN, 12));
    g.drawString(menu1[0] + state1, 150, 50);
         for (int i = 1; i < 4; i++)
         g.drawString(menu1[i] + pump1[i-1], 140, 100 + (i - 1) * 32);
         g.drawString("Pump 1", 140, 120);
    //action ae
    public void ActionPerformed(ActionEvent e)
    if (e.getSource() == button1)
         if ( in1 == true )
                             out1 = true;
                             in1 = false;
                             can1 = false;
                             dis1 = false;
                             state1= "On";
         else
                             out1 = false;
                             in1 = true;
                             can1 = false;
                             dis1 = false;
                             state1= "Off";
    else if ((e.getSource() == dsp1) && (can1== true))
         pump1[0]++;
         pump1[1] = pump1[2];
         state1= "pumping";
    else if ((e.getSource() == eable1) && (in1 = true))
         in1 = false;
         out1 = true;
         can1 = true;
         dis1 = false;
         state1= "Enabled";
    else if ((e.getSource() == dable1) && ( can1 = true))
         in1 = false;
         out1 = false;
         can1= false;
         dis1 = true;
         state1= "Disabled";
    else if ((e.getSource() == buttonpress) && (in1 = true))
         pump1[2] = Integer.parseInt(pr1.getText());
         repaint();               

  • Error:EntityObjectImplementation should be declared abstract

    Hi,
    i hav got this error please help me to resolve this.......
    Error(11,8): class newImplement.oracle.apps.ak.hello.server.newImplEOImpl should be declared abstract; it does not define method setLastUpdateLogin(oracle.jbo.domain.Number) in class oracle.apps.fnd.framework.server.OAEntityImpl
    public class newImplEOImpl extends OAEntityImpl -------------error line
    protected static final int NAME = 0;
    protected static final int GENDER = 1;
    Edited by: 945985 on Sep 10, 2012 11:32 PM

    i have created some fields like name , roll number, std. all r user editable Text input fields.
    if i enter data into these fields it should be displayed in table.
    i have created EO and added who col attributes into EO, with reference to EO created VO but i have not select who col attributes in VO,
    and with reference to VO created table .
    table is on another page as it vl be displayed once i press submit button.
    Edited by: 945985 on Sep 11, 2012 2:31 AM

  • "should be declared abstract" error message Help !

    Dear People,
    I have two error messages in my program
    "should be declared abstract"
    "getAudioClip() not found "
    Your advice is appreciated
    Norman
    "MyMusicApplet_1.java": Error #: 454 : class stan_my_music_applet_1.MyMusicApplet_1 should be declared abstract; it does not define method getStreamKeys() in interface java.applet.AppletContext at line 9
    "MyMusicApplet_1.java": Error #: 300 : method getAudioClip(java.lang.String) not found in class stan_my_music_applet_1.MyMusicApplet_1
    import java.util.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.applet.*;
    import java.awt.event.*;
    public class MyMusicApplet_1 extends JApplet implements ActionListener, AppletContext
         //AppletContext myAppletContext =   new AppletContext();
         //Iterator i =   myAppletContext.getStreamKeys();
         JButton myJButton;
         AudioClip acSound_1 = getAudioClip("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk");
         AudioClip acSound_2 = getAudioClip("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk   ");
         AudioClip acSound_3 = getAudioClip("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk   ");
         AudioClip acSound_4 = getAudioClip("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk   ");
         AudioClip acSound_5 = getAudioClip("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk   ");
         AudioClip acSound_6 = getAudioClip("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk   ");
         AudioClip acSound_7 = getAudioClip("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk   ");
         AudioClip acSound_8 = getAudioClip("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk   ");
         AudioClip acSound_9 = getAudioClip("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk   ");
         JButton myJButtonSound1;
         JButton myJButtonSound2;
         JButton myJButtonSound3;
         JButton myJButtonSound4;
         JButton myJButtonSound5;
         JButton myJButtonSound6;
         JButton myJButtonSound7;
         JButton myJButtonSound8;
         JButton myJButtonSound9;
      public void init()
           Container myContentPane = getContentPane();
           myContentPane.setLayout(new FlowLayout(FlowLayout.RIGHT));
            Dimension buttonSize = new Dimension(190,100);
           Font myFont = new Font("Arial", Font.BOLD,14);
           Border myEdge = BorderFactory.createRaisedBevelBorder();
                    //create 1st button's object
                     myJButtonSound1 = new JButton("sound #1");
                    myJButtonSound1.addActionListener(this);
                   //set the button's border and size, font background and foreground
                   myJButtonSound1.setBorder(myEdge);
                   myJButtonSound1.setPreferredSize(buttonSize);
                   myJButtonSound1.setFont(myFont);
                   myJButtonSound1.setBackground(Color.orange);
                   myJButtonSound1.setForeground(Color.black);
                    //create 2nd button's object
                     myJButtonSound2 = new JButton("sound #2");
                    myJButtonSound2.addActionListener(this);
                   //set the button's border and size, font, background and foreground
                   myJButtonSound2.setBorder(myEdge);
                   myJButtonSound2.setPreferredSize(buttonSize);
                   myJButtonSound2.setFont(myFont);
                   myJButtonSound2.setBackground(Color.blue);
                   myJButtonSound2.setForeground(Color.black);
                    //create 3rd button's object
                     myJButtonSound3 = new JButton("sound #3");
                    myJButtonSound1.addActionListener(this);
                   //set the button's border and size, font, background and foreground
                   myJButtonSound3.setBorder(myEdge);
                   myJButtonSound3.setPreferredSize(buttonSize);
                   myJButtonSound3.setFont(myFont);
                   myJButtonSound3.setBackground(Color.cyan);
                   myJButtonSound3.setForeground(Color.black);
                    //create 4th button's object
                     myJButtonSound4 = new JButton("sound #4");
                    myJButtonSound4.addActionListener(this);
                   //set the button's border and size, font background and foreground
                   myJButtonSound4.setBorder(myEdge);
                   myJButtonSound4.setPreferredSize(buttonSize);
                   myJButtonSound4.setFont(myFont);
                   myJButtonSound4.setBackground(Color.pink);
                   myJButtonSound4.setForeground(Color.black);
                   //create 5th button's object
                   myJButtonSound5 = new JButton("sound #5");
                  myJButtonSound5.addActionListener(this);
                 //set the button's border and size, font background and foreground
                 myJButtonSound5.setBorder(myEdge);
                 myJButtonSound5.setPreferredSize(buttonSize);
                 myJButtonSound5.setFont(myFont);
                 myJButtonSound5.setBackground(Color.red);
                 myJButtonSound5.setForeground(Color.black);
                  //create 6th button's object
                   myJButtonSound6 = new JButton("sound #6");
                  myJButtonSound6.addActionListener(this);
                 //set the button's border and size, font, background and foreground
                 myJButtonSound6.setBorder(myEdge);
                 myJButtonSound6.setPreferredSize(buttonSize);
                 myJButtonSound6.setFont(myFont);
                 myJButtonSound6.setBackground(Color.pink);
                 myJButtonSound6.setForeground(Color.black);
                  //create 7th button's object
                   myJButtonSound7 = new JButton("Choice #7");
                  myJButtonSound7.addActionListener(this);
                 //set the button's border and size, font, background and foreground
                 myJButtonSound7.setBorder(myEdge);
                 myJButtonSound7.setPreferredSize(buttonSize);
                 myJButtonSound7.setFont(myFont);
                 myJButtonSound7.setBackground(Color.cyan);
                 myJButtonSound7.setForeground(Color.black);
                  //create 8th button's object
                   myJButtonSound8 = new JButton("Choice #8");
                  myJButtonSound8.addActionListener(this);
                 //set the button's border and size, font background and foreground
                 myJButtonSound8.setBorder(myEdge);
                 myJButtonSound8.setPreferredSize(buttonSize);
                 myJButtonSound8.setFont(myFont);
                 myJButtonSound8.setBackground(Color.yellow);
                 myJButtonSound8.setForeground(Color.black);
                  //create 9th button's object
                   myJButtonSound9 = new JButton("Choice #9");
                  myJButtonSound9.addActionListener(this);
                 //set the button's border and size, font background and foreground
                 myJButtonSound9.setBorder(myEdge);
                 myJButtonSound9.setPreferredSize(buttonSize);
                 myJButtonSound9.setFont(myFont);
                 myJButtonSound9.setBackground(Color.blue);
                 myJButtonSound9.setForeground(Color.black);
                   //add the buttons to the content pane
                   myContentPane.add(myJButtonSound1);
                   myContentPane.add(myJButtonSound2);
                   myContentPane.add(myJButtonSound3);
                   myContentPane.add(myJButtonSound4);
                   myContentPane.add(myJButtonSound5);
                   myContentPane.add(myJButtonSound6);
                   myContentPane.add(myJButtonSound7);
                   myContentPane.add(myJButtonSound8);
                   myContentPane.add(myJButtonSound9);
          public void actionPerformed(ActionEvent e)
             myJButton = (JButton)e.getSource();
            if(myJButton == myJButtonSound1)
              acSound_1.play();
            if(myJButton == myJButtonSound2)
              acSound_2.play();
            if(myJButton == myJButtonSound3)
              acSound_3.play();
            if(myJButton == myJButtonSound4)
              acSound_4.play();
            if(myJButton == myJButtonSound5)
              acSound_5.play();
             if(myJButton == myJButtonSound6)
               acSound_6.play();
                       if(myJButton == myJButtonSound7)
                         acSound_7.play();
                       if(myJButton == myJButtonSound8)
                         acSound_8.play();
                        if(myJButton == myJButtonSound9)
                          acSound_9.play();
      }

    The "should be declared abstract" error message means that you have either extended an abstract class with abstract methods that you have not implemented, or you have implemented an interface and not implemented all of its methods. Non abstract classes have to implement all methods that their base classes or interfaces declare.
    The "getAudioClip() not found" error message means that the compiler could not find the method getAudioClip(). Either your class or one of its base classes has to define this method.

  • Class should be declared error - but it is declared!

    After compilation of my coding i get the following error* but i have declared the class FLowps. Please tell me how it shoud be declared....if code needs to be seen please e-mail at [email protected] and will send the code listing.
    Thankyou.
    *test.java:18: class Flowps is public, should be declared in a file named Flowps.java
    public class Flowps extends JApplet implements ActionListener
    ^
    1 error
    Tool completed with exit code 1

    <rant>
    Why won't people just read? The compiler prints out a perfectly comprehensible error message not only telling them what's wrong, but even how to fix it, and they just throw their hands up! "It's all too hard! Why can't someone just tell me the answer? Where's my tutor?"
    Arrgh! Try working with these people: code, code, code, ooops! Red flag! Can't code any more! I don't understand!
    The supposed difference between a computer and a human is that humans are supposed to get creative when faced with a difficulty, but some of 'em make you wonder.
    </rant>

  • Class should be declared abstract

    hello,
    i'm learning to use the JOONE(Java Object Oriented Neural Engine).I tried to run a sample program.On compiling it gives the following error.
    XorExample should be declared abstract; it does not define errorChanged(org.joone.engine.NeuralNetEvent) in XorExample
    /*XorExample.java*/
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import org.joone.engine.*;
    import org.joone.engine.learning.*;
    import org.joone.io.*;
    public class XorExample extends JFrame implements ActionListener, NeuralNetListener{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I don't know anything about JOONE, but the cause of the error is the XorExample class is specified to implement the NeuralNetListener interface, and apparently it does not implement the errorChanged method of the interface.

  • Class is public, should be declared in a file?

    So I'm running a program called BankAccount.java. When I tried to comile it (javac BankAccount.java) I get a message that says
    BankAccount.java:4:class InsufficientFundsException is public, should be declared in a file named InsufficientFundsException.java
    public class InsufficientFundsException extends Exception
    ^
    1 error
    In case you need to see it, my code is
    import java.util.*;
    import java.text.*;
    public class InsufficientFundsException extends Exception
    private int accountNumber;
    private int withdrawAmount;
    private int balanceAmount;
    private Date date;
    private DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT, Locale.US);
    private NumberFormat nf = NumberFormat.getCurrencyInstance(Locale.US);
    public InsufficientFundsException(int actNumb,
    int amount,
    int balance)
    date = new Date();
    accountNumber = actNumb;
    withdrawAmount = amount;
    balanceAmount = balance;
    public String toString()
    return getClass().getName() + " on " + df.format(date)
    + ". Withdraw of " + nf.format(withdrawAmount)
    + " rejected. Balance of account #" + accountNumber
    + " remains at " + nf.format(balanceAmount) ;
    }

    Actually I did. This is how it is right now
    BankAccount.java
    import java.util.*;
    import java.text.*;
    public String toString()
    return getClass().getName() + " on " + df.format(date)
    + ". Withdraw of " + nf.format(withdrawAmount)
    + " rejected. Balance of account #" + accountNumber
    + " remains at " + nf.format(balanceAmount) ;
    InsufficientFundsException.java
    public class InsufficientFundsException extends Exception
    private int accountNumber;
    private int withdrawAmount;
    private int balanceAmount;
    private Date date;
    private DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT, Locale.US);
    private NumberFormat nf = NumberFormat.getCurrencyInstance(Locale.US);
    public class InsufficientFundsException(int actNumb,
    int amount,
    int balance)
    date = new Date();
    accountNumber = actNumb;
    withdrawAmount = amount;
    balanceAmount = balance;
    So do I run the bank one first?

  • Material statuses error message should go after entering Trackin No in PO

    Hi All,
    I have created one Material statuses with error message, I have created material with the use of that material statuses..
    Its working fine,At the creation of PR, PO I'm getting that Error message..
    My requirement is if I enter Requirement Tracking Number at item level of PR or PO means that Material statuses Error message should Go out and system has to allow to create PR or PO..
    Is it possible?? how to do it?? plz help me...
    Is it possible in standard SAp???
    thanks and regards
    rames reddy

    Hi,
    You can keep Requirement Tracking Number as Required Entry in field selection key (NBF or a copy of NBF as ZNBF) of PO document type in u201CReference data, itemu201D segment in following path:
    SPRO > Materials Management > Purchasing > Purchase Order > Define Screen Layout at Document Level
    And then assign field selection key to PO Document type and save.
    SPRO > Materials Management > Purchasing > Purchase Order > Define Document Types
    Now create PO with PO document type, system will ask you to enter Requirement Tracking Number in u201CItem Overviewu201D unless then you can save Purchase Order.
    The same you can do for PR document type by having a field selection key for PR document type.
    Regards,
    Biju K

  • Xmlreader schema validation error: Cannot find the declaration of element

    I have multiple schemas with namespaces but I would like to validate an xml document without namespaces. The schemas all have elementFormDefault="unqualified" in the root element.
    I am encountering error below in my validation using xmlreader:
    ERROR:
    Cannot find the declaration of element 'NewTradenetDeclaration'.
    my code is:
    xmlReader = XMLReaderFactory.createXMLReader("org.apache.xerces.parsers.SAXParser");
    xmlReader.setFeature(VALIDATION_FEATURE_ID, true);
    xmlReader.setFeature(SCHEMA_VALIDATION_FEATURE_ID, true);
    xmlReader.setFeature(SCHEMA_FULL_CHECKING_FEATURE_ID, true);
    xmlReader.setFeature(SCHEMA_NAMESPACE_FEATURE_ID, true);
    xmlReader.setProperty(JAXP_SCHEMA_LANGUAGE, XMLConstants.W3C_XML_SCHEMA_NS_URI);
    String schemaURI = "NewTradenetDeclaration.xsd";
    // ive tried all of the ff but throws the same error
    //xmlReader.setProperty(EXTERNAL_SCHEMA_LOCATION, "urn:crimsonlogic:tn:schema:xsd:NewTradenetDeclaration NewTradenetDeclaration.xsd");
    //xmlReader.setProperty(EXTERNAL_SCHEMA_LOCATION, schemaURI);
    xmlReader.setProperty(JAXP_SCHEMA_SOURCE, schemaURI);
    // set entity resolver to resolve xsd locations
    MyResolver resolver = new MyResolver();
    xmlReader.setEntityResolver(resolver);the entity resolver has:
    public InputSource resolveEntity (String publicId, String systemId) {
      String filename =  "c:/workspace/TXParser/schema/"+ systemId.substring(systemId.lastIndexOf("/")+1);
      File f = new File(filename);
      InputSource source = null;
      try {
        source = new InputSource(new FileReader(f));
      } catch(Exception e) {
      System.out.println("InputSource exception: " + e.getMessage());                 
      return source;
    }Help please. Thanks.

    I fight with the same error, it is curious that the schema from schemaLocation can not be validated. If i set the schema manually through an attribute it works. What i try to do is overwriting the resolveEntity in the handler to get the schema from another location and validate the xml against the schema specified in the attribute schemaLocation rather than setting it manually :-(

  • When I downloaded iWork on my MacBook Air, it didn't copy the application to my other devices. Is that an error or should I buy them again on each device!?

    When I downloaded iWork on my MacBook Air, it didn't copy the application to my other devices. Is that an error or should I buy them again on each device!?

    Just redownlod it from the Mac App Store on any other Macs - you won't have to pay for them again. On your iOS devices you will need to purchase the iOS version which is a different program - again, you will only need to buy it the once for all your iOS devices.

  • Error " TR should have atleast one  line item "

    Hi,
    While trying to create TO for the TR , system through the error " TR should have atleast one  line item "
    but the TR have the line item.
    pls trhu some light. actually it properly working in development server but not working in production.

    Hi
    Thos error message does not make any sense if what you are saying is true in that the TR does have one line item.
    The only thing I can think of is Has the stock situation changed since the TR was created.
    Do you in fact have any stock?
    Check the TR in LB02 to make sure it is OK
    I hope that this helps
    Frenchy

  • In Terminal,When I use the command "Say",it gives me the error:MTBEAudioUnitSoundOutput::PropagateProperty Error -10851,Should I be worried?

    Hi guys,
    When ever I use the command "Say" in terminal,it says the words I want it to say,but then gives me this error:
    MTBEAudioUnitSoundOutput::PropagateProperty Error -10851,
    Should I be worried about this?
    Here are my Specs:
    iMac
    21.5-inch, Mid 2011
    Processor  2.7 GHz Intel Core i5
    Memory  4 GB 1333 MHz DDR3
    Graphics  AMD Radeon HD 6770M 512 MB
    Software  OS X 10.8.4 (12E55)
    Thanks again,
    Bye.

    Hello,
    Are you running any AV software?
    Are you using stock voices, or custom ones?

  • My macbook pro is version 10.7.3 and since I bought it, I try to update but it gives error, what should i do?

    My macbook pro is version 10.7.3 and since I bought it, I try to update but it gives error, what should i do?

    What are you trying to update? Are you trying to do a Software Update from the Apple menu, or something else?
    What is the error you're seeing? We are not mind readers.
    Matt

  • "error in parsing value" "declaration dropped"

    A week ago I lost the ability to log in to my banking site (BBVA Compass). After submitting my username, it USED to then ask for my password on the subsequent screen. Now, it dies with a screen that shows "please wait", never gets beyond that. Looking in the error panel I see countless error messages for "error in parsing value" "declaration dropped", concerning a host of variables in CSS, such as radius, background, background image, etc.
    I CAN log in easily with MSIE. I have killed cookies and history, deleted and reinstalled FF, disabled the few add-ons I use, no joy.
    I have searched on these terms in "FF Help" and found some comments about these, but nothing that resolves the problem. This happens on several sites, I am including one.

    * Did you also clear the browser cache? This sometimes is needed when website have made update, to clear mismatched files.
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Offline Storage : "Clear Now"
    <br>
    * Do you have Firefox enter the password for you? In that case, you may want to clear the passwords for affected sites here:
    orange Firefox button ''or'' Tools menu > Options > Security > "Saved Passwords" button
    <br>
    * Are there other sites with a problem that don't require a login? We could visit the URLs and see whether we see an issue.
    * Regarding the Error Console (Ctrl+Shift+j), if you filter the list by clicking the Errors button at the top, you can isolate the most critical ones. A lot of the style warnings have no effect on functionality, just appearance.

  • After downloading os x mountain lion  completely(4.4 gb) i am getting an error.What should i do?

    Right now i am running OS x LION 10.7.5 ,After downloading os x mountain lion  completely(4.4 gb) i am getting an error.What should i do? 

    It simply says an error has occured!

Maybe you are looking for