RDBMS PROBLEM DIAGNOSTIC

제품 : ORACLE SERVER
작성날짜 : 1995-02-06
Subject: Recommended Diagnostic Practices
The diagnostic procedures outlined here are intended as guidelines
to dealing with various categories of errors. This is by no means
an exhaustive list as the nature of the specific error invariably dictates
the type and amount of diagnostic tracing that is required.
Based on the information gathered via these guidelines it may be necessary
to successively obtain further traces, as required by Oracle Development.
This may be an iterative process.
1. DATA CORRUPTIONS
1.1 Description of Category
This category includes all block format corruptions, invalid index entries,
and corruptions of meta-data (eg.data dictionary).
1.2 Example:
ORA-600 [3339] on System datafile
1.3 Typical Diagnostic Actions:
(a) Get trace file(s), if the corruption reported as an internal error.
(b) For table corruptions, attempt to use index (if available) to extract
data from uncorrupted blocks.
(c) Obtain redo dumps corresponding to the time of corruption.
(d) If there is reason to suspect vendor OS problem, complete H/W
diagnostics need to be carried out.
(e) Where appropriate, determine if generic or port-specific issue.
2. LOGICAL CORRUPTIONS
2.1 Description of Category
This category refers to cases where the data stored or retrieved by
a query is incorrect although it isn't necessary that an error is returned
externally.
It also includes data dictionary inconsistencies without any detectable block corruption.
2.2 Example:
Query returns different results with CBO vs. Rule-based
2.3 Typical Diagnostic Actions:
(a) Obtain a reproducible test case or dial-in information.
(b) Record any visible error messages, get trace files.
(c) Where appropriate, determine if generic or port-specific issue.
3. SYSTEM HANGS
3.1 Description of Category
This category includes the cases where:
(i) the database hangs on open after media or instance recovery,
(ii) the system hangs with users unable to logon or execute operations.
3.2 Example:
Database spinning in transaction recovery, on attempting to open.
3.3 Typical Diagnostic Actions:
(a) Stack and process state dumps of all Oracle processes, including hung
processes using the ORADBX utility.
(b) Obtain complete ALERT.log to establish history of events leading to hang.
(c) In the case of a hang on database open:
(i) Set events to determine which stage of recovery is stuck.
(ii) Dumps of the controlfile, datafile headers, logfile headers, buffers, enqueues and latches.
(iii) Situation-specific dumps of archive/online logfiles.
(d) In the case of a system hang, take multiple systemstate dumps at
intervals.
(e) Monitor CPU and I/O activity during the hang using o/s utilities.
(f) Obtain a reproducible test case or dial-in information for development.
4. PERFORMANCE PROBLEMS
4.1 Description of Category
This category comprises (i) General cases of deteriorations in response time
or batch completion times (ii) performance degradtion on increase in concurrent activity.
4.2 Example
System hangs if more than 96 concurrent users.
4.3 Typical Diagnostic Actions:
(a) Document performance degradation in terms of specific indicators (response
time, batch completion time, number of concurrent logins supported,
efficiency of shared pool management).
(b) Provide a reproducible test case where possible, or document in detail
the environment and factors leading to poor performance (for example,
in the cases where reproducibility depends on concurrency in a production
environment, document circumstances surrounding degradation like #logins,
average memory usage, typical functionality invoked, IO activity,
dynamic statistics on Oracle activity.)
(c) Where appropriate, determine if generic or port-specific issue.
(d) If not reproducible in-house, but reproducible with reasonable
frequency on customer site provide dial-in information for development.
5. SYSTEM CRASHES
5.1 Description of Category
This includes all cases where the database crashes, possibly due to
one of the background processes dying.
5.2 Example:
DBWR crashes periodically during heavy activity
5.3 Typical Diagnostic Actions:
(a) Request trace files, ALERT.log and information on circumstances
surrounding the crash.
(b) Construct reproducible test case where possible.
(c) Where relevant, determine if generic or port-specific issue.
6. CRITICAL FUNCTIONALITY NOT AVAILABLE
6.1 Description of Category
This refers to all situations where functionality or vital features relied
on by a production application becomes unavailable, typically because
of a bug in the feature. This includes cases where Oracle utilities core dump,
applications error out due to bugs and recovery is stuck.
6.2 Example:
ORA-600[3020] during media recovery application of archive log
6.3 Typical Diagnostic Actions:
(a) Where an error is reported, get any trace files produced and relevant
redo log dumps if necessary. Document completely the circumstances
leading up to the error.
(b) Provide a reproducible test case or dial-in information to development.
(d) Where relevant, determine if generic or port-specific issue.
7. MEMORY CORRUPTIONS
7.1 Description of Category
This includes internal errors signalling memory leaks, corruptions of memory
data strutures and cache corruptions.
7.2 Example:
ORA-600[17271][INSTANTION SPACE LEAK] during pl/sql execution
7.3 Typical Diagnostic Actions:
(a) Request trace files when error causes a trace file to be produced.
(b) Provide reproducible test case where possible; else document circumstances
of error including (i) Details of OCI or Oracle tool, utility or pre-compiler
used in application (ii) OS tools or third-party tools used in conjunction
with the application (iii) Triggers fired by application
(iv) Packages or procedures executed.

