9.0.2 to 9.0.2.6 Bugs list

Hi,
Can anyone tell me whether a bugs list is available for this new patch. We are not keen to go ahead and update if it changes something we do not even know is a bug.
If no bugs list exists, can someone at OTN tell me where and how I can find out when this list will be available?
Karl

Karl
Portal 9.0.2.6 is closer to being a new release than a smaller patch. There are many new features available. Over a years development has gone into 9026 since 902 was released. And as such there are currently no plans to release a list of bugs fixed.
Regards

Similar Messages

  • Problem with threads, program always crash

    new to threads, may be doing something COMPLETELY wrong. When I run the program I get a couple of NullPointerExceptions in Thread-0 and Thread-1. I'm confused because it screws up when I call size() for arrayList, and in the API size doesn't throw anything.
    public class ProducerConsumerRunner
       public static void main(String args[])
          Queue q = new Queue(QUEUE_MAX_SIZE);
          ProducerRunnable producer = new ProducerRunnable(q, ITERATIONS);
          ConsumerRunnable consumer = new ConsumerRunnable(q, ITERATIONS);
          //works good up to here
          Thread t1 = new Thread(producer);
          Thread t2 = new Thread(consumer);
          t1.start();
          t2.start();
       private static int ITERATIONS = 50;
       private static int QUEUE_MAX_SIZE = 25;
    import java.util.ArrayList;
    import java.util.concurrent.locks.ReentrantLock;
    public class Queue {
         public Queue(int maxSize)
              list = new ReentrantLock();
              underLimit = list.newCondition();
              MAX_SIZE = maxSize;
         public void add(String line)
              list.lock();
              try{
                           System.out.println("add method of Queue");
                   while(record.size() >= MAX_SIZE){//things get screwed up when this condition is evaluated
                        //size method is crashing the program
                        System.out.println("2");
                        underLimit.await();
                        System.out.println("3");
                   record.add(line);
              }catch(java.lang.InterruptedException e){
                   System.out.println("await interupted: "+e.getMessage());
              }finally{
                   list.unlock();
         public void remove(int line)
              list.lock();
              record.remove(line);
              list.unlock();
         public  ArrayList<String> record;
         private final ReentrantLock list;
         private final java.util.concurrent.locks.Condition underLimit;
         private final int MAX_SIZE;
    import java.util.Date;
    public class ProducerRunnable implements Runnable{
         public ProducerRunnable(Queue q, int itterations)
              this.q = q;
              ITTERATIONS = itterations;
         public void run()
              String date;
              for(int i = 0; i<ITTERATIONS; i++)
                   date = new Date().toString();
                   q.add(date);//this is where it screws up
                   System.out.println(date+" added");
                   try{
                   Thread.sleep(100);
                   }catch(java.lang.InterruptedException e){
                        System.out.println("ProduccerRunnable's sleep was interupted");
         private final Queue q;
         private final int ITTERATIONS;
    public class ConsumerRunnable implements Runnable{
         public ConsumerRunnable(Queue q, int itterations)
              this.q = q;
              ITTERATIONS = itterations;
         public void run()
              //Queue q = new Queue();
              int length;
              for(int i = 0; i<ITTERATIONS; i++)
                   length = q.record.size();//things are getting screwed up here
                   while(q.record.get(length) == null)
                        length--;
                   System.out.println((String)q.record.get(length));
                   q.remove(length);
                   try{
                   Thread.sleep(100);
                   }catch(java.lang.InterruptedException e){
                        System.out.println("ConsumerRunnable's sleep was interupted");
         private final Queue q;
         private final int ITTERATIONS;
    }

    question:
    this works right
         public void remove()
              list.lock();
              int line = 0;
              try{
                   *while(record.size() < 1)*
                        range.await();
                   record.remove(line);
                   range.signalAll();
              }catch(java.lang.InterruptedException e){
                   System.out.println("await interupted: "+e.getMessage());
              }finally{
                   list.unlock();
         }this is deadlock
    *int list = 0;*
    *while((list = record.size)<1) was screwing things up because of the assignment*record is ArrayList of strings. when better to use Vector instead of ArrayList? i notice no differnce and i use threads
    initially I thought record.size was being evaluated and before could be assigned to list, time slice ran out. this could not be case because I use ReentrantLock (list) to lock it.
    Edited by: bean-planet on Apr 1, 2009 4:31 PM

  • Problem with threads running javaw

    Hi,
    Having a problem with multi thread programming using client server sockets. The program works find when starting the the application in a console using java muti.java , but when using javaw multi.java the program doesnt die and have to kill it in the task manager. The program doesnt display any of my gui error messages either when the server disconnect the client. all works find in a console. any advice on this as I havent been able to understand why this is happening? any comment would be appreciated.
    troy.

    troy,
    Try and post a minimum code sample of your app which
    does not work.
    When using javaw, make sure you redirect the standard
    error and standard output streams to file.
    Graeme.Hi Graeme,
    I dont understand what you mean by redirection to file? some of my code below.
    The code works fine under a console, code is supposed to exit when the client (the other server )disconnects. the problem is that but the clientworker side of the code still works. which under console it doesnt.
    public class Server{
    ServerSocket aServerSocket;
    Socket dianosticsSocket;
    Socket nPortExpress;
    ClientListener aClientListener;
    LinkedList queue = new LinkedList();
    int port = 0;
    int clientPort = 0;
    String clientName = null;
    boolean serverAlive = true;
    * Server constructor generates a server
    * Socket and then starts a client threads.
    * @param aPort      socket port of local machine.
    public Server(int aPort, String aClientName, int aClientPort){
    port = aPort;
    clientName = aClientName;
    clientPort = aClientPort;
    try{
    // create a new thread
    aServerSocket = new ServerSocket(port) ;
    // connect to the nPortExpress
    aClientListener = new ClientListener(InetAddress.getByName(clientName), clientPort, queue,this);
    // aClientListener.setDaemon(true);
    aClientListener.start();
    // start a dianostic port
    DiagnosticsServer aDiagnosticsServer = new DiagnosticsServer(port,queue,aClientListener);
    // System.out.println("Server is running on port " + port + "...");
    // System.out.println("Connect to nPort");
    catch(Exception e)
    // System.out.println("ERROR: Server port " + port + " not available");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Server port " + port + " not available", JOptionPane.ERROR_MESSAGE);
    serverAlive = false;
    System.exit(1);
    while(serverAlive&&aClientListener.hostSocket.isConnected()){
    try{
    // connect the client
    Socket aClient = aServerSocket.accept();
    //System.out.println("open client connection");
    //System.out.println("client local: "+ aClient.getLocalAddress().toString());
    // System.out.println("client localport: "+ aClient.getLocalPort());
    // System.out.println("client : "+ aClient.getInetAddress().toString());
    // System.out.println("client port: "+ aClient.getLocalPort());
    // make a new client thread
    ClientWorker clientThread = new ClientWorker(aClient, queue, aClientListener, false);
    // start thread
    clientThread.start();
    catch(Exception e)
    //System.out.println("ERROR: Client connection failure");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Client connection failure", JOptionPane.ERROR_MESSAGE);
    }// end while
    } // end constructor Server
    void serverExit(){
         JOptionPane.showMessageDialog(null, "Server ","ERROR: nPort Failure", JOptionPane.ERROR_MESSAGE);
         System.exit(1);
    }// end class Server
    *** connect to another server
    public class ClientListener extends Thread{
    InetAddress hostName;
    int hostPort;
    Socket hostSocket;
    BufferedReader in;
    PrintWriter out;
    boolean loggedIn;
    LinkedList queue;      // reference to Server queue
    Server serverRef; // reference to main server
    * ClientListener connects to the host server.
    * @param aHostName is the name of the host eg server name or IP address.
    * @param aHostPort is a port number of the host.
    * @param aLoginName is the users login name.
    public ClientListener(InetAddress aHostName, int aHostPort,LinkedList aQueue,Server aServer)      // reference to Server queue)
    hostName = aHostName;
    hostPort = aHostPort;
    queue = aQueue;
    serverRef = aServer;      
    // connect to the server
    try{
    hostSocket = new Socket(hostName, hostPort);
    catch(IOException e){
    //System.out.println("ERROR: Connection Host Failed");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Connection to nPort Failed", JOptionPane.ERROR_MESSAGE);     
    System.exit(0);
    } // end constructor ClientListener
    ** multi client connection server
    ClientWorker(Socket aSocket,LinkedList aQueue, ClientListener aClientListener, boolean diagnostics){
    queue = aQueue;
    addToQueue(this);
    client = aSocket;
    clientRef = aClientListener;
    aDiagnostic = diagnostics;
    } // end constructor ClientWorker
    * run method is the main loop of the server program
    * in change of handle new client connection as well
    * as handle all messages and errors.
    public void run(){
    boolean alive = true;
    String aSubString = "";
    in = null;
    out = null;
    loginName = "";
    loggedIn = false;
    while (alive && client.isConnected()&& clientRef.hostSocket.isConnected()){
    try{
    in = new BufferedReader(new InputStreamReader(client.getInputStream()));
    out = new PrintWriter(new OutputStreamWriter(client.getOutputStream()));
    if(aDiagnostic){
    out.println("WELCOME to diagnostics");
    broadCastDia("Connect : diagnostics "+client.getInetAddress().toString());
    out.flush();
    else {       
    out.println("WELCOME to Troy's Server");
    broadCastDia("Connect : client "+client.getInetAddress().toString());
         out.flush();
    String line;
    while(((line = in.readLine())!= null)){
    StringTokenizer aStringToken = new StringTokenizer(line, " ");
    if(!aDiagnostic){
    broadCastDia(line);
    clientRef.sendMessage(line); // send mesage out to netExpress
    out.println(line);
    out.flush();
    else{
    if(line.equals("GETIPS"))
    getIPs();
    else{
    clientRef.sendMessage(line); // send mesage out to netExpress
    out.println(line);
    out.flush();
    } // end while
    catch(Exception e){
    // System.out.println("ERROR:Client Connection reset");
                             JOptionPane.showMessageDialog(null, (e.toString()),"ERROR:Client Connection reset", JOptionPane.ERROR_MESSAGE);     
    try{
    if(aDiagnostic){
    broadCastDia("Disconnect : diagnostics "+client.getInetAddress().toString());
    out.flush();
    else {       
    broadCastDia("Disconnect : client "+client.getInetAddress().toString());
         out.flush();
    // close the buffers and connection;
    in.close();
    out.close();
    client.close();
    // System.out.println("out");
    // remove from list
    removeThreadQueue(this);
    alive = false;
    catch(Exception e){
    // System.out.println("ERROR: Client Connection reset failure");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Client Connection reset failure", JOptionPane.ERROR_MESSAGE);     
    }// end while
    } // end method run
    * method run - Generates io stream for communicating with the server and
    * starts the client gui. Run also parses the input commands from the server.
    public void run(){
    boolean alive = true;
    try{
    // begin to life the gui
    // aGuiClient = new ClientGui(hostName.getHostName(), hostPort, loginName, this);
    // aGuiClient.show();
    in = new BufferedReader(new InputStreamReader(hostSocket.getInputStream()));
    out = new PrintWriter(new OutputStreamWriter(hostSocket.getOutputStream()));
    while (alive && hostSocket.isConnected()){
    String line;
    while(((line = in.readLine())!= null)){
    System.out.println(line);
    broadCast(line);
    } // end while
    } // end while
    catch(Exception e){
    //     System.out.println("ERRORa Connection to host reset");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Connection to nPort reset", JOptionPane.ERROR_MESSAGE);
    try{
    hostSocket.close();
         }catch(Exception a){
         JOptionPane.showMessageDialog(null, (a.toString()),"ERROR: Exception", JOptionPane.ERROR_MESSAGE);
    alive = false;
    System.exit(1);
    } // end method run

  • Jabber Options - Phone Accounts - Voicemail -- "Spinning Wheel"

    Been trying to resolve a nagging issue.   We currently have CUCM 8.6.2-20000-2, CUPS 8.6.4-10000-28 and just put up Unity Conn 9.1.  Jabber Win clients are 9.2(1).   Several people have not been able to integrate voicemail into the Jabber client.  
    We are totally MS AD integrated.   In CUPS, I had Applications -> Cisco Jabber -> Settiings  Credentials Used For Voicemail service set to CUPS so the user would not need to supply credentials.  To help me debug, I went and changed this setting to "Not Set" so that the Phone Accounts option appears in Jabber 4 Win client. 
    So far all the people who do not work access the Phone Accounts setting in the Jabber client see the "Spinning Wheel".   They can't see the fields to enter their AD creds and the voicemail server.   Reinstall of the client does not seem to help.  There seemed to be a bug that described this but I think it was fixed in 9.1(2).  You can't display the Bug description because it contains proprietary info. 
    I have attached a screen shot of my Jabber Client Phone Account -- when I enter the credentials, I log in fine.
    Anyone seen this or know how to fix? 
    TIA --- Perry

    Well, I had TAC look at this issue. Short story is that it was an issue with one of the *many* local cache files which hid the real source of the problem.  I actually had the Mailstore misconfgured in CUPS.  I used the Exchange server's CAS IP instead of Unity Connection.   We created new Mailstore definition that used the Unity Conn IP's, created a new Voicemail Profile and associated the user to that profile.   She worked....
    I deleted my all my Jabber for Windows local cache files and I then received the "spining wheel" issue.  I moved my ID to the new Voicemail Profile with correct Mailstore and I could connect fine.   TAC spent an hour pouring through files on my PC and could not find the reason why my ID was working.   TAC indicates that in 9.x, a lot of this configuration moves to CUCM and hopefully cuts down on these issues!  PRT files from the Jabber client really did not assist them in locating the problem.
    Hope this helps....

  • MSI Forum Lock Ups

    Hey guys wondering where i have been the last couple of days??...no, you guessed wrong i was not with my girlfriend (well at least no during daytime :D )
    I was trying to LOGIN IN THE F*****G FORUM :O  ?(
    Markoul
    p.s. At least it seems now we are going to have Avatars and also we have got the old forum back  :P

    Hi,
    First of all thanks to all for the help, and CJLittle...LMAO !  My car is a Scooby and a nice blue paint job !  Believe it or not they assured me all this would work.. I bought it in one package and even questioned it.  Also to be fair up until then they had always been very good... shows they have no zero about 3200XP 200 fsbetc...  When I went back with the power supply and told them they changed it out and let me off on the extra money it should have been.
    The crashes are as follows :-
    [list=1]
    Locks up after random amounts of time in games, sometimes dont even get to load it up at all, other times I can play 2 hours.  When the games lock up usually there is a high pitch squeal and can only get out of it by reset or power off.
    I cannot install Zone Alarm Pro or Agnitum Outpost are 2 anyway (there are others) these just come up with the installer screen and hangs there, I have to go to Task Manager to close them down, unlike the lock up in games.
    The cooler is the Coolermaster Jet... and the temperature is more than acceptable (right now is 44 C) so I cannot see that at all being a factor.
    leds are on on the d bracket when it locks, I did not know of this function and will check it out. Thanks for that tip.[/list=1]
    Question from me: would the 2700 RAM cause these lockups ?  I would have thought it would just not work at all ?  If this is possible then I will go and change out the RAM as tuning it down to 166 (if it is possible) does not appeal to me !  But yes it may show what the problem is.
    Thanks again, will see what happens...

  • Can not refresh view data in STRUST

    I am using the JSP (STRUTS) for developing my App.
    I get a list of contact. In bellow it, I make a link for each contacts.
    When i view details of one contact. On click link below.
    My pages:
    listcontact.jsp
    contactdetails.jsp
    When i request a details of contact from list contact -> View successfull.
    But when i refresh the contactdetails.jsp page. I got a message error:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.7 logs.
    I have to use:
    response.setHeader("Cache-Control","no-store");
    response.setHeader("Pragma","no-cache");
    But can't refresh any way this page.
    Plase show me the way to solve it.
    Thanks
    Vu Nguyen

    hi,
    Here are codes
    listdata = new CompanyListData();
    companyList = (ArrayList) session.getAttribute("datalist_company");
    if (companyList == null)
    companyList = (ArrayList) listdata.getCompanyList(datasource);
    session.setAttribute("total", companyList.size()+ " companies");
    session.setAttribute("datalist_company", companyList);
    return (mapping.findForward("success"));
    And for details:
    if ((addressItem==null && companyName!=null)||(addressItem==null&& companyId!="0"))
    addressData = new AddressDetailData();
    addressItem = addressData.getAddressItem(datasource, companyId);
    session.setAttribute("addressDetail", addressItem);
    I got companyID by:
    String companyId = request.getParameter("companyId");
    return (mapping.findForward("success"));
    Please gest the problems that.
    Thanks,

  • New Phone

    My husband used my iCloud account before I had an iPhone. Now that I have one, I am still finding information from when my husband used the account. I try to backup my iCloud account and it says I do not have enough space, but I know I still 3.9GB left. I log on to the iCloud website and I can not find any record of my phone or my husband's phone on the iCloud website. I want to clear everything he had on the phone prior to me using it starting in December. Is there a way to do that?

    Done properly, you won't lose anything.  You would not be able to migrate your existing iCloud email account to the new account, but you could still use it for email as a secondary account on your phone if you want to.
    You would need a new Apple ID to create the new account, which requires a verifiable email account to set up.  You can easily get a free Gmail address for this purpose.  You can create a new Apple ID by going here.
    To migrate your data to a new account, you start by saving any photo stream photos that you want to keep to your camera roll (unless already there) by opening your my photo stream album, tapping Select, tapping the photos, tap the share icon (box with upward facing arrow), then tapping Save to Camera Roll.  This is necessary because photo stream photos cannot be moved to another account and will be deleted from your phone when you delete the existing account.
    If you are syncing notes with iCloud that you want to keep, you'll need to open each of your notes and email them to yourself so you can later copy and paste the text into new notes created in your new account.  Notes is the other data set that cannot be migrated to a new account, and therefore must be recreated.
    Then go to Settings>iCloud, tap Delete Account, provide the password to turn off Find My iPhone and choose Keep on My iDevice when prompted.  Then sign back in with a different Apple ID to create your new account and choose Merge to upload your data.  When you turn on Mail you will be asked to choose a new iCloud email account if you want to use iCloud for email.  If you want to continue to use the email account from your current iCloud account, you can add it to your phone by going to Settings>Mail,Contacts,Calendars>Add Account>iCloud, signing in with your existing iCloud account ID and turning Mail on.
    Ringtones and Music are not effected by this change.  You can continue to use your current ID for your iTunes purchases; it does not need to be the same as your iCloud ID.  Of course, if you want to rid yourself of your husband's purchased list, you could change your iTunes ID as well.  I wouldn't recommend this, however, as then you would be managing two IDs for your purchased media.  This is because all existing purchases will remain tied to your existing iTunes ID and future purchases will be tied to your new ID.

  • Eclipse Community Forums

    Hi,
    I have a problem using Xtext generated ecore files in both Eclipse and standalone Java. In a nutshell, Xtext generates relative ecore references which work fine in Eclipse for platform:/resource URIs which make it seem like all projects are siblings of each other, but break when loading resources via absolute file:/ URIs when projects are not physically situated in the same directory.
    For example, I have a few Xtext languages that import each other and refer to each other's elements. Xtext generates ecore files for these languages, and they wind up having relative references to each other. I have a com.mecha1.atom.model.query Xtext project whose language generates an AtomQuery.ecore with references to an imported AtomType.ecore that look like this:
    Quote:
    eType="ecore:EClass ../../../../../../../com.mecha1.atom.model.type/src/com/mecha1/atom/model/type/AtomType.ecore#//EntityDecl"
    This works ok in Eclipse because the actual absolute URIs are platform:/resource based and all of the workspace projects are directly referenced via platform:/resource/<project>:
    Quote:
    platform:/resource/com.mecha1.atom.model.query/src-gen/com/mecha1/atom/model/query/AtomQuery.ecore
    platform:/resource/com.mecha1.atom.model.type/src/com/mecha1/atom/model/type/AtomType.ecore
    However on the filesystem these projects exist in different subdirectories:
    Quote:
    file:/Users/esp/Code/mecha1/Atom/atom/data/com.mecha1.atom.model.query/bin/com/mecha1/atom/model/query/AtomQuery.ecore
    file:/Users/esp/Code/mecha1/Atom/atom/core/com.mecha1.atom.model.type/bin/com/mecha1/atom/model/type/AtomType.ecore
    So when the relative path is used to navigate from one ecore model to the other they do not resolve correctly. The relative URIs will also break if resources are loaded from archive:/ URIs e.g. when loaded from classpath bundles via org.eclipse.xtext.mwe.Reader.
    Is there a strategy deal with this? For instance, is there a way to force Xtext to generate absolute URIs for cross references? Then at least I could use the EMF URI map to remap things depending on what context the models are being loaded in.
    Thanks,
    Edwin

    Edwin,
    Comments below.
    On 12/10/2012 9:09 AM, Edwin Park wrote:
    > Hi Ed,
    >
    > Thanks, this helped to put me on the right track.
    >
    > I also moved my ecore/genmodel files into a non-source 'model'
    > directory in my plugin according to your suggestion. This avoids the
    > files being duplicated in the bin dir as you said, but when I take
    > them out of the classpath like this, I can no longer reference them in
    > the Xtext editor.
    Yes, because it doesn't index them until they commit this patch I provided:
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=390411
    >
    > For example, I modified the default mydsl sample to include a
    > reference to an EClass in the greeting:
    >
    >
    > grammar org.xtext.example.mydsl.MyDsl with
    > org.eclipse.xtext.common.Terminals
    >
    > generate myDsl "http://www.xtext.org/example/mydsl/MyDsl"
    >
    > import "http://www.eclipse.org/emf/2002/Ecore" as ecore
    >
    > Model:
    > greetings+=Greeting*;
    >
    > Greeting:
    > 'Hello' eClass=[ecore::EClass|QualifiedName] '!';
    >
    > QualifiedName:
    > ID ('.' ID)*;
    >
    >
    > And I have a plugin com.mecha1.atom.mysql that looks like this:
    >
    > com.mecha1.atom.mysql/model/mysqlConfig.ecore
    > com.mecha1.atom.mysql/model/MysqlConfig.genmodel
    >
    > com.mecha1.atom.mysql/plugin.xml:
    >
    > <?xml version="1.0" encoding="UTF-8"?>
    > <?eclipse version="3.0"?>
    >
    > <!--
    > -->
    >
    > <plugin>
    >
    > <extension point="org.eclipse.emf.ecore.generated_package">
    > <package
    > uri="http://www.mecha1.com/atom/mysql/MysqlConfig"
    > class="com.mecha1.atom.mysql.mysqlConfig.MysqlConfigPackage"
    > genModel="model/MysqlConfig.genmodel"/>
    > </extension>
    >
    > </plugin>
    >
    >
    > com.mecha1.atom.mysql/build.properties:
    >
    > #
    >
    > bin.includes = .,\
    > META-INF/,\
    > plugin.xml,\
    > plugin.properties,\
    > model/
    > jars.compile.order = .
    > source.. = src/,\
    > src-gen/,\
    > xtend-gen/
    > output.. = bin/
    >
    >
    > When I launch a hosted Eclipse and create a .mydsl file in a plug-in
    > project with the com.mecha1.atom.mydsl plugin specified as a
    > dependency, the content assist for the eClass attribute does not show
    > anything. However if the ecore files are in the classpath of the
    > dependency plugin, the content assist will show them.
    Yes, that's the bug I referred to.
    >
    > Another thing I noticed is that if I include the org.eclipse.emf.ecore
    > plugin, the Xtext content assist will correctly show the contents of
    > the Ecore.ecore, which is also in a model directory in the plugin.
    But it's an actual deployed bundle so it's actually on the classpath but
    the PDE doesn't properly put the model folder on the classpath, only the
    bin folder.
    > Is there something else I need to do to get Xtext to recognize the
    > ecore file for cross reference scoping/content assist if the ecore is
    > not in the classpath?
    >
    > Thanks,
    > Edwin
    >
    >

  • Can our hp laserjet enterprise 500 color printer m551use 67lb card stock?

    The printer specifications list card stock but no weights. 
    This question was solved.
    View Solution.

    Hello,
    the required media weight is not supported by the printer.
    As you may find listed within the Media Weight specification below, the printer support up to 58 lb media.
    Media weight:
    Tray 1: 16 to 58 lb (plain); 28 to 58 lb (glossy);
    Tray 2: 16 to 43 lb (plain paper); 28 to 58 lb (glossy paper)
     You may find the product specification below:
    http://h10010.www1.hp.com/wwpc/us/en/sm/WF06b/18972-18972-3328060-15077-236268-4184772-4184773-41847...
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Open and cancelled Quote Report

    Hi,
    Can anyone give me the information  for getting open and cancelled Quote Report?

    I hope you are using reason for rejection for cancelling quotations. If that is the case, you can use transaction VA25 to view the list of quotations. Here you can filter on two columns status and reason for rejection to view the report as per your requirement.
    Regards,
    GSL.

  • Training and Event Management - report on list of cancelled courses

    Hi All,
    Is there any standard report available to get the list of cancelled courses (be it business event grp , type or business event) Would appreciate your inputs on this.
    Kind regards
    Sathya

    S_AHR_61016216 - Cancellations per Attendee , i think there is no standard report for cencelation of business events, type and group.
    for cancellations per attendee reports is available in the system.
    good luck
    Devi

  • Help my safari doesnt open and gives me a crash report

    help my safari doesn't open and gives me a crash report ever since i downloaded a file from the internet. I have a macbook air (early 2014) with running os x yosemite version 10.10.1

    There is no need to download anything to solve this problem.
    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • Cancelled Dunning Report

    Hi Friends,
    Is there any standard tcode to display all Cancelled dunnings.
    Something like to see the list of all cancelled dunnings between 01.08.2014 till 15.08.2014 and not w.r.t to Dunning Run.
    OR
    Someone needs to write an ABAP program by hitting tables FKKMAKO, FKKMAZE and so on..
    Thanks,
    Lakshmi.

    Hi Lakhsmi
    You can see all reversed Dunning in T.code FPM3 (Dunning History). you need to select Display Reversed Dunning Not.
    Regards
    Rehan

  • Open sale order aging report

    Need a report on open order aging.  The open order means not delivered or partially delivered. Further with days range since its open or not fully delievered i.e. > 15 days or 15-30 days and so on.
    The standard transactions Va05 and VL10c can provide the list but dont provide any aging info.
    Kindly help in this.
    thanks
    anu

    Dear Anu
    1. First in VA05 you can use Variants and get the report as desired by you,create one variant and use Filter along with greater then, less then (all are in selection option icon)
    This way you can create three variants.
    But limitation is dates has to be manually changed in variants each time.
    2. Try this Tcodes
    S_ALR_87014387 Display Document Flow
    S_ALR_87014392 Display Document Flow
    This reports will give you document flow run report with ticking checkbox for sales order,delivery and goods isse then after getting the list expand all (Shift+F12)
    you will get the quantities for sales order, and what is delivered and what is issued.
    3. As such if you want exactly the report you can take help of ABAP to create the ALV
    4. Report or create Queries in SQVI , or else create MCSI report
    Regards
    Jitesh

  • Quote report

    Hi,
    Is there a nstandard report in SAP for quotes that tells us how many quotes that were created were completed and how many were left open. In other words a WIN/LOSS scenerio meaning some might have been converted to Sales orders while others left open because the customer rejected them.

    Hi
    You can use VA25/VA26. Here you can define the selection criteria to find list of qotations. Using SHD0 (transaction and screen variants) you can add more fields on main screen so that you can search on finer basis. But you will need to take care of performance of the report
    Reward if helpful
    Kind Regards
    Sandeep

  • Report for open and shipped qty

    hi,
    any standard report to show open and shipped qty by SO no.?
    pls advice. thanks

    Hi jojo
    For list of open orders t.code is VA05
    Incomplete delivery - V_UC 
    Reward if useful
    Regards
    Srinath
    Edited by: sri nath on Apr 16, 2008 10:31 PM

Maybe you are looking for

  • Lose quality when export to internet

    I created a slideshow in iPhoto vs iMovie to maintain the photo quality (or so I thought). I exported it large and uploaded it to YouTube. However I lost too much quality to be useful. I exported it to .mov to Large size then opened it in iMovie. How

  • I cannot re-open Firefox, or open another window, without rebooting

    I get a message indicating that Firefox is already operating and to either close the program or reboot. I cannot access the supposedly open program, nor can I open another window. I am using Windows 7. The problem repeats itself even after rebooting.

  • T3i won't AF in low light NIGHTCLUBS anymore (using 550 ex)

    I do nightclub photography and I've had my t3i for about 2 years now and I use the 550 ex.  Recently the red light doesn't blink when I try to get a focus in low light using the kit lens. I know the red light does work because I used it with a trigge

  • Errors when opening any PDF file

    Can't find a bytecode file to load. InitializeFormsTrackerJS is not defined 1:App:Init ReferenceError: InitializeFormsTrackerJS is not defined 1:App:Init From the Javascript console I get the above whenever I open any PDF file from Acrobat XI Pro. I'

  • My itouch show me apple logo and freeze

    my itouch show me apple logo and freeze Nobody can help me?