Non-unix type who wants to uninstalling x11/OpenOffice - Panther

Please help! I've decided unix is beyond me and want to uninstall x11/OpenOffice from my G3 ibook (Panther). I can't understand and follow the instructions that are in the forum.
Any simple directions for my 40 watt brain will be very appreciated!
Thanks!!

Hi,
To uninstall OpenOffice, the simplest way should be just dragging the Openoffice folder in the Applications folder to the trashcan and deleteing it.
X11 is hurtless to leave on the system. OSX is a Unix system itself, no matter if you have X11 or not. Leaving it might save you trouble from trying out other apps that might need it in the future.
Ke

Similar Messages

  • HP Laser Jet Professional M1210 Series I want to uninstall the printer?

    Hi There,
    I was using HP Laser Jet Professional M1210 Series but after my printer got damaged by floods, I want to uninstall the printer but it shows me to complete the printing jobs which I am not able to find anywhere. Please help me out how can I uninstall the said pinter.
    Shabir Bhat

    Hi @Shabir_Bhat ,
    I see by your post that you are unable to uninstall the printer software, you are getting a message that there are still print jobs in the queue. I will certainly do my best to help you.
    Clear Printer Spooler Files and Enable the Spooler Service.
    In desktop mode, press the Windows key and R at the same time, to show the run command line.
    1. Type "Services.msc" (without the quotation marks).
    2. Double-click "Printer Spooler" in the Services list.
    3. Click Stop and click OK.
    4. Navigate to "%WINDIR%\system32\spool\printers", right click on the document and left click to delete the job.
    5. Run "Services.msc" (without the quotation marks).
    6. Double-click "Printer Spooler" in the Services list.
    7. Click on Start. In the Startup Type list, make sure that "Automatic" is selected and click OK.
    If there was any jobs stuck in the queue, after doing these steps, go back in the Print Queue and try deleting them again.
    Go to the Startup screen, (tiles menu) type in "Devices and Printers", select settings, click on Devices and Printers.
    Right-click or tap and hold the name of the printer, and then click or tap See what's printing.
    Click or tap Printer, and then click or tap Cancel All Documents.
    Click or tap Yes to confirm the action.
    If documents remain in the print queue, restart the computer.
    If you are still having issues, download and run the Print and Scan Doctor. It will diagnose the issue and might automatically resolve it. Find and fix common printer problems using HP diagnostic tools for Windows?
    If you need further assistance, just let me know.
    Have a nice day!
    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

  • Who wants to be a Millionaire ??? CODE???

    hi
    i'm tryin to make a basic game who wants to be a millionaire...i got the following..layout of the textfield textarea etc.. but i cant seem to use the vectors to store the questions from a txt file then transfer it over to the textarea box or radio buttons.... n how about the checking part??
    anyone know where to find help or can help me??
    thnks

    That is the game frame:
    // File:          GameFrame.java
    // Purpose:          The window that appears when the player chooses to play the game
    //                    This window shows the questions and answers and the amount being played for
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.Vector;
    import java.io.*;
    public class GameFrame extends JFrame implements ActionListener {
         private MainFrame frmMain;
         private Vector questionVector;
         private JTextField jtfquestions;
         private JButton btnCancel, btnPrevious, btnNext, btnSelect,btnStart;
         private JRadioButton jrba, jrbb, jrbc, jrbd;
         private ButtonGroup btg = new ButtonGroup();
         private JList score;
         private final String money []= {"15. 1000000","14. 500000","13. 250000","12. 125000","11. 64000","10. 32000","9. 16000","8. 8000","7. 4000","6. 2000","5. 1000","4. 500","3. 300","2. 200","1. 100"} ;
         public GameFrame(MainFrame mf)
         frmMain = mf;                    // Get a handle on caller
    score=new JList (money);
    score.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
         JPanel p1=new JPanel();
         ImageIcon logo=new ImageIcon ("millionaire.jpg");
         p1.add(new JLabel(logo));
         JPanel p2=new JPanel();     
                         p2.add(score);
            JPanel p5=new JPanel();
           p5.setLayout(new GridLayout(2,3,4,4));
    p5.add(jrba = new JRadioButton("A", false));
    p5.add(jrbb = new JRadioButton("B", false));
    p5.add(jrbc = new JRadioButton("C", false));
    p5.add(jrbd = new JRadioButton("D", false));
    btg.add(jrba);
    btg.add(jrbb);
    btg.add(jrbc);
    btg.add(jrbd);
    JPanel p3=new JPanel();
    p3.setLayout(new FlowLayout(FlowLayout.LEFT,5,5));
    p3.add(jtfquestions=new JTextField(50));
    p3.add(p5);
    JPanel p4=new JPanel();
       p4.setLayout(new FlowLayout(FlowLayout.CENTER,5,5));
    p4.add(btnCancel=new JButton("Cancel"));
    p4.add(btnPrevious=new JButton("Previous"));
    p4.add(btnNext=new JButton("Next"));
    p4.add(btnSelect=new JButton("Select"));
    p4.add(btnStart=new JButton("START"));
    getContentPane().setLayout(new BorderLayout(5,5));
    getContentPane().add(p1, BorderLayout.NORTH);
    getContentPane().add(p2, BorderLayout.EAST);
    getContentPane().add(p3, BorderLayout.CENTER);
    getContentPane().add(p4, BorderLayout.SOUTH);
    Container cn = this.getContentPane();
    btnCancel.addActionListener(this);
    btnPrevious.addActionListener(this);
    btnStart.addActionListener(this);
    btnNext.addActionListener(this);
    jrba.addActionListener(this);
    jrbb.addActionListener(this);
    jrbc.addActionListener(this);
    jrbd.addActionListener(this);
    try
    readFile("questions.dat");     
    catch (Exception e)
         System.out.println(e);
    public void actionPerformed(ActionEvent e)
    public void readFile(String fileName) throws IOException
              BufferedReader bReader;
              String question;
              questionVector = new Vector();
              File inFile = new File(fileName);
              if (!inFile.exists())
              System.out.println("File does not exist");
                   //System.exit(0);
         bReader = new BufferedReader(new FileReader(inFile));
         question = bReader.readLine();
         while (question != null)
         String a1, a2, a3, a4, correct;
              int iCorrect;
              a1 = bReader.readLine();
              a2 = bReader.readLine();
              a3 = bReader.readLine();
              a4 = bReader.readLine();
         correct = bReader.readLine();
         // Convert the value from a string to an integer
         iCorrect=Integer.parseInt(correct);
                         // Create a new Question object using the parameterised constructor
    Question q = new Question(question,a1,a2,a3,a4,iCorrect);
         questionVector.add(q);
         question = bReader.readLine();
    // Close the file stream once we have finished reading the file
         bReader.close();     
    public void setQuestion(int questNum)
    Question q = (Question) questionVector.get(questNum);
    System.out.println("Question number "+questNum+ " is "+q.getQuestion());     
    public void showQuestions()
    for (int i=0; i< questionVector.size(); i++)
         // Cast the object stored in the Vector to type Question
    Question q = (Question)questionVector.elementAt(i);
                   q.printAll();
    Now Question Frame:
    // File:          Question.java
    // Purpose:          A Java class to store a question and possible answers
    public class Question
         private String question;
         private String answer1, answer2, answer3, answer4;
         private int correctAnswer=0;
    public Question()     
    public Question(String quest, String ans1, String ans2, String ans3, String ans4, int correct)
         question = quest;
         answer1=ans1;
         answer2=ans2;
         answer3=ans3;
         answer4=ans4;
         correctAnswer=correct;          
    public void printAll()
    System.out.println(question);
    System.out.println("A: " + answer1);
    System.out.println("B: " + answer2);
    System.out.println("C: " + answer3);
    System.out.println("D: " + answer4);
    System.out.println("Correct answer is answer number "+ correctAnswer);
    public String getQuestion()
                 return question;
    ok those are the codes now the hard part is making the question appear on the _private JTextField jtfquestions;_ n then having the ans place on the _private JRadioButton jrba, jrbb, jrbc, jrbd;_ then if a correct ans is inputed the JList score should move up like the game itself
    this is what it looks like GUI wise
    http://img164.imageshack.us/img164/6126/gui6iz.jpg
    now anyone have any tips or help options?
    thnks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • I'm having to re-install PSE 11 on a new hard Drive.  I clicked the installer and it ran, but says it's missing the .exe file.  I then downloaded PSE 11 from your website and when I unzipped it and ran it, it wanted to uninstall PSE 11.  Now I'm contactin

    I'm having to re-install PSE 11 on a new hard Drive.  I clicked the installer and it ran, but says it's missing the .exe file.  I then downloaded PSE 11 from your website and when I unzipped it and ran it, it wanted to uninstall PSE 11.  Now I'm contacting you

    Okay, so, fast forward from July to now -
    - I've visited my closest Apple store's genius bar twice now. (Over an hour and a half away.)
    - My computer spent at least 8 hours behind their closed doors in the workshop
    - Several complete erases of the harddrive have taken place
    - Most of the Apple geniuses I dealt with were nice and very knowledgeable, but they were and still aren't 100% sure exactly what is wrong with my computer.
    The good news is:
    - They were able to at least get it running again, with a clean install from their servers of OS X Lion 10.7.5
    - They believe that my problems stem from either 1 of 2 things:
            - Faulty Hard Drive (even though it is brand new)
             - The wrong build of software being installed.
    Now, while the wrong build does seem like it could be the problem, it doesn't make sense in the aspect that all of the initial problems began when the first hard drive failed. The same problems continued when I changed out the failed hard drive with the brand spanking new one, and only slightly improved when I was able to successfully install the OS that came with the original disks for my computer. I'm not convinced this thing is back to normal, but hopefully I can make it last through getting a shiny new retina Macbook Pro in the coming future. Thank you so much to everyone who read and replied to this post!
    - Andrew =)

  • I have a friend who wants me to zip my iWeb website files so I can send them to him.  I am having difficulty finding where these files are.  Thanks!

    I have a friend who wants me to zip my iWeb website files so I can send them to him.  I am having difficulty finding where these files are.  Thanks!

    Besides the trillion topics that explain where the file is, let me add another one.
    The UNIX way : ~/Library/Application Support/iWeb/
    The Mac way :
    Finder
    Hold Option key
    Pull down GO menu
    Look closely

  • Whenever i m trying to install firefox the error will come that is previous firefox want complete uninstalation its required to restart the computer when its restart its not installed tell me why

    whenever i m trying to install firefox the error will come that is previous firefox want complete uninstalation its required to restart the computer when its restart its not installed tell me why in

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Operation attempted on non-PersistenceCapable type

    I have a Drawing object which contains Shape objects and I want to persist
    the drawing:
    public class DrawTx extends JdoTx{
    Drawing dwg = new Drawing();
    public void action() {
    pm.makePersistent(dwg);
    dwg.add( new Circle(3,3,10) );
    dwg.add( new Square(10,10,10) );
    System.out.println(dwg.getArea());
    Problem is, it fails when I run it:
    Operation attempted on non-PersistenceCapable type: "class
    smartsoft.shapes.Drawing"
    But Drawing IS PC, it's declared as such in the meta data and the schema
    tool built the appropriate tables. Any guesses as to why I'm receiving this
    error?
    Thanks
    Dave Ford
    Smart Soft - The Developer Training Company
    http://www.smart-soft.com

    Dave,
    Could you please post the full stack trace, the location of your metadata
    files, and your classpath?
    Also, are you certain that you enhanced the DrawTx class? The schematool
    will operate on your class even if it has not been enhanced. The best way
    to tell for sure if your class has been enhanced is to run 'javap
    my.class.Name' from the command line and see if it includes
    PersistenceCapable as an implemented interface.
    -Patrick
    On Mon, 13 Jan 2003 11:24:42 -0500, Dave Ford wrote:
    I have a Drawing object which contains Shape objects and I want to
    persist the drawing:
    public class DrawTx extends JdoTx{
    Drawing dwg = new Drawing();
    public void action() {
    pm.makePersistent(dwg);
    dwg.add( new Circle(3,3,10) );
    dwg.add( new Square(10,10,10) );
    System.out.println(dwg.getArea());
    Problem is, it fails when I run it:
    Operation attempted on non-PersistenceCapable type: "class
    smartsoft.shapes.Drawing"
    But Drawing IS PC, it's declared as such in the meta data and the schema
    tool built the appropriate tables. Any guesses as to why I'm receiving
    this error?
    Thanks
    Dave Ford
    Smart Soft - The Developer Training Company http://www.smart-soft.com
    Patrick Linskey
    SolarMetric Inc.

  • How to uninstall system applications? I want to uninstall pinterest.

    I love minimalist systems (like archlinux). This is why I buy a firefox os phone, who gives me more control over to wich applications may I have or not.
    I believe pinterest is not a essential system application (as some others), so I want to uninstall it. Is it possible?
    Thanks!

    Hi lecarrera,
    Are you still experiencing this issue?
    I believe what you are referring to are the '''Everything.me''' applications. They are not installed in your device, they are simply links to web-applications. These applications do not take up space and memory from your Firefox OS, so you do not have to worry about that. =)
    Please let us know if you have any other questions or concerns about your Firefox OS device.
    Thanks,
    - Ralph

  • How to uninstall X11

    I tried GIMP and decided I don't want to use it. I've searched these forums, the Apple site, the install disk and I can't find out...
    How do I uninstall X11?

    AFAIK, just drag the X-11 app out of /Applications/Utilities, into the trash, and empty it. If you want to see everything that was installed, run the Archive.bom file inside the /Library/Receipts/X11User.pkg via the Terminal.app using the lsbom command:
    lsbom /Library/Receipts/X11User.pkg/Contents/Archive.bom
    Then, you can delete all of those pieces.

  • I want to uninstall real player.but i want to watchvedio with another apps.

    i want to uninstall real player apps.i deleted the data of real player.i can not view downloaded video.because the file downloaded loaded with real player.it can not be opened.i want watch video with another apps.

    See:
    * [[Managing file types]]
    "File handling in Firefox 3 and SeaMonkey 2"
    "Reset Download Actions"
    * http://kb.mozillazine.org/File_types_and_download_actions

  • Uninstall x11

    made the BIG mistake of downloading XQuartz-2.7.5 (x11) when I was prompted to do so in order to download some fonts. Now my browser is screwed up, I just want to uninstall the thing, but apparently moving the application to trash doesn't do the trick. How can I get rid of it?! I downloaded it from this page: http://xquartz.macosforge.org/landing/
    I'm running OS X 10.9 Mavericks.
    thanks in advance.

    thanks for the quick response. I emptied my trash and reset my default homepage to google -- realized my initial browser confusion was because it had defaulted to Bing instead. I made sure that my preferences had my default search engine set as google, but when I did a search on google, I was directed to Bing again. It looks like it flashed through this url: http://search.installmac.com/results.html?c=8&v=insMac&q=creative+canopy before it went from my google page to the Bing search results page. So... it seems like there's something still lurking in my applications/system that I need to get rid of.
    When I searched for xQuartz in my applications folder, these files came up. but since they didn't necessarily have XQuartz in the file name, I wasn't positive they were related and hesitated to trash them. Should I?
    file:///opt/X11/include/xorg/events.h
    file:///opt/X11/share/doc/xorg-docs/MAINTAINERS
    file:///opt/X11/include/xorg/os.h
    file:///opt/X11/share/man/man1/quartz-wm.1
    file:///opt/X11/share/man/man1/startx.1
    file:///opt/X11/share/man/man7/X.7
    file:///opt/X11/share/man/man1/xinit.1
    file:///opt/X11/share/man/man1/Xorg.1
    file:///opt/X11/share/man/man1/Xserver.1
    file:///opt/X11/include/X11/Xtrans/Xtrans.c

  • I want to uninstall Acrobat reader. I got support in the community to access my HD and to send to trash the internet plugs in for PDF viewer, but when I try to download a PDF from internet a black screen appears and preview doesn't open

    I want to uninstall Acrobat reader. I got support in the community to access my HD and to send to trash the internet plugs in for PDF viewer, but when I try to download a PDF from internet a black screen appears and preview doesn't open

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • How can i back up my iTunes library if i want to uninstall it?

    how can i back up my iTunes library if i want to uninstall it?

    Quit iTunes.
    Locate your external hard drive.
    Mac: On the Desktop or Finder sidebar.
    Windows: In My Computer
    Drag the iTunes folder (backed up earlier) from your external hard drive to whatever location you desire on your internal hard drive. It is recommended that you choose the default location for the iTunes folder, which is:
    Mac OS X: /Users/username/Music
    Windows XP: \Documents and Settings\username\My Documents\My Music\
    Windows Vista: \Users\username\My Music\
    Windows 7 or 8: \Users\username\Music\
    Open iTunes while holding down the Option key (Mac) or Shift key (Windows).
    In the resulting dialog, click the Choose Library button.
    Select the iTunes folder you just moved to the internal hard drive.
    Click Choose (Mac OS X) or Open (Windows) and then choose the iTunes Library file inside .
    After following these steps, iTunes will open and your iTunes Library will be restored.
    (http://support.apple.com/kb/ht1751)

  • I have Firefox 3.6.8 and want to uninstall it and then reinstall it because of a problem. Where is my Bookmark file kept because I don't want to lose it and won't uninstall until I find where it is filed. Please help me.....Thanks John

    I want to uninstall Firefox 3.6.8 because of a problem I am having and then once I do that I will reinstall it. My problem is I don't want to lose my Bookmarks. Can someone please tell me where they are filed so I can make a backup copy before I do any uninstalling. Thanks, John

    Bookmarks and other personal data are located in your Profile folder. See:<br />
    * http://support.mozilla.com/en-US/kb/Profiles
    * https://support.mozilla.com/en-US/kb/Backing+up+your+information
    * http://support.mozilla.com/en-US/kb/Profiles#How_to_find_your_profile
    * http://kb.mozillazine.org/Show_hidden_files_and_folders
    * http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    When un-installing Firefox be sure that the box specified in Item 7 of the article below (and the image that I have attached) is NOT checked:
    *Uninstalling Firefox: http://support.mozilla.com/en-US/kb/uninstalling+Firefox

  • "Schema validation found non-data type errors" error when passing a string value to date field in infopath

    Hi,
    I have an infopath web brower enabled form. In the form i have a date field.
    I am passing the data from the database to that field using the C# code.
    But, as the field from database is coming as string, i am getting an error, and i am not able to assign the value.
    I get the date value from database as "3/25/2011 12:00:00 AM"
    I used the below code:
    [CODE]
    if (objInfopathFormcData.myRecievedDate != null)
      myRoot.SelectSingleNode("/my:myFields/my:field97", NamespaceManager).SetValue(objInfopathFormcData.myRecievedDate);
    [/CODE]
    I am getting the error as "Schema validation found non-data type errors".
    How to set the value for a date field in Infopath.
    Thank you

    HI,
    I fixed it:
    Below code is used to fix:
    [CODE]
    XPathNavigator xfield = null;
    DateTime dtmyRecievedDate;
    dtmyRecievedDate = Convert.ToDateTime(objInfopathFormcData.myRecievedDate);
    if (objFormcData.FcCompletionDate != null)
    xfield = myRoot.SelectSingleNode("/my:myFields/my:field97", NamespaceManager);
    DeleteNil(xfield);
    xfield.SetValue(dtmyRecievedDate.GetDateTimeFormats().GetValue(5).ToString());
    // method to delete xsi:nil
    private void DeleteNil(XPathNavigator nav1)
    if (nav1.MoveToAttribute("nil", "http://www.w3.org/2001/XMLSchema-instance"))
       nav1.DeleteSelf();
    [/CODE]
    Thank you

Maybe you are looking for

  • Part of the screen unresponsive

    This problem only occurs about 25% of the time for no apparent reason. In the top right quater of the screen if I try to mouse click on a file to open it it is pot luck if I will get a reaction. If I don't and I drag the window to a different part of

  • Free goods purchase

    How to procure material's as free goods through purchase order.

  • Create Link does not work in a Search Result (SearchResultLayoutSet)

    Hello, we changed  in a search iView the "Layout Set for Search Results" to the standard ConsumerExplorer. Because we would like to allow people to "Create Links" from the documents which are shown in the search result. But the Create Link function i

  • Kanban - External procurement with multiple vendor

    Hi Gurus, We are working on implementation of Kanban for external procurement (Scheduling agreement) in my organisation. As per the business requirement, some of the components are supplied by more than one vendor. As per the standard process, Kanban

  • Location Group / Assortment not achieve SAP ECC

    Hi, I'm trying to release assortment master data from transaction upari_rel. When I see the log with parameters Object: u201CWu201D and Subobject u201CMAP_RELEASEu201D, everything looks ok. Key of the selection criteria: LOCGRP104933 Please check lon