It is most likely the panel, since your machine has integrated graphics. If you haven't done this kind of repair, replacing the panel out of the lid can be difficult. It can be done if you are careful. Here is the manual:
http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles_pdf/e520_e525_hmm_en_0a60536_05.pdf
If you want to replace the entire lid assembly, it might be easier. I actually have one from an E520 in stock. (It looks like it has a built-in webcam.) Since I don't work on many of this model, I can give you a good price. Send me a pm if interested.

Similar Messages

  • Axion RDBMS problem

    Hi all,
    I m working with the Axion RDBMS ,
    I have a problem with the insertion of new records in the tables of my database, the selection is working properly but the insertion seems to be as it is in the transient mode not in the persistent one
    Here is the code
    class DatabaseConnection {
    Statement stmt;
    Connection con;
    DatabaseConnection(){
    try {
    Class.forName("org.axiondb.jdbc.AxionDriver");
    catch(ClassNotFoundException e) { e.printStackTrace(); }
    try {
    con = DriverManager.getConnection("jdbc:axiondb:MyDB:MyDB-DIR");
    stmt = con.createStatement();
    } catch (SQLException e) {     }
    public void executeSql(String sql) {
    stmt.execute(sql);
    } catch (SQLException e) {           System.out.println(e.getMessage());       }
    when I create a new instance of my DatabaseConnection class and I want to execute and insert it works but when I close and restart my application all the modification I did are not present
    DatabaseConnection db = new DatabaseConnection();
    db.executeSql(�INSERT INTO table (id, name) VALUES(1 ,�aName�)�);
    if I make a select before I close my application I can see the record I inserted but after restarting the application it disappear
    can any one help me ?
    mail : [email protected]

    FWIW, I've decided to find out what exactly is an Axion RDBMS and found out that this freebie is still in an infancy stage (haven't really figured out whether it's a relational or just a plain database system) and the strange thing about this DB is that in order to make the changes permanent, you must:
    1) commit the changes (even tho autocommit is set to true)
    2) shutdown the DB and wait a bit before you close the connection
    ;o)
    V.V.

  • Screen problem diagnostic

    Can someone help me diagnostic the problem et tell if it can be a DIY repair project?
    youtube: http://youtu.be/0v9jIvBHp4Q
    Thanks
    Fred

    It is most likely the panel, since your machine has integrated graphics. If you haven't done this kind of repair, replacing the panel out of the lid can be difficult. It can be done if you are careful. Here is the manual:
    http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles_pdf/e520_e525_hmm_en_0a60536_05.pdf
    If you want to replace the entire lid assembly, it might be easier. I actually have one from an E520 in stock. (It looks like it has a built-in webcam.) Since I don't work on many of this model, I can give you a good price. Send me a pm if interested.

  • Problemas con sbo

    buenas desde un cliente me sale una ventana con el siguiente mensaje:
    Application has a problem
    Diagnostic file c:\program files\sap\sap business one\log\sap business one_20081124103642.dmp was created
    please contact support and attach the diagnostic file
    esto sale cuando estoy en devolucion de mercancias
    graciass

    hola, intenta realizar la misma operacion :
    en el mismo PC con otro usuario SAP.
    en el mismo PC con otro usuario Windows y el mismo usuario SAP
    en otro PC con el mismo usuario SAP.
    en otro PC con otro usuario SAP.
    en otro PC con el mismo usuario SAP y distinto usuario Windows.
    en otro PC con el mismo usuario SAP y mismo usuario Windows.
    puede ser que se deba a alguna falla del PC o el usuario Win configurado en ese PC. (performance de HardWare o reinstalar Client de SAP)
    intenta con esas alternativas, para que tengas una alternativa de resolver este error.
    como ultima instancia, tu partner deberia ver el error y reportar a Soporte SAP si es necesario.
    suerte.

  • OIDCTL

    Hi,
    I have installed ORACLE E.E. 8.1.7.0.0's OID 2.1.1.0.0.
    When I try to initiate the following command:
    oidctl connect=EAIDEMO server=oidldapd instance=1 start
    I get the following error message:
    [gsdsiConnect] ORA-1017, ORA-01017: invalid username/password; logon denied
    I really don't see where I can set up user names or passwords.
    Any hints would be appritiated.
    Thanks

    This is the first time Ive seen this on the 8.1.7 release.
    Are you sure you are using 8.1.7 or 8.1.7.1? Also, what OS
    are you on? Is it Possible that you are using sqlplus or sqlnet
    binaries from 9i on your 8.1.7 instance?
    I found the following bug #1852419 on the oracle bug database.
    Its seems to describe your problem exactly. The only problem is
    that this bug only exists on 9.0 of RDBMS:
    PROBLEM:
    @ unable to change password for a username of type "ab ab"
    @ get ora-1017: invalid username/password; logon denied
    =========================
    DIAGNOSTIC ANALYSIS:
    Here is a very simple testcase to demonstrate the problem:
    SQL> create user "ab ab" identified by d;
    User created.
    @ SQL> password "ab ab";
    @ Changing password for ab ab
    @ New password:
    @ Retype new password:
    ERROR:
    @ ORA-1017: invalid username/password; logon denied
    This problem is fixed in 9.0.2. SQL*Plus no longer strips away the quotation
    @ marks. eg. password "ab ab" is now passed to the database
    server as '"ab ab"' ie. includes the double quotations rather
    than 'ab ab' without the double quotations. Double quotations
    is required for case sensitivity in the database.

  • ESYU: FAQ - Drop Ship Purchase Orders 2

    Purpose
    RECEIVING: Drop Ship PO's - Release 10.7, 11.0, 11.5.X, r12
    Information in this document applies to any platform.
    Q/A를 통해 Drop Ship Purchase Orders에 대한 이해도를 높인다.
    Solution
    Q8. Configurable Items은 Drop Shipped 가능한가?
    A8: 현재는 Standard Items 만을 Drop Shipped 할 수 있다.
    Configurable Items를 위한 functionality는 향후 release에 포함될 것이다.
    Q9. Operating Units를 교차하여 Drop Ship을 할 수 있는가?
    A9: Release 11i는 현재 이 functionality는 지원하지 않는다.
    Q10. Drop Shipment에서 over/under shipment는 어떻게 처리하는가?
    A10: 만일 drop-ship line의 일부만 ship 되고 나머지 수량에 대해 fulfill을 원하지 않는다면 line을 cancel 한다.
    Over shipments 또한 manual 하게 처리해야 한다.
    만일 supplier가 ordered quantity 보다 많은 수량을 ship 하였다면, customer에게 추가된 수량만큼
    bill을 할 수 있거나 customer에게 추가 수량을 return 해 달라고 요청 할 수 있다.
    Drop-ship Sales Orders와 이에 연계된 purchase requisition/orders 간의 차이를 보고 싶으면
    Drop Ship Order Discrepancy report를 이용한다.
    Q11. Drop Shipment와 Blanket PO's를 사용할 수 있는가?
    A11: Blanket PO는 Drop Shipment와 같이 사용할 수 없다. 왜냐하면 PO는 OM이 PO에게 Drop Ship order가
    생성되었음을 공지시 생성되어야 하기 때문이다.
    Rececipt이 될때(partial or complete) 이 PO는 Drop Ship order와 link 된다.
    Drop Ship lines은 pick release, ship confirm 혹은 INV interface order cycles을 이용하지 않는다.
    Q12. Valid Blanket PO를 생성시 blanket agreement에 있는 item을 위해 drop shipment orders를 base로 하는
    release를 생성하는 것이 가능한가?
    A12: Yes, drop ship orders로부터 자동 혹은 autocreate window를 통하여 release를 생성하는 것은 가능하다.
    만일 drop ship requisition이 correct blanket information(source)을 가지고 있다면
    1. 요구되는 supplier site에 대한 ASL entry를 setup
    2. Hierachy에 따라 어떤 assigment가 좀 더 알맞은지 결정하고, 요구되는 supplier/site를 가지고 요구되는
    level에 따라 sourcing rule을 정의한다.
    또한 위 supplier/site에 대한 ASL entry가 존재하는지 확인한다.
    Profile option 'PO:Allow Automatic Sourcing' = Yes인 경우 automatic sourcing이 실행되며, creation date와
    document type에 따하 source document가 자동으로 결정될 것이다.
    Q13. Receive 후 Drop Shipment를 cancel 할 수 있는가?
    A13: Oracle Purchasing에 한 번 receipt 한 후에는 Drop Shipment는 cancel 할 수 없다.
    만일 Drop Ship Sales Order line을 cancel 하길 원한다면 cancel을 원하는 line에 대해 receipts은 없는지와
    연계된 requisiton이나 purchase order가 cancel 되어 있는지 확인을 해야 한다.
    Partial Deop Ship receipt에 대한 cancellation은 가능하나 아직 receive 되지 않은 부분에 대해서만 cancel
    할 수 있다.
    만일 모든 수량을 shipped 하지 않은 drop shipment line을 cancel 한다면 order processing은 line을 split 한다.
    첫번째 line은 shipped 한 수량을 포함하고 두 번째 line은 non-shipped 수량을 backorder로 가지며,
    이 두 번째 line(backorder)을 cancel 할 수 있다.
    PO line 수량은 새로운 수량을 반영하기 위해 변경되어져야 한다.
    Q14. Drop Shipment를 위한 debugging tools은 무엇인가?
    A14: 1. Note 133464.1 - Sales Order의 troubleshooting problems을 위해 사용할 있는 diagnostic script를 포함.
    2. Receipt transaction이나 Sales Order issue transaction debugging을 위해 아래 profile options을 set:
    RCV: Processing Mode to Immediate or Batch
    RCV: Debug Mode to Yes
    OM: Debug Level to 5
    INV: Debug Trace to Yes
    INV: Debug level to 10
    TP: INV Transaction processing mode to Background
    - Sys Admin: Concurrent> Program> Define> query up the Receiving Transaction Processor and check the Enable Trace box
    - Deliver Transaction을 위한 receipt을 저장 (Deliver Tranasction을 위한 destination type은 inventory 이어야 함)
    - Receiving Transaction Processor log file, Inventory Transaction Worker log file, trace등을 review
    Q15. Drop Shipment로 부터 생성된 PO의 status와 Import source는 무엇인가?
    A15: PO status는 언제나 approved.
    Import source: Order Entry
    Q16. 관련된 Sales Order Line이 cancelled/closed 된 PO shipment를 receive 할 수 있는가?
    A16: 관련된 Sales Order Line이 cancel 되었거나 closed 되었다면 PO shipment는 receive 할 수 없다.
    이 PO shipment는 cancel 해야 하며, 필요하다면 새로운 Sales Order Line이 생성되어야 한다.
    Reference
    Note 225434.1

    Hi Suda,
    Yes, the purchase orders are created directly from the sales order, so there should be some sort of link between the two I would think.  However, I may be wrong in this line of thinking.
    The UDF would be on the header as our customer puts an entire sales order on only one purchase order.
    Thank you for your quick response.
    Amanda

  • DMP when trying to send a mail

    Hi Experts
    My client is on 8.81 PL04 and for only one of the users, when they try send an internal mail, it gives the following error:
    Documents settings V Lettie\Local settings\applications data \ sap \ sa application has a problem
    Diagnostic file c:\documents and settings\Lettie\local settings business one\sap business one 20110623160654.dmp was created. Please contact support and attached diagnostic file.
    Your assistance would be greatly appreciated.

    Hi,
    Also to add to my comments, the dump file generated could be related to many factors like, the memory, the number of applications running on the client, add-ons etc. If this is one of I would suggest you to close all applications, clear the temp files , log back in and try. SAP will only investigate if the issue is occuring everytime and should be reproducible and there is a long process before you can log a message with SAP on dump file.
    regards
    Johnson

  • PLD Print out error

    While i go for the taking thre print preview for the outgoing tax it give me the following error
    <b>Application has a problem
    Diagnostic fileC:\Program file\ SAP\SAP Business one\log\SAP Business one_2000182215.dmp was created.
    Plz contact the support</b>
    Plz help me soon
    -Manmath

    For this problem, please go to the given path where the dmp created. Copy the same to other place to send it to SAP and remove from there.
    Shut down the SAP and restart the PC once.
    Then try to take print.
    I think this is not a proper solution but practically in most cases it is working.
    This may help u.

  • WiFi issue when resuming from sleep or start up

    Just got a new Lenoco U410 which has the Intel Centrino Wireless-N 2230 wifi card in it. Right out of the box it had a hard time joining the wireless network. After a few minutes of reboots and going to Intel's site on another PC and downloading newer drivers, I got it to connect. Speed wasn't as robust as I'd expect on new hardware - my 5 year old Dell was TX'ing at higher speeds. But it was working and not too bad either.
    Problem that I see happening is if the laptop sleeps or shutsdown and then powers up, the wifi doesn't have Internet connectivity - only has limited access. So it is authenticating (WPA2) and I can see my LAN, just no WWW access.
    IPCONFIG shows valid IPs for the PC, gateway, DNS, etc.
    My Dell sitting right next to it works fine - never hiccups.
    4-5 bars of signal strength
    Tried release/renew  - no affect
    Here's the intersting part: I run the Windows problem diagnostic wizard and it fixes it everytime. It returns the error found as, "the default gateway is not available", and resets the card as the fix. IPCONFIG returned the correct gateway, and my Dell has no problem either. And, I can add to the list of devices that use the same network with an iPhone, an iPad, a Galaxy 10.1 tablet, and a Moterola Atrix phone. Ya, I'm a tech junkie. So why can't it find the gateway, or is this a false positive - be my guess.
    The U410 once woken stays up on the WLAN once connected, never losing the connection. It's only when turned back on either from a shut down or a sleep. I googled around and the only "fix" people posted was to turn off the Windows power management of the card, which I did do. I also did update the Intel driver which looks to be built just last month. Hoping that would have been the fix, but no.
    Any thoughts anyone? Does Lenovo Support monitor and throw out suggestions (please keep it civil)? I don't want to return it, but might have to go back to Dell as I need another laptop as well. Holding off on the second one until (or if) I can get this issue fixed - not making the misses happy. 
    Thanks in advance!

    You mean I'm the only one seeing this problem? Guess I'll call today for a RMA.

  • Error Headstart in combination Designer 6, Developer 6 HELP

    We have upgraded to Desigener 6.0 and Developer 6.0 (patch 6).
    All the pll's compile when (qmslib50, qmsevh50), the generation of a small application in Designer 6 (was first in Designer 2.1.2) went well.
    When we run the forms we get the following error "FRM-40733 PL/SQL Build in DBMS_ERROR_TEXT failed. I'm searching for two days and haven't come up with a solution
    Please help !?

    You are probably using an Oracle 8.1.5 database an running against Oracle RDBMS problem report 966970. Oracle Support has tested
    it against an 8.1.6 database and there the problem is fixed. There is also a workaround available for 8.1.5, see the Headstart discussion
    forum on OTN and look at the e-mails of Cheryl Riley (thanks Cheryl). I suggest however that you move to 8.1.6.
    Regards,
    Ton

  • .dmp Error

    Hi
    While selecting G/L Account from choose from list in outgoing Paymnet and Journal entry, system shows .dmp error and application goes close and showing the error message " Application has a problem  Diagnostic file  C:\ User Administrator \Local settings \application Data\ SAP \ SAP Business One \SAP Business One _20101011.dmp was created."
    Please let me share the solutions
    Regards
    shamseer

    Hi Shamseer......
    If such kind of .dmp file is coming specially during entries then you should raise a support ticket to SAP and post this file them. They can only know about this error code..
    Regards,
    Rahul

  • Application Error for an Add-on

    Everyday the users logon to SAP and when they log in, the system starts up the add-on which has been develped in SDK. They then get the following error which will close down SAP and exit the user. If they log-in again the system starts up. This is an issue as all current users in the entire company get this error and it also happens sometime s throughout the day. Basically they all have to log into the system twice.
    The errors are as follows:
    1. Application has a problem
    Diagnostic file C:\Program Files \SAP\SAP Business One_20071015121637.dmp was created. Please contact Support and attach teh diagnostic file.
    2. System.Runtime.InteropServices.COMException (0x800706BE) The remote procedure call failed at SBObouiCOM.ApplicationClass.get_Statusbar()
    at SBO.SBO_AddonBase.SBO.Addon.Connect_SingleSignOn()
    at SBO.SBO_AddonBase.SBO.Addon.ConnecttoSBO()
    at SBO.SBO_AddonBase.SBO.Addon.Initialize()
    at SBO.SBO_AddonBase.SBO.Addon..ctor(strring startuppath, String AddonName)
    at SBO.SBO_Addon.EVOSS_Main..ctor(String Startuppath, StringAddonName, Boolean&pbo_RunApplication)
    at SBO.EVOSS_Addon.SubMain.Main()
    Would anyone know as to why this happens.
    Many Thanks
    Adrian
    Message was edited by:
    Adrian Toy

    Toy,
        whenever u want the addon u start its. Else u ininstall the addon so that at the starting of SAP u wont get the installation or error.
    Hope this helps u give me reward points,
    Regards,
    Anitha

  • Unable to view tomcat page..!

    Hi All,
    My OS & DB Details are like that :
    OS: Solaris
    DB : 10.2.0
    As we want to deploy BOP application in PRODUCTION we are trying to open the tomcat page but In test environment we are able to view tomcat page when URL is provided.
    But in production environment we are not able to see tomcat page it is displaying the login page.
    Can anyone help me out

    Vikas Kohli wrote:
    Hi All,
    My OS & DB Details are like that :
    OS: Solaris
    DB : 10.2.0
    As we want to deploy BOP application in PRODUCTION we are trying to open the tomcat page but In test environment we are able to view tomcat page when URL is provided.
    But in production environment we are not able to see tomcat page it is displaying the login page.
    Can anyone help me outso why is this an Oracle RDBMS problem?
    What is the Oracle error number & message that needs to be corrected?

  • Hotspot unavailable on iOS 7.1

    Hotspot is unavailable after upgrade iOS 7.1
    iPhone don't store Wind parameters
    Help

    Same problem here.
    I've spent hours and hours in forums on the phone with support engineers or via chat. I spoke to my carrier and everything was fine with my account. Resetting, rebooting, changing settings. Nothing helped. The problem clearly affects users where following 3 conditions concur:
    1. Iphone 4 or 4s
    2. iOS7.1
    3. Virtual Carrier
    Finally one of the support engineers, in spite of all the evidence that can be found all over web, concluded that it had to be a hardware problem and sent me to an apple store for diagnostic. Once there, the apple employee took out my SIM placed it into a new Iphone 4 with iOS7.1 and voilá, the hotspot option disappeared on a completely new Iphone.
    So, I'm attaching final diagnostic and conclusion from the "Genius Bar" employee. It is a shame that you need to waste so much time in order to get Apple to admit that something is wrong with their last update.
    Guys, just call up your support center feel free to use the below Repair No. Don't let support fool you around with excuses about faulty apps or hardware defects. iOS7.1 introduced an issue that prevents your hotspot from working if you have an iphone4/4s and use a virtual carrier.
    (Translated from Spanish)
    Genius Bar confirmation and service authorization
    Repair No: R119231345
    Description/problem diagnostic
    Notes on the service authorization. Problem: Customer reports to be unable to share Internet since 7.1 upgrade (uses virtual carrier). Steps to reproduce: Issue is identified as a common problem of users of iPhone 4/4s using virtual carriers since 7.1 upgrade.
    External aspect: Good

  • Eprint...won't print

    I am connected to eprint, and have reset my email address twice. I have not been able to print successfully yet. The web and the printer show the same address. The website shows I am connected and ready. The error message being sent back to my blackberry is: "undeliverable". the reason for the problem:
    Diagnostic code: smtp; 5.3.0 - Other mail system problem
    550-'5.7.1 Command rejected
    Does anyone have a solution??

    Hi DougsPlace,
    Thank you for your patience. The cloud server has been updated to resolve some of the eprint command rejected issue that you are encountering. Please try again and do let us know if you are still seeing the command rejected issue.
    Thank you.
    I am an HP employee
    **** Please mark the post that solves your problem as "Accepted Solution" ****

Maybe you are looking for