Error Msg Adding Solved Points

I am trying to give someone Solved Points in a question I started.
When I hit the Solved box I get this error: Error
"An error in the system has occurred. Please contact the system administrator if the problem persists."
This has been going on for more than a day. I tried on Safari and Firefox both giving the same error. I sent Apple a note on the issue.
Anything I can do?
thanks,
frank

There are 3 things you can do:
1. Be patient while you wait for the the adminstrator(s) of the Apple Discussions sort out the problem (it's a known issue)
2. Try to keep track of those posts you'd like to award points to, and award them when the problem is fixed
3. Bask in the appreciation of those who get some gratification from the stars!
Note that #2 and #3 are completely optional...and #1 is also optional as far as the patience part goes (although you don't have much choice about the waiting part).

Similar Messages

  • When I reboot my PC I get error msg: "procedure entry point  SQlite3_wal-checkpoint could not be found..."

    I had to uninstall prior version of iTunes to install IOS5 in my iPhone 4 (relatively new phone, only about 5 weeks old).  It took several attempts to install IOS 5, and I finally succeeded only after disableing Kaspersky AV and the Windows Firewall.  This, even though the iTunes connection diagnostics reported everything was OK, no errors and all green indicators.  I had opened iTunes as Administrator too.  So, now I have IOS 5 installed and running ok on the iPhone4, but I have a new problem on my PC that arose from all the different attempts to get this done.  Here's more detail on the procedures and system changes I had made on my PC, and then what I get for the error msg.
    1) As Instructed by an Apple rep, I UNINTSTALLED both iTunes and Quicktime.  I then rebooted and ran iTunes in Admin mode, used the Connection diagnosis (reported all OK) and then tried to install IOS 5 on my iPhone4.  The download (which would take between 30-45 minutes on each attempt) would fully complete and then I'd get an error msg of "server timeout".  This led to further advice from Apple telling me to try the download again, this time with AV and Firewall disabled.  So I rebooted again, disabled AV and Firewall and the IOS5 succeeded.
    2) However, ever since I had removed both iTunes and Quicktime and reinstalled (only) iTunes (so far), each time I reboot my pc I get the following:
    A Window opens with title: "Apple Sync Notifier exec Entry Point Not Found".  Within the box below the title the following error msg appears: "The procedure entry point SQlite3_wal_checkpoint could not be located in the dynamic link library: SQlite3.dll"
    I performed a search for SQlite3 in My Computer.  It indeed shows up in a number of places, including within an Apple folder.
    I'm using 64bit Win7 Home Premium SP1 on a PC with AMD Phenom II X4 945 Processor, 3 GHz with 8.00 GB RAM.
    All iPhone and other applications seem to be behaving normally.  I just have to hit "OK" to get rid of that annoying (new) error message that is apparently coming about during the PC startup process.  It does NOT recur if I put the system in sleep mode, enter and exit iTunes, etc.  It only occurs on reboot.

    I have searched my computer for that file SQlite3.dll and also file QTCF.dll and I cannot find either one when I search my whole computer for it.  I cannot fix this!  I deleted Itunes and every time I try to download it, it goes through all this download till the end when it says that iTunes.exe-entry point now found and that Procedure entry point message comes up.  HELP!  This is driving me crazy.  How can I get itunes to work again when I can't find the danged .dll file to remove, move or rename!?!?!??

  • Parking error msgs from Inbound queue

    Hi Experts,
    There are situations when an inbound queue (SMQ2) gets build up because of an error msg. In this case, we manually cancel the error msg and allow subsequent msgs to get process. Is there any way using which we can park the error msg aside automatically (into some new queue, like an error queue) and allow subsequent msgs to get process. This will prevent queues from building up and we can fix all the error msgs at later point of time by checking them from newly created error queue.
    Thanks,
    Aditya

    Hi,
    PI 7.3 has the feature of parking the error queues aside and allows the other messages of queue to process....
    I heard this feature is downported to the PI 7.1 also...but no hands on or more info at hand on this...if your are using 7.1 check the sap site...
    Apart from that try to check for activation of CCMS alerts so that person is notified in case if message in queue gets blocked..
    HTH
    Rajesh

  • Editing a pdf form that I created. Adding header error msg "do not have sufficient permissions to perform this task"

    Editing a pdf form that I created. Adding header, currently the header only appears on page 1 of a 3 page pdf form.  I want it to appear on each page.  I am receiving the error msg "do not have sufficient permissions to perform this task"

    In Adobe Acrobat use a Action for this.

  • Error msg pointing to nonexistent var (WARNING: LONG POST)

    I'm sorry to have to post my entire program, but I keep getting an error msg that points to a variable that is NOWHERE in my code. The var is called PwChar. It's mentioned in the error msg, but is nowhere in my code. This is even after saving and recompiling it THREE TIMES. Please, someone, tell me where this error appears in my code, if you even can. Your help will be greatly appreciated. Here is the error msg:
    C:\jdk1.2.1\bin>javac PwGenerator.java
    PwGenerator.java:228: Incompatible type for =. Can't convert java.lang.Character
    to char.
    pwChar = new Character((char) (newAsciiRange));
    ^
    PwGenerator.java:234: Incompatible type for =. Can't convert java.lang.Character
    to char.
    pwChar = new Character((char) (newAsciiRange[0]));
    ^
    2 errors
    Now here is my code (sorry for the length):
    // My Javafied Password Generator
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class PwGenerator extends JApplet
    private String pw;
    private JPanel centerPanel, northPanel, southPanel;
    private JComboBox numchars;
    private JCheckBox lettersUpper, lettersLower, numbers, specialChars;
    private JButton generate, reset;
    private JTextField textfield;
    private int asciiRange[], newAsciiRange[];
    private String pwLength[] = {"6", "7", "8", "9", "10", "11", "12"};
    private int lengthSelected;
    private JLabel pwLabel, numCharLabel;
    private boolean wantSpecialchars, wantNumbers, wantUppercase, wantLowercase;
    public void init()
    // instantiate widgets
    asciiRange = new int[94];
    numCharLabel = new JLabel("Number of characters for password");
    numchars = new JComboBox(pwLength);
    lettersUpper = new JCheckBox("Uppercase letters");
    lettersLower = new JCheckBox("Lowercase letters");
    numbers = new JCheckBox("Numbers");
    specialChars = new JCheckBox("Special characters");
    generate = new JButton("Generate password");
    reset = new JButton("Clear");
    textfield = new JTextField(12);
    pwLabel = new JLabel("Your new password is: ");
    // add widgets to the content pane
    Container c = getContentPane();
    c.setLayout(new BorderLayout());
    centerPanel = new JPanel();
    centerPanel.setLayout(new GridLayout(3, 2));
    centerPanel.add(lettersUpper);
    centerPanel.add(lettersLower);
    centerPanel.add(numbers);
    centerPanel.add(specialChars);
    centerPanel.add(generate);
    centerPanel.add(reset);
    c.add(centerPanel, BorderLayout.CENTER);
    northPanel = new JPanel();
    northPanel.setLayout(new FlowLayout());
    northPanel.add(numCharLabel);
    northPanel.add(numchars);
    c.add(northPanel, BorderLayout.NORTH);
    southPanel = new JPanel();
    southPanel.setLayout(new FlowLayout());
    southPanel.add(pwLabel);
    southPanel.add(textfield);
    c.add(southPanel, BorderLayout.SOUTH);
    } // end init
    public void start()
    // connect event handlers to the widgets
    numchars.addItemListener(new ItemListener() {
         public void itemStateChanged(ItemEvent e)
         lengthSelected = Integer.parseInt(pwLength[numchars.getSelectedIndex()]);
    CheckBoxHandler handler = new CheckBoxHandler();
    lettersUpper.addItemListener(handler);
    lettersLower.addItemListener(handler);
    numbers.addItemListener(handler);
    specialChars.addItemListener(handler);
    generate.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e)
         setAsciiRange();
         trimAsciiRange();
    reset.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e)
         textfield.setText("");
    } // end start
    public void setAsciiRange()
    int numRange[] = new int[10];
    int uppercaseRange[] = new int[26];
    int lowercaseRange[] = new int[26];
    int specialcharRange[] = new int[32];
    System.out.println("Welcome to setAsciiRange!");
    if (!wantSpecialchars && !wantNumbers && !wantUppercase && !wantLowercase)
    JOptionPane.showMessageDialog(this, "You must make a selection", "Error", JOptionPane.ERROR_MESSAGE);
    if (wantNumbers)
    for (int i=0, j=48; i<numRange.length; i++, j++)
         numRange[i] = j;
    System.out.println("Number " + i + " is " + j +"\n");
    } // end for
    } // end if
    if (wantUppercase)
    for (int i=0, j=65; i<uppercaseRange.length; i++, j++)
         uppercaseRange[i] = j;
         System.out.println("Uppercase letter " + i + " is " + j + "\n");
    } // end for
    } // end if
    if (wantLowercase)
    for (int i=0, j=97; i<lowercaseRange.length; i++, j++)
         lowercaseRange[i] = j;
    System.out.println("Lowercase letter " + i + " is " + j + "\n");
    } // end for
    } // end if
    if (wantSpecialchars)
    for (int i=0, j=33; i<15; i++, j++)
    specialcharRange[i] = j;
         System.out.println("Special char " + i + " is " + j + "\n");
    for (int i=15, j=58; i<22; i++, j++)
    specialcharRange[i] = j;
    System.out.println("Special char " + i + " is " + j + "\n");
    for (int i=22, j=91; i<28; i++, j++)
         specialcharRange[i] = j;
         System.out.println("Special char " + i + " is " + j + "\n");
    for (int i=28, j=123; i<specialcharRange.length; i++, j++)
         specialcharRange[i] = j;
         System.out.println("Special char " + i + " is " + j + "\n");
    } // end if
    if (numRange != null)
    System.arraycopy(numRange, 0, asciiRange, 0, numRange.length);
    if (uppercaseRange != null)
    System.arraycopy(uppercaseRange, 0, asciiRange, firstEmptyElement(), uppercaseRange.length);
    if (lowercaseRange != null)
    System.arraycopy(lowercaseRange, 0, asciiRange, firstEmptyElement(), lowercaseRange.length);
    if (specialcharRange != null)
    System.arraycopy(specialcharRange, 0, asciiRange, firstEmptyElement(), specialcharRange.length);
    for (int i=0; i<asciiRange.length; i++)
    System.out.println(asciiRange[i]);
    private int firstEmptyElement()
    int i;
    for (i=0; i<asciiRange.length; i++)
    if (asciiRange[i] == 0)
         break;
    return i;
    private void trimAsciiRange()
    newAsciiRange = new int[firstEmptyElement()];
    for (int i=0; i<newAsciiRange.length; i++)
    newAsciiRange[i] = asciiRange[i];
    System.out.println("newAsciiRange element " + i + " is " + newAsciiRange[i]);
    public void generatePw (int selectedLength)
    int randomNum;
    char pwChar;
    pw = "";
    for (int i=0; i<=lengthSelected; i++)
    randomNum = 1 + (int) (Math.random() * newAsciiRange.length);
    try {
         pwChar = new Character((char) (newAsciiRange[i]));
         pw += pwChar;
         System.out.print(pwChar + " ");
    catch(ArrayIndexOutOfBoundsException e) {
         System.out.print("Setting out-of-bounds index to 0");
         pwChar = new Character((char) (newAsciiRange[0]));
         pw += pwChar;
         System.out.print(pwChar + " ");
    System.out.println(pw);
    textfield.setText(pw);
    private class CheckBoxHandler implements ItemListener
    public void itemStateChanged(ItemEvent e)
    if (e.getSource() == specialChars)
         if (e.getStateChange() == ItemEvent.SELECTED)
         wantSpecialchars = true;
         else
         wantSpecialchars = false;
    } // end outer if
    if (e.getSource() == numbers)
         if (e.getStateChange() == ItemEvent.SELECTED)
         wantNumbers = true;
         } // end if
         else
         wantNumbers = false;
         } // end else
    } // end if
    if (e.getSource() == lettersUpper)
         if (e.getStateChange() == ItemEvent.SELECTED)
         wantUppercase = true;
         else
         wantUppercase = false;
    } // end if
    if (e.getSource() == lettersLower)
         if (e.getStateChange() == ItemEvent.SELECTED)
         wantLowercase = true;
         else
         wantLowercase = false;
    } // end if

    I'm sorry to have to post my entire program, Ok - but next time please use code tags (even though it makes it easier this time, it makes it so much easier to read)
    but I
    keep getting an error msg that points to a variable
    that is NOWHERE in my code. Does your editor have a "find" function? In Notepad it's CTL-F
    The var is called
    PwChar. no, it's called pwChar
    It's mentioned in the error msg, but is
    nowhere in my code. This is even after saving and
    recompiling it THREE TIMES. Please, someone, tell me
    where this error appears in my code, if you even can.
    Your help will be greatly appreciated. Here is the
    e error msg:
    C:\jdk1.2.1\bin>javac PwGenerator.java
    PwGenerator.java:228: Incompatible type for =. Can't
    convert java.lang.Character
    to char.
    pwChar = new Character((char)
    r((char) (newAsciiRange));
    ^
    PwGenerator.java:234: Incompatible type for =. Can't
    convert java.lang.Character
    to char.
    pwChar = new Character((char)
    r((char) (newAsciiRange[0]));
    ^
    2 errors
    Now here is my code (sorry for the length):
    // My Javafied Password Generator
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class PwGenerator extends JApplet
    private String pw;
    private JPanel centerPanel, northPanel,
    l, southPanel;
    private JComboBox numchars;
    private JCheckBox lettersUpper, lettersLower,
    r, numbers, specialChars;
    private JButton generate, reset;
    private JTextField textfield;
    private int asciiRange[], newAsciiRange[];
    private String pwLength[] = {"6", "7", "8", "9",
    ", "10", "11", "12"};
    private int lengthSelected;
    private JLabel pwLabel, numCharLabel;
    private boolean wantSpecialchars, wantNumbers,
    s, wantUppercase, wantLowercase;
    public void init()
    // instantiate widgets
    asciiRange = new int[94];
    numCharLabel = new JLabel("Number of characters
    ters for password");
    numchars = new JComboBox(pwLength);
    lettersUpper = new JCheckBox("Uppercase
    case letters");
    lettersLower = new JCheckBox("Lowercase
    case letters");
    numbers = new JCheckBox("Numbers");
    specialChars = new JCheckBox("Special
    cial characters");
    generate = new JButton("Generate password");
    reset = new JButton("Clear");
    textfield = new JTextField(12);
    pwLabel = new JLabel("Your new password is: ");
    // add widgets to the content pane
    Container c = getContentPane();
    c.setLayout(new BorderLayout());
    centerPanel = new JPanel();
    centerPanel.setLayout(new GridLayout(3, 2));
    centerPanel.add(lettersUpper);
    centerPanel.add(lettersLower);
    centerPanel.add(numbers);
    centerPanel.add(specialChars);
    centerPanel.add(generate);
    centerPanel.add(reset);
    c.add(centerPanel, BorderLayout.CENTER);
    northPanel = new JPanel();
    northPanel.setLayout(new FlowLayout());
    northPanel.add(numCharLabel);
    northPanel.add(numchars);
    c.add(northPanel, BorderLayout.NORTH);
    southPanel = new JPanel();
    southPanel.setLayout(new FlowLayout());
    southPanel.add(pwLabel);
    southPanel.add(textfield);
    c.add(southPanel, BorderLayout.SOUTH);
    } // end init
    public void start()
    // connect event handlers to the widgets
    numchars.addItemListener(new ItemListener() {
         public void itemStateChanged(ItemEvent e)
    lengthSelected =
    d =
    Integer.parseInt(pwLength[numchars.getSelectedIndex()]
    CheckBoxHandler handler = new CheckBoxHandler();
    lettersUpper.addItemListener(handler);
    lettersLower.addItemListener(handler);
    numbers.addItemListener(handler);
    specialChars.addItemListener(handler);
    generate.addActionListener(new ActionListener()
    er() {
         public void actionPerformed(ActionEvent e)
         setAsciiRange();
         trimAsciiRange();
    reset.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e)
         textfield.setText("");
    } // end start
    public void setAsciiRange()
    int numRange[] = new int[10];
    int uppercaseRange[] = new int[26];
    int lowercaseRange[] = new int[26];
    int specialcharRange[] = new int[32];
    System.out.println("Welcome to setAsciiRange!");
    if (!wantSpecialchars && !wantNumbers &&
    s && !wantUppercase && !wantLowercase)
    JOptionPane.showMessageDialog(this, "You must
    u must make a selection", "Error",
    JOptionPane.ERROR_MESSAGE);
    if (wantNumbers)
    for (int i=0, j=48; i<numRange.length; i++,
    ; i++, j++)
         numRange[i] = j;
    System.out.println("Number " + i + " is " + j
    is " + j +"\n");
    } // end for
    } // end if
    if (wantUppercase)
    for (int i=0, j=65; i<uppercaseRange.length;
    ength; i++, j++)
         uppercaseRange[i] = j;
    System.out.println("Uppercase letter " + i + " is "
    " + j + "\n");
    } // end for
    } // end if
    if (wantLowercase)
    for (int i=0, j=97; i<lowercaseRange.length;
    ength; i++, j++)
         lowercaseRange[i] = j;
    System.out.println("Lowercase letter " + i +
    " + i + " is " + j + "\n");
    } // end for
    } // end if
    if (wantSpecialchars)
    for (int i=0, j=33; i<15; i++, j++)
    specialcharRange[i] = j;
    System.out.println("Special char " + i + " is " + j
    j + "\n");
    for (int i=15, j=58; i<22; i++, j++)
    specialcharRange[i] = j;
    System.out.println("Special char " + i + " is
    i + " is " + j + "\n");
    for (int i=22, j=91; i<28; i++, j++)
         specialcharRange[i] = j;
    System.out.println("Special char " + i + " is " + j
    j + "\n");
    for (int i=28, j=123;
    j=123; i<specialcharRange.length; i++, j++)
         specialcharRange[i] = j;
    System.out.println("Special char " + i + " is " + j
    j + "\n");
    } // end if
    if (numRange != null)
    System.arraycopy(numRange, 0, asciiRange, 0,
    ge, 0, numRange.length);
    if (uppercaseRange != null)
    System.arraycopy(uppercaseRange, 0, asciiRange,
    Range, firstEmptyElement(), uppercaseRange.length);
    if (lowercaseRange != null)
    System.arraycopy(lowercaseRange, 0, asciiRange,
    Range, firstEmptyElement(), lowercaseRange.length);
    if (specialcharRange != null)
    System.arraycopy(specialcharRange, 0,
    ge, 0, asciiRange, firstEmptyElement(),
    specialcharRange.length);
    for (int i=0; i<asciiRange.length; i++)
    System.out.println(asciiRange[i]);
    private int firstEmptyElement()
    int i;
    for (i=0; i<asciiRange.length; i++)
    if (asciiRange[i] == 0)
         break;
    return i;
    private void trimAsciiRange()
    newAsciiRange = new int[firstEmptyElement()];
    for (int i=0; i<newAsciiRange.length; i++)
    newAsciiRange[i] = asciiRange[i];
    System.out.println("newAsciiRange element " + i
    " + i + " is " + newAsciiRange[i]);
    public void generatePw (int selectedLength)
    int randomNum;
    char pwChar;
    pw = "";
    for (int i=0; i<=lengthSelected; i++)
    randomNum = 1 + (int) (Math.random() *
    om() * newAsciiRange.length);
    try {
         pwChar = new Character((char) (newAsciiRange));
         [b]pw += pwChar;
         System.out.print(pwChar + " ");
    catch(ArrayIndexOutOfBoundsException e) {
    System.out.print("Setting out-of-bounds index to
    o 0");
         pwChar = new Character((char) (newAsciiRange[0]));
         pw += pwChar;
         System.out.print(pwChar + " ");
    System.out.println(pw);
    textfield.setText(pw);
    private class CheckBoxHandler implements
    ts ItemListener
    public void itemStateChanged(ItemEvent e)
    if (e.getSource() == specialChars)
         if (e.getStateChange() == ItemEvent.SELECTED)
         wantSpecialchars = true;
         else
         wantSpecialchars = false;
    } // end outer if
    if (e.getSource() == numbers)
         if (e.getStateChange() == ItemEvent.SELECTED)
         wantNumbers = true;
         } // end if
         else
         wantNumbers = false;
         } // end else
    } // end if
    if (e.getSource() == lettersUpper)
         if (e.getStateChange() == ItemEvent.SELECTED)
         wantUppercase = true;
         else
         wantUppercase = false;
    } // end if
    if (e.getSource() == lettersLower)
         if (e.getStateChange() == ItemEvent.SELECTED)
         wantLowercase = true;
         else
         wantLowercase = false;
    } // end if

  • I am not able to send mails through Yahoo APP.It gives me an error msg :"the sender address has ben rejected by the server ".I tried adding username and password in the SMTP server settings,But those optiopns are greyed out.

    I am not able to send mails through Yahoo APP. It gives me an error msg :"the sender address has ben rejected by the server ".
    I tried adding username and password in the SMTP server settings,But those optiopns are greyed out.
    So, i am not able to enter anything in fields under SMTP server settings

    You probably have changing settings disabled in Restrictions.

  • Error msg: Enter at least one condition item

    Hi SAP,
    I try to change (extend) rental end date but i received error msg "Enter at least one condition item":
    Enter at least one condition item
    Message no. 62226
    Diagnosis
    No condition items with a positive amount exist. Each condition header, however, must have at least one condition item.
    System Response
    The system may or may not carry out the function you selected. If the function cannot be executed, the system will output an error message indicating that a condition item is necessary.
    Procedure
    If the system does not execute the function you selected, you must enter a condition item or an amount for at least one condition item before you choose the function again. Each condition header must have at least one condition item at the latest when you save your inputs.
    Actually i had maintained the condition type eg: Electricity (variable type) but with "$0" amount. But i have maintained the sales based rent inside the condition item with minimum rent $2.
    My question, is there any way i can proceed with the rental end changes with the condition or scenario i mentioned above?
    I will give points for those who help me solve this problem.
    TQ
    Regards,
    Nazrul

    Hi Nazrul,
    please use transaction FO38 (change active lease-outs) and there set the flag 'cond. not checked'. With double-klick on the flag you can make it changeable. Afterwards the error message should not appear anymore.
    Hope that helps.
    Regards, Franz

  • 1102w gives print error msg, but prints

    I had an hp p1102w for quite some time and it perfectly fits our needs on our home wifi network.  One of the features I use on a regular basis is printing double sided.  About two months ago I started to get an error message "HP P1102 could not print (document name)", but the document printed just fine.  I didn't really worry about it until I tried to print double sided.  Now the printer prints the even numbered sides, but I never get message to turn the paper and press continue.  The printer and computer just sit there looking at each other and nothing happens.  If I press the 'X' button the error message immediately pops up on the computer and the rest of the job is lost on the printer.  I downloaded and installed the HP drivers, the HP printer doctor software, searched the forum for suggestions, tried a few suggestions that sounded vaguely like my problem, turned the firewall off and back on, and finally concluded that the printer was bad.  So I bought another one.  I get the same problem, tried the same remedies, and still am getting the error msg.
    My conclusion is that there is a communication problem between the two devices that has probably been caused by some windows update at some point.  Anybody got any bright ideas?
    Peace,
    V
    This question was solved.
    View Solution.

    Hi vneathery ,
    Thanks for letting me know you were able to print two-sided by opening and closing the lid. But still the issue exists.
    Most likely to resolve this issue, we would have to rip everything out for the printer in the registry and do a fresh install to fix this problem.
    I can send you that information in a private message and you can decide whether to continue with more steps.
    In the forum beside your handle name just click on the envelope to view it.
    You can always restore your computer back to a earlier time when everything was working properly, but you mentioned this issue started 2 months ago. How to refresh, reset, or restore your PC on Windows 8.
    How is the printer connected?
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Hi experts error while adding UDF ,UDT and UDO

    Hi ,
    When i adding udf i getting error msg "Ref count for this object is higher then 0"
    Plz reply as soon as possible
    Awaiting Soon Reply
    Rajkumar Gupta

    Hi,
    System.Runtime.InteropServices.Marshal.ReleaseComObject(rs)
             rs = Nothing
             GC.WaitForPendingFinalizers()
             GC.Collect()
    try the above code and before using the COM objects as there is a problem with the object ur getting the error.
    If there is more than one component alive at same point of time, you will get this error.
    After use of ur DI objects call Garbage collector and dump the objects.
    Hope it helps,
    Vasu Natari.

  • Error while adding A/R credit memo base on A/R  invoice using DI-API

    Hi Expert,
    Adding partial a/r credit memo   getting error msg "Invalid value  [ORIN.DocRate]"
    Thanks
    Rajkumar
    Edited by: Rajkumar Gupta on Dec 9, 2011 3:01 AM

    Hi,
    You may only need to provide BaseType, BaseEntry and BaseLine when you add A/R credit memo base on A/R invoice. Omit all other fields if you include in your code.
    Thanks,
    Gordon

  • Error msg 13019 please help

    hi
    i need help in getting rid of this error msg 13019. it started after downloaded a couple of songs. and it will not allow me to sync my nano ipod thanks

    Ive fixed this issue before. The steps are kinda long but they work.
    This is for windows computers with iPod nano that get the error 13019 during or after a sync with iTunes.
    -Open itunes
    --click, edit, click preferences
    --select advanced
    ---make a note of the iTunes media folder location on a notepad.
    ---put a check in organize files
    ---take the check out of copy files
    ---click ok
    --Click file, at the top of iTunes
    --move mouse over library, select organize, and consolidate files. ( This ensures all music in you iTunes will be in the iTunes media folder later.)
    At this point, if you have playlists you want to save:
    -Create a folder on your desktop, call it, playlists
    --Hover you mouse over your playlist in iTunes, should be at the bottom of the blue/grey column on the left.
    --right click the playlist, select export playlist
    --Navigate to your desktop and open the playlist folder and save.
    ---Do this for each playlist you want to save
    -Close itunes
    -Click your start button, and open computer or my computer
    --Using what you wrote down on your note pad, follow the path to the "iTunes folder", NOT the iTunes media folder
    --Open the iTunes folder.
    --Stop here
    -You will see icons that look like folders and you will see icons that look like files-
    -You will KEEP the FOLDERS
    -You will DELETE the FILES
    --If it makes you more comfortable you can cut the files out and paste on your desktop, but as of now we do not need the files any longer as we have the playlists backed up. Remember-Keep the folders.
    --That was the magic--
    -Disconnect your iPod if connected.
    -When you open your iTunes, it will be empty, that is OK. We are recreating the library. Everything will come back in a few seconds.
    -Click file at the top
    --Select, add FOLDER to library, not to be confused with add file.
    --In the window that pops up, locate and click on computer or my computer
    --From here follow the path to the iTunes media folder on your note pad, but do not open the iTunes media folder.
    --Click the iTunes music/media folder one time so it highlights.
    --On the bottom right you will have option to select folder, or choose folder or OK. Hit that button.
    All you music will start to import back into iTunes.
    -Plug in iPod after completed
    --a message pops up about being synced with a different library.
    --Click erase and sync
    --Watch all your songs go on your iPod with no error message.
    From here you may sync your iPod the way you want with out worrying about the persnickety error 13019!!!!!
    Hope this helps!!!
    Julian
    p.s. Follow the directions exactly.
    p.s.s. To add your playlists back to iTunes:
    -Click file at the top of the screen
    --move your mouse over library, selecte import playlist
    --on the new screen that pops up, navigate to your desktop
    --open the playlist folder, select the first playlist, hit ok
    --repeat for each playlist exported

  • Payroll Error msg "The gross wages do not cover the negative offset that has been forwarded, therefore, no grossup is permitted".

    Hi Experts,
    I am getting the below error msg while running payroll for an US employee.
    "The gross wages do not cover the negative offset that has been forwarded; therefore, no grossup is permitted."
    I am getting this error msg just after USTAX function processing part of UTX0 subschema. I am highlighting below facts & findings for your reference.
    As per a client requirement,  I have configured a new gross up WT (ER benefit contribution) for a benefit plan (IT 0168) and the changes are in QAS system. The changes have to be reflected in period 20/2014 (4th May'14- 10th May'14) with retro effective 01/01/2014 as per the benefit plan record maintained from 01/01/2014.
    This error msg is coming only for few employees. In my example, when I am running payroll in period 20/2014 with forced retro as 01/01/2014, system is giving error in period 14/2014 (23rd Mar'14-29th Mar'14). When I checked the pay result of this employee for period 14/2014, I can see the /101 is in -ve value and there is claim generated for this period. So I think, eventhough, a value of $ 2.53 is getting added as per the IT 0168 record, its not helping to give a +ve gross value and thus tax is not able to recoved on the same.
    I hope you have come across this issue and can help me to assist to resolve the error msg.
    Regards,
    Prakash  

    If you have correctly configured payroll the system should automatically off set that and should create wage tyes /561 or /563 in RT.

  • Getting an error while adding the user in Sharepoint foundation 2010 environment.

    Hi,
    I am having full control access to SharePoint site. Then i tried add user for that site.
    But i am getting following error while adding the user to the site.
    An unexpected error has occurred.
    Troubleshoot issues with microsoft SharePoint Foundation.
    Correlation ID:3035B777-1B7C-4463-B35E-06657B72C2E4
    Can you please help me anyone on this.
    Thanks,
    Ashok

    This could be any one of a number of things.  You need to lookup the Correlation ID in the ULS logs on the SharePoint server.  That should provide the additional information necessary to diagnose and solve the problem.  Here's a blog post
    on how to find the error.
    http://habaneroconsulting.com/Blog/Posts/Get_the_Real_SharePoint_Error_using_the_ULS_Logs.aspx#.UvEuffldWik 
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Error while adding Incoming Excise Invoice

    Hi Experts,
    I am facing 1 problem while adding Incoming Excise Invoice & A/P invoice.
    The error msg is:-
    No matching records found  'G/L Accounts' (OACT) (ODBC -2028)  [Message 131-183]
    What might be reasons Vendor account is correctly defined.
    Regards-
    Mona

    Please check the following threads:
    GL Account missing in AR Credit Memo
    'No matching records found ' G/L account' (OACT) (ODBC - 2028) [Message 131
    Re: g/l account missing
    Re: G/L account is missing
    Thanks,
    Gordon

  • Received the following Error Msg: Platform Version '6.0' is not compatible with minVersion =6.01, maxVersion =6.01

    When I brought up my machine this afternoon, it started to download 6.0.1 and then I received an error msg from ZoneAlarm requesting that I upload an error file. This occurred several times, and then I uninstalled the Firefox files and again downloaded 6.0.1. At this point I then received the Version 6.0/6.0.1 error msg.

    If you use ZoneAlarm Extreme then you may have to disable that during the installation to prevent ZA from blocking access to some files in the Firefox program folder (C:\Program Files\Mozilla Firefox\).
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 6.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox

Maybe you are looking for

  • Error while exporting webi reports using BIAR command line tool.

    HI,          We are trying to export webi objects to a biar file using the biar command line tool, biarengine.jar in XI 3.0. We are using the query select * from ci_infoobjects where si_kind='webi'. We are getting an error "unable to create plugin ob

  • Photos deleted by iPhoto via subfolders- now they can not be found

    I deleted photos in various folders after they were put there by iphoto when the folder was created. I deleted the photos after reading iphoto WILL NOT permantly delete photos from the main library. The photos are stored on a large 3T hard drive. Som

  • SAP query for Material pricing group changes in material.

    Dear all, I'm trying to generate a query for Material Pricing group changes in material. For that I've to retrieve data from follwing three tables MVKE, CDHDR & CDPOS. Firstly while generating infoset - I tried it by joining tables MVKE & CDHDR, but

  • No image

    I have an HP media center m8000 PC when i turn the computer on there is no beeps but the main problem is when i plug in a monitor there is nothing also that goes for the hdmi plug all the fans are working including the video card so i didnt think any

  • Flash hyperlink issue

    So for some reason the hyperlinks in my flash show are not working. If you go directly to the URL of the flash show itself, the hyperlinks work fine...but once you embed them into even a simple html page, they seem work for a short period of time, an