Facing a problem about printer sofware

Hi all,
i was new to OS X, just receive my imac today, and install everything i need, just left the last part, is printer software.
it was a ip printer, after i key in the printer ip address, its said "unable to connect" i have downloaded the most updated software and install.
its still the same problem came out.  please advise !    
printer model : Aficio™MP C2500 (support Mac OS X 10.10 (OS X Yosemite))
download link: http://www.ricoh-ap.com/downloads/GetDriver.aspx?CID=1&pn=Aficio%u2122MP%20C2500 &path=http://support.ricoh.com/bb/html/dr_ut_e/ra/model/mpc25/mpc25en.htm

Is the IP address a static address?  To verify you are using the correct IP address, print a configuration page from the printer.
Press the User Tools/Counter button
On the touch screen, select Printer Features
Select Configuration Page
User, adfernandes reported in an old forum thread that the protocol "JetDirect - Socket" worked. So, you might that. Others in that thread wrote that LPD worked.
Did you reboot your computer after installing the printer software? Also, try launching Disk Utilities (in the Utilities folder). In the left pane, click once on the name of the hard disk. In the right pane, click the First Aid tab and below the blank window, click the button "Repair Disk Permissions." Let it run and it will probably report some items that it fixed. Now, try adding the printer again.

Similar Messages

  • Problem about printing special character in bex query analyzer

    Hi,
    in bex query analyzer i have created one restricted key figure , in which i have substracted two date with the help of replacement path.
    So i got result.
    But i am facing one problem. when in both date, if one date is null or # then it is giving some big value like -734567.
    But i want some special character like X instead of this big values.
    So how can i do this?
    With the help of if and else it can be done.
    But how can we print special character in report.
    Please help me
    Thank you in advance

    hi,
    You cannot show X in a formula result. You can highlight the row using exception.
    Still if you want to show X in the result then you need to create a formula variable on a char which returns X value all the times.
    Then you can use the three formula variable to write a formula so that it shows the difference:
    date1 -- formula variable
    date2 -- formula variable
    charx -- formula variable.
    the formula will be
    Count(date1)Count(date2)(date1 - date2) + charx *(count (delta(date1) + delta(date2))).
    this would return the X value if any of the dates are empty otherwise their difference.
    regards.
    Arvind.

  • Problem about printer

    sir,
         my printer is hp printer .In which i got a problem of ''E'' THIS sign is stand for error for ink or paper jam .BUT there is no problem of ink an paper jam in that . when i replace the old cartrage with new one then the error sign gone out .so i want to know about that what is the actual problem it have .i hope u care your customer .
                                                        thank you

    Hi pukhraj,
    I understand that your printer has an error message.   
    What printer do you have? 

  • Socket Problem, Problem about printing the response from server

    Or even I am not sure if there is a response from server. My code is like that
                   //Connection between, httpProxy and target adress
                   Socket clientSocket= new Socket("some host", 80);
                   DataOutputStream outToServer= new DataOutputStream(clientSocket.getOutputStream());
                   BufferedReader inFromServer= new BufferedReader(new     InputStreamReader(clientSocket.getInputStream()));
                   //The first way
                   //outToServer.writeBytes("GET http://www.somehost.com/ HTTP/1.1"+ '\n');
                   //System.out.println("FROM SERVER: "+inFromServer.readLine());
                   //The second way
                   PrintWriter out_writer = new PrintWriter(outToServer, false);
                   out_writer.println("GET http://www.somehost.com/ HTTP/1.1");
                   out_writer.println("Host: localhost:80");
                   out_writer.println("Connection: Close");
                   out_writer.println();
                                        //The second way cont.
                   String s = null;
                   while ((s = inFromServer.readLine()) != null)
                   System.out.println(s);
                   inFromServer.close();There are the two ways that I tried, and both of them didn't work. Why they are not working ? How can I solve it ?

    problem is solved, the reason it doesn't work is i didn't write the parts correctly. I mean it should be exactly the same packetIf you mean that the entire request must be sent in a single IP packet, this isn't true.
    and host name must also be exactly sent to server.Of course.
    They must be like in the wireshark.No. The actual data you send must be the same, but the server has no way of telling about what the IP packet looks like or how many there were.
    One of your problems is that newlines in HTTP are defined as \r\n. In one case you're just using \n and in the other case you're using whatever the platform line terminator is. Neither is correct.

  • Problem about print

    When I choose Archivio ---> Stampa, in each mac application (es. Anteprima o Safari), the application falls down and it appears: "L'applicazione * si è chiusa inaspettatamente. Il problema potrebbe essere stato causato dal plugin IJPrintQuality."
    I don't have found any solution on the web. Can somebody help me?
    Thank you.

    sorry, it doesn't work. maybe I didn't express it clearly. it is just like the notepad of Windows, when click menu file->print open the print dialog, drag the dialog to new position, the main frame doesn't repaint.
    I think it is because main frame is not parent of the printdialog, so when printdialog moves, it doesn't send paint message to main frame. but I have not idea of how to fix it.
    thX

  • Facing a problem from printing in SAP

    Hi All
    in SP02 when i am doing printing, i am not able to  view the format option in some of the specific output device type how to get back my format option.
    please advise.
    Thanks & Regards
    K.Gunasekar
    Edited by: guna sekar on Nov 25, 2008 4:41 AM

    post one thread plz
    see my answer in the other thread

  • Facing Many Problems About Creating Directory and an External Table

    Question:
    The weird thing is if you look at question 10-b in page 3-41, it says:
    (page 3-41 "Oracle Database 10g SQL Fund. II Vol.1")
    Merge the data in the EMP_DATA table created in the last lab into the data in the emp_hist table. Assume
    that the data in external EMP_DATA table matches the EMP_HIST table, update the email column
    of the EMP_HIST table to match the EMP_DATA table row. If a row in the EMP_DATA table does not
    match, insert into the EMP_HIST tables. Rows are considered matching when the employee's first and
    last name are identical.
    To me, this question is constructed wrongly. First of all in the last lab we have not been asked to create EMP_DATA. Secondly, EMP_DATA is empty.
    Thirdly, this question asks us to merge into EMP_HIST table while EMP_DATA is empty.
    EMP_HIST table currently has copied data from employees table. EMP_HIST structure:
    FIRST_NAME VARCHAR2(20)
    LAST_NAME NOT NULL VARCHAR2(25)
    EMAIL NOT NULL VARCHAR2(45)
    Anway, i did the merge as following:
    merge into emp_hist e
    using emp_data d
    on (e.first_name = d.first_name)
    when matched then
    update set
    e.last_name = d.last_name,
    e.email = d.email
    when not matched then
    insert values (d.first_name, d.last_name, d.email);
    I get this error:
    Error report:
    SQL Error: ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file emp.dat in EMP_DIR not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    29913. 00000 - "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.
    On the other hand, i said let me try this:
    merge into emp_data d
    using emp_hist e
    on (d.first_name = e.first_name)
    when matched then
    update set
    d.last_name = e.last_name,
    d.email = e.email
    when not matched then
    insert values (e.first_name, e.last_name, e.email);
    I get this error because external table is final once its created as far as i know:
    Error report:
    SQL Error: ORA-30657: operation not supported on external organized table
    30657.0000 - "operation not supported on external organized table"
    *Cause:    User attempted on operation on an external table which is
    not supported.
    *Action:   Don't do that!
    I do not know what to do. I did my best, please help.
    Edited by: user11164565 on Jul 27, 2009 2:43 AM

    user11164565 wrote:
    NOTE: I did my best, i did all what i can do, but the problem persists. Please help
    I will mention all the steps i did clearly....
    I gave scott the following grants:
    grant create any directory to scott;
    grant read on directory emp_dir to scott;
    1. Created a directory and its been created successfully:
    create or replace directory emp_dir
    as 'F:\emp_dir';
    Then i did the following just to make sure my directory is recognized:
    SELECT *
    FROM dba_directories;
    I found the drive amongst the results...
    OWNER DIRECTORY_NAME
    DIRECTORY_PATH
    SYS EMP_DIR
    F:\emp_dir
    SYS SUBDIR
    D:\oracle\product\10.2.0\db_1\demo\schema\order_entry\/2002/Sep
    SYS XMLDIR
    D:\oracle\product\10.2.0\db_1\demo\schema\order_entry\
    2. I created an external table emp_data (the script is given by the text book): done successfully
    drop table emp_data;
    CREATE TABLE emp_data
    (first_name VARCHAR2(20)
    ,last_name VARCHAR2(20)
    , email VARCHAR2(30)
    ORGANIZATION EXTERNAL
    TYPE oracle_loader
    DEFAULT DIRECTORY emp_dir
    ACCESS PARAMETERS
    RECORDS DELIMITED BY NEWLINE CHARACTERSET US7ASCII
    NOBADFILE
    NOLOGFILE
    FIELDS
    ( first_name POSITION ( 1:20) CHAR
    , last_name POSITION (22:41) CHAR
    , email POSITION (43:72) CHAR )
    LOCATION ('emp.dat') ) ;
    3. I went to F:\ drive to see if emp_dir folder exist or not! I did not see it. I checked hidden files, nothing there. Anyway, i ignored it and did step 4.
    <snip>
    "Anyway, I ignored it . . . "
    and hence the rest of your problems. I did not see in the steps you recounted that you acually created a directory ("folder") named "\emp_dir" on your f: drive. Nothing you create within the database will actually create that directory on the OS. Createing a directory in Oracle, createing an external table in Oracle, will only create pointers to objects that Oracle will simply assume actually exists.

  • Facing problem in Printing network shop papers.

    Hi
    Iam facing a problem in printing Network shop papers
    T-code CN22/CN23
    after entering in to network in CN22/CN23 select menu path as below
    path : Network - Print - Shop papers
    we have many network in a project , there we are printing shop papers for all network as shown in path.
    After taking print shop papers the system status PRT(print) is updated in one network and in all remaining network PPRT(part print) is updated , but we are unable to take print shoppapers of the network which is having PRT status.
    But the question here is how the PRT staus is updated in only one network since we are taken print of other network also.
    can we change this system status , or is there any other way to tek print of that particular network having status PRT.
    expect your early help on this as this critical issue.
    thanks in advance .

    Hi,
    In driver program.
    call open_form.
    loop at itab into fs.
    call write_form.
    endloop.
    call close_form.
    In script editor.
    /E TEXT
    &fs-field1&,,&fs-field2&
    This works .

  • Problem while printing through citrix

    Dear Gurus ,
    We are facing the problem during printing through citrix .
    When we print locally without using citrix  were able to get the proper print as it displayed in the spool .
    But When we try to take the printout of  document having say 12 colum , only 10 colums r coming asthe print out .
    Please suggest as the views on this issue are valuable
    Thanks in advance .
    Chirag Kohli .

    Hi
    I am facing same problem
    Please let me know if you get any solution
    Thanks
    Rakesh Patel
    [email protected]

  • Problem with Printing from Spool

    Dear Experts,
                  I am facing the problem with Printing, Once i press the Print button, the spool is generated. But Instead of giving one page, It is generating the more than one page. Some times, the last page its getting is blank. I am confused how this happens.
    Kindly solve my issue, this happen frequently.
    Thanks & Regards,
    Srinivas

    Dear Siva,
                   Everything is ok in SPAD. This happen for few process order for COPI transaction.
    Regards,
    Srini

  • Problem with Printing the Billing date...

    Hi Experts...
    Here im facing the problem in printing the billing date.
    The scenario is as follows.
    The posting date of Billing is 10.10.2008
      The document date of Billing is also 10.10.2008.
    At the time of printing the Billing document it is taking another date otherthan 10.10.2008,where it should be 10.10.2008.
    What modifications should i do to rectify the problem.
    Please advice.
    Regards,
    Y P.

    Prasad,
    Ask your ABAPer do debug and find out what date (Table-Field) is used in the Invoice Output program. You will know the reason and if you think that the date being used is incorrect, you can ask your ABAPer to change it to VBRK-FKDAT which is the billing date.
    Chandan

  • Problem in printing Portuguese characters

    Hi ,
    We are facing a problem while printing certain Portuguese character . Please guide how to print the PORT characters in SAP script?
    Thanks
    Saurabh

    Hi Saurabh,
    Did you [Search|https://www.sdn.sap.com/irj/scn/advancedsearch?query=chinesecharactersin+Script&cat=sdn_all] before posting...
    and also refer to this [link|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00adf4da-76f1-2910-43aa-81ad2a67332c]
    Regards!

  • Problem smartforms Printing

    Hi All
    I am facing a problem in printing of Fields in smartforms. I am printing fields from work area like thisk
    Line  Fiels 1 Fiels 1  Fiels 1  Fiels 1 Fiels 1
    1      50   3020  abc   44ad abc
             60   4521  zyz    aasf  4asa
    2      90   5665  asdf   adf   asf
             80  7887   afscr  eref  pop
    Sometimes  Some fields can be blank like this
    Line  Fiels 1 Fiels 1   Fiels 1   Fiels 1      Fiels 1
    1      50  BLANK BLANK-   ad   abc
             60    4521   zyz   aasf  4asa
    2      90  BLANK  BLANK- adf   asf
            80    7887   afscr  eref   pop
    Plz ..BLANK MEANS Blank NOT ANY VALAUE
    So I want to skip the below fiels to above. So Please how to solve this. because I have fixed the fields like this
    I have created a Table line and column and fixed the fields for printing . See following code
    wa_itab-field1    and so on
    wa_itab-field2   and son
    So Plz guide how to do ?
    Ram
    Edited by: Ram Shanker on Jul 2, 2011 12:02 PM
    Edited by: Ram Shanker on Jul 2, 2011 12:25 PM

    Hi Ram,
    From where you are picking the values. Why there is no values. Is it one line means one record.
    Regards,
    Madhu

  • HP Officejet Pro 8600 "Problem with Printer or Ink System'

    A gander at this forum suggests I am one ofa multitude of people perplexed by this issue. There is a notation beside one enquiry which says 'Problem Solved'.... well it isn't for me. My printer (typical!) is one month out of warranty. I had to replace the black cartridge and, when I did, it came up with this error prompt. I then replaced all the other cartridges. HP suggests removing the printhead and following that they say place it 'upside down on a clean sheet of paper'... NO instructions for cleaning it!! When it is replaced in the printer they suggest you 'rock the printhead left and right to make sure that the printhead fully seats in the carriage' and if THIS doesn't fix things 'try reseating the printhead up to 3 times'... This in itself is an admission of an 'issue' with this product. It doesn't sound like a very scientific engineering 'fix' to me!
    A new printhead costs almost what we paid for the printer a year ago. I hate consigning anything to landfill that I can avoid... unfortunately it looks like that is where this unit belongs...

    Hi @Robin_Perth,
    Welcome to the HP Forums!
    I am sorry to hear about you getting the problem with printer or ink system error, with your HP Officejet 8600, but I am happy to look into this for you!
    I am assuming you have already been through this guide, A 'Problem with Ink System' Error Message Displays on the Control Panel or Computer During Setup.
    If this guide does not resolve the issue, please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. Country-language selector.
    This guide, Limited Warranty for HP Ink Cartridges and Customer-Replaceable Printheads for HP Inkjet Supplies, will help you to determine if your printhead is still in warranty or not.
    Hope this helps!
    RnRMusicMan
    I work on behalf of HP
    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" to say “Thanks” for helping!

  • Problem with printing a PDF

    Hi All,
    I'm developing a web application written in J2EE that uses Java Reporting Component (JRC) to display crystal reports from some filters recovered from a jsp and passed to a report .rpt previously designed and invoked just at runtime.
    I have a problem with printing a PDF:
    I want, after entering the filters in a jsp, to print a report in PDF format (WORD) without opening it
    with Adobe Reader (Microsoft Word). The class of API JRC used for export is ReportExportControl.
    Can anyone help me?
    I wish a great day to You all.

    Hi Ted Ueda,
    sorry for the delay of my answer.
    I understand very well the problems related to security.
    With the following code that I used to produce a report (PDF) at runtime,
    is the PDF created on the server and then sent to the client, or is it directly created on the client as PDF
    from RTF previously realized?
    ReportExportControl exportControl = new ReportExportControl();
    String report = report path;
    ReportClientDocument reportClientDoc = new ReportClientDocument();
    reportClientDoc.open(report, OpenReportOptions._openAsReadOnly);
    Object reportSource = null;
    reportSource = reportClientDoc.getReportSource();
    //The method setConnectionProperties() stores all the connection parameters in the collection
    //ConnectioInfos
    ConnectionInfos connInfos = setConnectionProperties(request, reportClientDoc);
    exportControl.setEnableLogonPrompt(false);
    exportControl.setEnableParameterPrompt(false);
    exportControl.setReportSource(reportSource);
    exportControl.setDatabaseLogonInfos(connInfos);
    //Single method to pass parameters to Crystal Reports. Using classes ParameterFieldController and
    //ParameterFieldDiscreteValue
    setReportParametersValue(reportClientDoc, reportParameters, subReportParameters);
    ExportOptions exportOptions = new ExportOptions();
    //Set the export format (PDF)
    exportOptions.setExportFormatType(ReportExportFormat.PDF);
    PDFExportFormatOptions PDFExpOpts = new PDFExportFormatOptions();
    exportOptions.setFormatOptions(PDFExpOpts);
    exportControl.setExportOptions(exportOptions);
    exportControl.setExportAsAttachment(true);
    try {
          exportControl.getHtmlContent(request, response, getServletConfig().getServletContext());
    } catch (ReportSDKExceptionBase e) {
    throw new ApplicationException("error code", ": error message"); }               
    As, however, I predicted in my previous message about the direct printing on the client,
    I read about ActiveX, but I don't know how to use them.
    I read this information in the 'Crystal Reports for Eclipse Developer Guide' about "printMode" attribute:
    "In ActiveX print mode, an ActiveX control is downloaded to the client machine and the report is send directly to the printer...."
    The ActiveX alternative is a java applet that runs on the client and takes the pdf from the server and prints directly onto the clients through the commands that I used in the DOS command line:
    1)     AcroRd32.exe /p /h FILENAME
    where
    /p = print
    /h = hide window
    to print the report and
    2)     tkill AcroRd32
    to close Adobe Reader, because it doesn't end automatically after printing and the command  /h  is used just to minimize the process.
    I hope you can give me advice because I need to print directly on the client. Thank you

