E-printer loging

e-printer loging

Hi 1111jerry123,
Can you please provide more information as to your issue? Thanks!
I was an HP employee.
Reminder: Please select the "Accept as Solution" button on the post that best answers your question. Also, you may select the "Kudos" button on any helpful post to give that person a quick thanks.

Similar Messages

  • Cannot change my printer preferences

    Dear Hp technicians:
           Hi I'm from Mexico and I just loged in to my hp e-print center and it took me here. My problem is I find it really difficult to log in from my country coz' hp connected doesn't work, it simply just don't let my Log in.      I found that visiting hp connected-uk is the only way to log  in. But then,  I'm loged in, but I cannot change my printer preference coz' the button  doesn't exist, the one that used to say "Change setting"  is now just simple text.  How can I go back to e-print center instead of HP connected..... Please this is driving me crazy!
    I need your help

    Hi there, if you've updated your ePrintCenter account to HP Connected you can't revert back. Check out this thread for more information on the change from ePC to HP Connected http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile-Printing-and-ePrintCenter/HP-Connected-Support...
    Can you reply with a screenshot showing exactly what it is you're trying to change? Is it a setting of a printer in the Device tab or is it something in the "Settings" dropdown menu at the top right of the screen below?
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

  • How to get PDF Printing working with APEX packed with 11g

    Hi ,
    Recently i installed 11g db on one of my systems (Windows XP) ,as it comes with APEX i thought to move my apex app(which were in 10g) to the same .........when i moved my apps , i got everything working but PDF PRINTING .
    I have configured Report Printing :
    Print server: Advanced
    Print server Protocol: HTTP
    Print server Host Address: localhost
    Print Server Port: 9704
    Print server script :/xmlpserver/convert
    Your help is appreciated.
    Thanks ,
    Ribhi

    Hi Jes,
    Thank you for your reply. BI Publisher is runing on the same server where Database 11g with APEX installed. I loged in to the database as SYS DBA and copied and paste Oracle script below to enable Network services. The script run successfully, still cant print. Pls Help me to solve this problem.
    Regards,
    Ribhi
    DECLARE
    ACL_PATH VARCHAR2(4000);
    ACL_ID RAW(16);
    BEGIN
    -- Look for the ACL currently assigned to '*' and give FLOWS_030100
    -- the "connect" privilege if FLOWS_030100 does not have the privilege yet.
    SELECT ACL INTO ACL_PATH FROM DBA_NETWORK_ACLS
    WHERE HOST = '*' AND LOWER_PORT IS NULL AND UPPER_PORT IS NULL;
    -- Before checking the privilege, make sure that the ACL is valid
    -- (for example, does not contain stale references to dropped users).
    -- If it does, the following exception will be raised:
    -- ORA-44416: Invalid ACL: Unresolved principal 'FLOWS_030100'
    -- ORA-06512: at "XDB.DBMS_XDBZ", line ...
    SELECT SYS_OP_R2O(extractValue(P.RES, '/Resource/XMLRef')) INTO ACL_ID
    FROM XDB.XDB$ACL A, PATH_VIEW P
    WHERE extractValue(P.RES, '/Resource/XMLRef') = REF(A) AND
    EQUALS_PATH(P.RES, ACL_PATH) = 1;
    DBMS_XDBZ.ValidateACL(ACL_ID);
    IF DBMS_NETWORK_ACL_ADMIN.CHECK_PRIVILEGE(ACL_PATH, 'FLOWS_030100',
    'connect') IS NULL THEN
    DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(ACL_PATH,
    'FLOWS_030100', TRUE, 'connect');
    END IF;
    EXCEPTION
    -- When no ACL has been assigned to '*'.
    WHEN NO_DATA_FOUND THEN
    DBMS_NETWORK_ACL_ADMIN.CREATE_ACL('power_users.xml',
    'ACL that lets power users to connect to everywhere',
    'FLOWS_030100', TRUE, 'connect');
    DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL('power_users.xml','*');
    END;
    COMMIT;
    Edited by: Ribhi on Nov 13, 2008 1:18 PM

  • Loging a user into mysql database example

    I'm looking for a clear example or tutorial on loging a user into a mtSQL database.  I don't want an automatic login like you get with the Flex Builder's db wizard.  What I have is a screen where the user enters a user name and password and then clicks a button to login.  I need to be able to handle the user not entering the correct user name or password, that is handling the mySQL rejecting the login.  I have done several serches both here and google and don't seem to find anything like I need.  Can anybody out there point me in the right direction?

    This is actually a faily simple thing to do...at least I think this is what you are trying to do based on what you said:
    Here is the code for the MXML to put together the login UI:
    <mx:Panel width="446" height="199" layout="absolute" title="Login" id="loginpanel">
            <mx:Label x="26" y="58" text="Username:"/>
            <mx:Label x="53" y="86" text="Password:"/>
            <mx:TextInput x="121" y="56" id="username"/>
            <mx:TextInput x="121" y="84" id="password" displayAsPassword="true"/>
            <mx:Button x="219" y="114" label="Log In" id="Submit" click="login_user.send()"/>
    </mx:Panel>
    you need an HTTPService call (which the Submit button above sends) to the PHP file that will check the user's credentials against what is in the DB:
    (mind you, I would encrypt the password on the client side too before sending it over to the PHP file)
    <mx:HTTPService id="login_user" result="checkLogin(event)" method="POST" url="login.php" useProxy="false">
            <mx:request xmlns="">
                <username>{username.text}</username>
                <password>{password.text}</password>
            </mx:request>
    </mx:HTTPService>
    now, the result of the HTTPService goes to a function called checkLogin(event) which is:
    import mx.rpc.events.ResultEvent;
    private function checkLogin(evt:ResultEvent):void
            if(evt.result.loginsuccess == "yes"){
                //user is GOOD, do something now
            if(evt.result.loginsuccess == "no"){
                mx.controls.Alert.show("Invalid username/password");
    and for the PHP file, it checks against the DB and generates an XML which is kicks back to Flex:
    <?php
    //connect to DB however you do it, I have a function db_connect() that I call
    $conn = db_connect();
    $username = mysql_real_escape_string($_POST['username']);
    $password = mysql_real_escape_string($_POST['password']);
    //if you have encryption, then make sure you do that here (md5 or whatever)
    //also, make sure you do validation of the input for SQL Injections and XSS attacks, but I'm not covering that here
    $query = "SELECT * FROM usertable WHERE username = '$username' AND password = '$password'";
    $result = mysql_fetch_array(mysql_query($query));
    $output = "<loginsuccess>";
    if(!$result) {
        $output .= "no";
        $output .= "</loginsuccess>";  
    } else {
        $output .= "yes";
        $output .= "</loginsuccess>";
    print ($output);
    ?>

  • Crash after print with adobe acrobat

    It is impossible to print out from Adobe Acrobat Pro X with my main-/administrator account. Everytime I print, Acrobat restarts.
    The special thing is, when i am loged with the guest account, Acrobat Pro X prints promptly.
    Any idea what this bug could be or any solution for this problem?
    kind regards
    Ralf

    your input seems quite good but unfortunately i still have this problem - this seems not be the solution for my problem - . By the way, I also have a problem with the direct mail from Acrobat to Outlook (Office 2011)...

  • Photosmart 5515 on mac saying printer offline on mac. please help!

    I have just bought a brand new Photomart 5515 and went through the whole install process.
    It appeared that the printer was connected to my wireless network (I have printed out the config test thingy).
    I have a MacBookPro running OSX 10.6.7. The printer seems to be on the network and I add the printer to my printer list. When I go to print the print queue tells me the printer is offline. I have looked thi up on various forums and have used hp's own troubleshooting page, this hasn't helped at all though. 
    I'm seriously considering taking the printer back as it seems like I have done all that hs been asked and this has been far from straight forward.
    It doesn't seem as though there is anything physical actually stored on my machine in termsof a printer icon or any drivers, I add the printer to my list though the installation process but this is the only way i can seem to locate the printer. Is this normal for hp printers? I have always had Epson Machines and am beginning to wish I had stuck with them!

    Hi I have spent hours actually more like  days on the very same issue and at least 10 hours on various tech support lines as I got bounced from one to the other neither HP nor Apple nor Zyxel nor Netgear (the two modems I have tried) tech support were able to solve it.
    However I found a solution but it may mean you need some xtra hardware.
    I have a Time Capsule that also has an Airport Extreme WiFi router ( you can get the Airport Express/Extreme seperately from Apple) however I have never used the router part since I thought there was little point in using this when it was already on the modem and my previous printer PC and Mac had worked fine up till this point on the Wifi supplied by the modem.
    Anyway I thought it may all work better on an Apple network, so I set the the Airport Extreme Wifi router up as a Bridge (easily done the SW install gives you only 2 options) You simply connect an Ethernet Cable from the Modem in my case the Zyxel or NetGer to the Wifi router on the Airport Express.
    You then launch the Airport Utility in the Utilities section of your applications.  It guides you through the set up. If you are set up as DHCP Auto then the only thing you will need to add is the DNS server, you can get this info from your ISP or else by loging into your modem and copying the setttings.
    Once done the airport and modem reboot and you will see you have a new network .  Your Modem now just acts as a bridge to feed the internet connection to your Airport Express/Extreme Wifi router.
    Then you just need to connect the devices to the new network.   Delete all the printer installation and start from scratch it finds the printer immedialty and no more problems.
    This also solves any problems you have with trying to print using airprint from Ipad or Itouch.Which I was never able to do up to this point. 
    hope this helps.

  • I can't go further "waiting for Printing Services" after turning on.

    I have tried to reboot but it comes to the same point, The logo and spining daisy are there for 5 min. then I see the Blue bar with prompts growing at times(it takes 10 - 15 min. when it reaches "waiting for Prionting Services" stays there forever, I guess this all started when I tried to instal new updates (with no success)How can I revert the installation? or how can I get to the loging screen?
    what shall I do?PLEASE HELP!!!!!

    I am working on a friend's Ibook, I am a PC IT, and know very little about Mac's so please bare with me in helping (1st grade Mac user).
    In my Mac fixing journey, I have used:
    1. Repair Disk = no repairs found to fix
    2. Repair Permissions = stalls and gives a prompt disconnected quit and restart, did that same prompt
    3. Booted in safe mode, gets to the same point "waiting for Printing Services" and then fades out and shuts itself down after a long period.
    4. I have tried to holding down opt, apple, p & r keys to reset "pram" = no go.
    5. Removed the power source and batter to reset computer.
    6. Booted computer connected into the printer and not connected to the computer. Same freeze place.
    After all this being done,and reading alot in here, I purchased disk warrior, it corrected a few errors, rebuilt and rebooted...only to come back to "waiting for Printing Services" and then freeze.
    Anyone have anything else they can help me with, that might get me passed this problem??
    Thanks in Advance for any advice!!
    Sav
    Ibook G4   Mac OS X (10.0.x)  

  • 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

  • Print Quote Report

    Hi All,
    I have a requirement to develop the custom print Quote Report. When i review the standard pring quote report ,I found a call like <?call-template:TermsTemplate?>.
    This statment itself is getting all the Terms and Conditions for that report. when i looked in the ASOPRTXSL.xsl, I see the below statement
    <xsl:template name="TermsTemplate">
    <xsl:call-template name="PrintContractTerms"/>
    </xsl:template>
    I am pretty new to XSL, dont know what's happening here. Please help me ASAP
    I have also posted this question in BI Publisher but did not get any respose . Please Help
    Thanks

    If you want to create a custom report using concurrent program then refer:
    http://apps2fusion.com/apps/apps/63-xml-publisher-concurrent-program-xmlp
    If you want to create a custom report using OAF page then refer:
    http://apps2fusion.com/at/51-ps/260-integrating-xml-publisher-and-oa-framework
    -Anand

  • HELP to Open and Print automatic a REPORT

    Hello, I'm a Portuguese Developer, and i've a challenge, that is, i want to open REPORT by FORMS in RDF format and i want to open and print automatic way, i do not want to open, and then have to go print button to pint them.
    I want to open by FORM way and print automatic and close imediatly.
    HEP ME PLEASE!
    Thank you

    Aslam o Alikum (Hi)
    Ofcourse you can do this by specifing system parameters like DESTYPE=Printer and DESNAME=PrinterName
    Replace PrinterName with you printer name
    See System Parameters in Reports Under Data Model

  • Queation Regaring Print Quote Report

    Hi All,
    I have a requirement to develop the custom print Quote Report. When i review the standard pring quote report ,I found a call like <?call-template:TermsTemplate?>.
    This statment itself is getting all the Terms and Conditions for that report. when i looked in the ASOPRTXSL.xsl, I see the below statement
    <xsl:template name="TermsTemplate">
    <xsl:call-template name="PrintContractTerms"/>
    </xsl:template>
    I am pretty new to XSL, dont know what's happening here. Please help me ASAP
    Thanks

    Can anyone answer this please. This is urgent . Thanks

  • Questions on Print Quote report

    Hi,
    I'm fairly new to Oracle Quoting and trying to get familiar with it. I have a few questions and would appreciate if anyone answers them
    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    Thanks and Appreciate your patience
    -PC

    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    I think I posted it in one of the threads2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    Yes, your understanding is correct.3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    No, there is no conc program getting called, you can directly call a report in a browser window, Oracle reports server will execute the report and send the HTTP response to the browser.4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    This is detailed in many threads.Thanks
    Tapash

  • Printing list view in ical

    I use mail and ical for everything now. Everything is fine except When I want to print the "list view" which shows my “to dos”. It displays the URL the “do to” is attached to in mail. I use notes often in mail and enter to dos in the notes so they will have URL links. The link only becomes a nuisance when I want to print, otherwise it’s very useful.
    Why would the long URL paths display when in print view???!!!!! It doesn’t make any sense.
    Is there anything I can do?
    Thank you

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • How can I print just the year view in iCal?

    Just trying to print the year view.

    If you choose the "list" option in View on the print dialog box and uncheck everything at the bottom except "To do items" you may be able to get what you're looking for.  It appears that the list includes all todos including those without due dates, so you might have to do something to assign due dates to all your todos and in iCal preferences restrict the visibility of todos outside of a certain date range.  Unfortunately, you can't save any of this work into a standard report (at least not that I know of) - the print dialog in iCal starts from scratch every time you invoke it.  Hope that helps at least some.

  • How to print monthly view in ical

    I have the most current version of ical.  It wont let us print a monthly view.  It only lets us select fro day or list.  I am sure i am doing someething wrong, but I dont know what.  Running MAC OS X 10.5.8. 
    Ical version 3.0.8. 

    earlnkids,
    The text size selection should be available in the first page of the iCal print options:

Maybe you are looking for