Maybe you are looking for

  • IOS4 photos do not appear in iphoto

    HI!! I have an iphone 3g with iOS4. After upgrading, photos taken from my iphone camera or even downloaded from the internet do not appear in iPhoto when I try to sync. I get a blank space with an outlined frame. Any fix? I have all updated software.

  • Playing back DVDs made in iDVD

    Is iDVD able to create DVDs that will play consecutively in a multi-DVD player--a carousel player- without going back to the main menu screen? If I place a movie in the "Drag content here to automatically play..." box it always jumps to the menu scre

  • Creating forms in Workbench

    I am fairly new to LiveCycle Workbench ES so this might sound like a dumb question.  But, is it better to create my Adobe forms in LiveCycle Designer first and then bring them into LiveCycle Workbench ES? or is it best to start the whole process usin

  • Get Inactive User in Domain based on Last Logon Time Stamp

    Dear Experts, I have used this code, but it is not displaying proper result, please help me how to display only "Daysinactive=90", for me it is display all the user.Please help me # Gets time stamps for all User in the domain that have NOT logged in 

  • Service ticket  scenario

    Hello experts,            Am very new to CRM & ICWC. Can anyone please tell me the steps or provide me a link to set up a simple demo Service ticket scenario? Your response in appreciated,will also reward points .Please help! the scenario could be as