Apex error when printing. doc format

Hi everybody
Please help me with this mistake.
I'm doing an application in Apex. I have a button who call a procedure with which I print a documento in format .doc.
This is the code of the procedure:
create or replace
PROCEDURE ARCHIVO(solicitud in number, tarea in number, visita in number)
AS
DETALLE CLOB;
IDE NUMBER;
CONSULTOR VARCHAR2(200);
SOLICITANTE VARCHAR2(200);
EMPRESA VARCHAR2(200);
FECHA_SOLICITUD VARCHAR2(200);
FECHA_INICIO_PRESENTACION VARCHAR2(200);
FECHA_FIN_PRESENTACION VARCHAR2(200);
SERVICIO_SOLICITADO VARCHAR2(200);
HORA_ENTRADA VARCHAR2(200);
HORA_SALIDA VARCHAR2(200);
HHABILES NUMBER;
HNOHABILES NUMBER;
HMOVILIZACION NUMBER;
BEGIN
OWA_UTIL.MIME_HEADER ( 'APPLICATION/VND.MS-WORD', FALSE);
HTP.PRINT('CONTENT-DISPOSITION:ATTACHMENT;FILENAME="C:\ACTA.doc"');
OWA_UTIL.HTTP_HEADER_CLOSE;
SELECT
tar.tar_id "IDE",
cs.nombre_con "CONSULTOR",
sol.sol_quien_solicita "SOLICITANTE",
emp.emp_nombre "EMPRESA",
sol.sol_fecha_solicitacion "FECHA SOLICITUD",
TO_CHAR(VIS_INICIO, 'DD-MM-YYYY')"FECHA INICIO PRESTACION",
TO_CHAR(VIS_FIN, 'DD-MM-YYYY')"FECHA FIN PRESTACION",
sol.sol_descripcion "SERVICIO SOLICITADO",
TO_CHAR(VIS_INICIO, 'HH:MI:SS')"HORA ENTRADA",
TO_CHAR(VIS_FIN, 'HH:MI:SS')"HORA SALIDA",
VIS_HEH_BASE_SOPORTE + VIS_HEH_BASE_EDUCACION + VIS_HEH_BASE_SERVICIOS + VIS_HEH_VISITA_SOPORTE + VIS_HEH_VISITA_EDUCACION + VIS_HEH_VISITA_SERVICIOS "HEH",
VIS_HENH_BASE_SOPORTE + VIS_HENH_BASE_EDUCACION + VIS_HENH_BASE_SERVICIOS + VIS_HENH_VISITA_SOPORTE + VIS_HENH_VISITA_EDUCACION + VIS_HENH_VISITA_SERVICIOS "HENH",
VIS_H_MOVILIZACION "H_MOVIL",
VIS_DETALLE_ACTA "DETALLE_ACTA"
INTO
IDE,
CONSULTOR,
SOLICITANTE,
EMPRESA,
FECHA_SOLICITUD,
FECHA_INICIO_PRESENTACION,
FECHA_FIN_PRESENTACION,
SERVICIO_SOLICITADO,
HORA_ENTRADA,
HORA_SALIDA,
HHABILES,
HNOHABILES,
HMOVILIZACION,
DETALLE
from sgcs_solicitud sol,
sgcs_tarea tar,
consultores cs,
sgcs_asignacion asg,
empresa emp,
sgcs_visita vs
where
sol.sol_id=solicitud and
tar.tar_id=tarea and
vs.sgcs_tarea_tar_id=tar.tar_id and
tar.tar_id=asg.sgcs_tarea_tar_id and
asg.consultores_codigo_con = cs.codigo_con and
emp.emp_id = sol.empresa_emp_id and
vs.vis_id=visita ;
HTP.IMG('http://astharot:7777/i/redpartner/imagen1.JPG', 'CENTER');
     --HTP.HR;
     HTP.BR;
HTP.BR;
HTP.BR;
HTP.P('<div align="center">');
HTP.IMG('http://astharot:7777/i/redpartner/titulo.JPG', 'CENTER');
HTP.P('</div>');
HTP.BR; HTP.P('<table width="449" border="0" align="center"> <tr><td width="150">');
     HTP.BOLD('CONSULTOR');
     HTP.P('</td><td width="234">');
     HTP.P(CONSULTOR);
     HTP.P('</td></tr><tr><td>');
     HTP.BOLD('SOLICITANTE');
     HTP.P('</td><td width="234">');
     HTP.P(SOLICITANTE);
     HTP.P('</td></tr><tr><td>');
     HTP.BOLD('EMPRESA');
     HTP.P('</td><td>');
     HTP.P(EMPRESA);
     HTP.P('</td></tr><tr><td>');
     HTP.BOLD('FECHA_SOLICITUD');
     HTP.P('</td><td>');
     HTP.P(FECHA_SOLICITUD);
     HTP.P('</td></tr><tr><td>');
     HTP.BOLD('FECHA_INICIO_PRESENTACION');
     HTP.P('</td><td>');
     HTP.P(FECHA_INICIO_PRESENTACION);
     HTP.P('</td> </tr> <tr><td>');
     HTP.BOLD('FECHA_FIN_PRESENTACION');
     HTP.P('</td><td>');
     HTP.P(FECHA_FIN_PRESENTACION);
     HTP.P('</td></tr><tr><td>');
     HTP.BOLD('SERVICIO_SOLICITADO');
     HTP.P('</td><td>');
     HTP.P(SERVICIO_SOLICITADO);
     HTP.P('</td></tr><tr><td>');
HTP.BOLD('HORA_ENTRADA');
     HTP.P('</td><td>');
     HTP.P(HORA_ENTRADA);
     HTP.P('</td></tr><tr><td>');
HTP.BOLD('HORA_SALIDA');
     HTP.P('</td><td>');
     HTP.P(HORA_SALIDA);
HTP.P('</td></tr><tr><td>');
HTP.BOLD('HHABILES');
     HTP.P('</td><td>');
     HTP.P(HHABILES);
     HTP.P('</td></tr><tr><td>');
HTP.BOLD('HNOHABILES');
     HTP.P('</td><td>');
     HTP.P(HNOHABILES);
HTP.P('</td></tr><tr><td>');
HTP.BOLD('HMOVILIZACION');
     HTP.P('</td><td>');
     HTP.P(HMOVILIZACION);
     HTP.P('</td></tr></table>');
     HTP.BR;
HTP.BR;
HTP.BR;
HTP.P('<div align="left" class="Estilo1"><u><strong>');
HTP.BOLD('Detalle del Diagnostico y Acciones realizadas');
HTP.P('</strong></u></div>');
HTP.P(DETALLE);
END ARCHIVO;
but below my results in the document, this line is printed: Location: f?p=111:321:4171743223393578::NO
Could someone tell me how delete this one?
Thanks

Hi JohnA and everybody
I'm working in Mozilla Firefox but I tried in Explorer and my problem persists. I changed the setting about header and footer in "Page Setup" in both browsers but the problem continues and when I work in Explorer I have many problems therefore I use Mozilla Firefox; my actual version is 3.6.
I don't know when, where and how that line is sended to my procedure and print in the document.
Please help and thanks

Similar Messages

  • HP LASERJET CP1525nw print error when printing online Gmail emails with Google Chrome

    HP LASERJET CP1525nw print error when printing online Gmail emails with Google Chrome. Extra large font sizes and weird formatting issues only when printing emails from Gmail within Chrome. No problems when printing the same email from Gmail+Internet Exolorer or Thunderbird. Using the IE Tab extension in Chrome prints the email correctly but the style of Gmail's message window is completely weird ie: formatting bar is spread out vertically instead of horizontally. I believe it is clear that this is an application specific issue between the HP LASERJET CP1525nw printer and Google Chrome + Gmail. This printing scenario does not occur when printing anything else or when printing via another printer. I would appreciate receiving any suggestions to solve this issue.
    OS: Windows 7 Ultimate x64
    Browser: Google Chrome 15
    HP Print driver: HP Universal Print Driver for Windows PCL6 v5.4.0
    Printer is connected by WiFi to 4 computers

    Hi AbZu, 
    You need to contact Google Chromes technical support as this is only an issue with Chrome. You have indicated that the printer functions correctly everywhere else. Check out the link below for Google Chrome technical support. Let me know if you need additional assistance?
    http://support.google.com/chrome/?hl=en
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

  • Error when printing reports from forms in Linux

    Im having an error when printing a report from a form. The problem is, only with certain forms. when printing a report (to PDF) from other forms, it prints with no problems. The oracle is 10g AS and operating system is Redhat AS 3.
    The error, in the log from the reports server is:
    [2004/9/7 7:14:59:599] Exception 62204 (): Internal error writing the image BandCombine: a row of the matrix does not have the correct number o
    f entries, should be OpImage.getExpandedNumBands(source0.getSampleModel(), source0.getColorModel()) + 1..
    exception oracle.reports.RWException {
    oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
    int errorCode=62204,
    java.lang.String errorString="Internal error writing the image BandCombine: a row of the matrix does not have the correct number of entries, sh
    ould be OpImage.getExpandedNumBands(source0.getSampleModel(), source0.getColorModel()) + 1..",
    java.lang.String moduleName="REP"
    at oracle.reports.utility.Utility.newRWException(Utility.java:604)
    at oracle.reports.toolkit.image.writer.JPEGImageWriter.writeImage(JPEGImageWriter.java:130)
    at oracle.reports.toolkit.image.ImageManager.writeJPEGImage(ImageManager.java:524)
    at oracle.reports.engine.EngineImpl.CRunReport(Native Method)
    at oracle.reports.engine.EngineImpl.run(EngineImpl.java:353)
    at oracle.reports.engine.EngineClassPOATie.run(EngineClassPOATie.java:84)
    at oracle.reports.engine.EngineClassPOA._invoke(EngineClassPOA.java:117)
    at oracle.reports.engine.EngineClassPOA._invoke(EngineClassPOA.java:62)
    at com.inprise.vbroker.poa.POAImpl.invoke(POAImpl.java:2355)
    at com.inprise.vbroker.poa.ActivationRecord.invoke(ActivationRecord.java:104)
    at com.inprise.vbroker.GIOP.GiopProtocolAdapter.doRequest(GiopProtocolAdapter.java:492)
    at com.inprise.vbroker.IIOP.ServerProtocolAdapter.doRequest(ServerProtocolAdapter.java:64)
    at com.inprise.vbroker.GIOP.GiopProtocolAdapter.dispatchMessage(GiopProtocolAdapter.java:653)
    at com.inprise.vbroker.orb.TPDispatcherImpl$TPDispatcher.run(TPDispatcherImpl.java:99)
    at com.inprise.vbroker.orb.ThreadPool$PoolWorker.run(ThreadPool.java:76)
    [2004/9/7 7:14:59:599] Error 50103 (C Engine): 19:14:59 ERR REP-0069: Internal error
    REP-62204: Internal error writing the image BandCombine: a row of the matrix does not have the correct number of entries, should be OpImage.get
    ExpandedNumBands(source0.getSampleModel(), source0.getColorModel()) + 1..
    [2004/9/7 7:14:59:600] Error 50103 (C Engine): Error Writing Image, ID 2
    [2004/9/7 7:14:59:601] Error 50103 (rwtic:rwticga): Look up for image attributes for image 2
    [2004/9/7 7:14:59:602] Error 50103 (rwtic:rwticgi): Looking up for Image, ID 2 in the cache
    [2004/9/7 7:14:59:603] Error 50103 (rwtic:rwticgi): Loading the Image into the cache
    [2004/9/7 7:14:59:603] Debug 50103 (ImageManager:getImageSource): Retrieving the Image object for ID : 2
    [2004/9/7 7:14:59:603] Error 50103 (rwtic:rwticgi): Image successfully loaded into the cache
    [2004/9/7 7:14:59:604] Debug 50103 (ImageSource:getImageHeight ): Start Height : 155
    [2004/9/7 7:14:59:604] Debug 50103 (ImageSource:getImageWidth ): Start : width : 138
    [2004/9/7 7:14:59:604] Debug 50103 (ImageSource:getImageColorSpace ): Start
    [2004/9/7 7:14:59:608] Exception 50125 (): Caught exception: java.lang.NullPointerException
    exception oracle.reports.RWException {
    oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
    int errorCode=50125,
    If anyone could help me, is important !
    Thx in advance
    Bruno Santos                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Raise a TAR I reckon

  • Handle errors when makeing doc.submitForm()

    Hello,
    I am trying to submit PDF form by method doc.submitForm, example:
    doc.submitForm
            cURL: "http://localhost/reader_test.php?name=" + name.rawValue,
            cSubmitAs: "XML"
    A) With this approach, is it possible to handle connection errors and display custom error message (and cancel the original one) ?
    I have tried something like
    try{  doc.submitForm(...); } catch(e) { //handle code }
    but it seems to be run asynchronously.
    B) Is it possible to add custom HTTP headers to the POST ?
    I saw that FormCalc can do it in Post() funciton, but when using Post() function, the Reader displays Yello-bar security dialog, that made our previous SOAP-based solution too complicated for the end user.
    Appreciate any help.
    Radek

    Sofar I have not found the way how to handle errors when using doc.submitForms(), but there may be following workaround (mey be?):
    The server returns as a response to a submitForms() call a pdf content, which is displayed as a document in a new Reader's window. Is it possible to place some javascript into this new window, that would refer to parent window and send to it some message ? Or at least to detect at the "parent" window, that a "child" window was opened ?
    So is there any relation between the newly opened document with the response from server and the original document, that initiated calling of doc.submitForms()?
    Thanks.

  • Error when Broadcasting PDF format to email

    Hi,
    The template is getting executed properly through WAD. Even, in portal the report is being generated correctly. The problem is when I try to broadcast PDF format to Email.
    I am receiving the following error when attempting to broadcast a query as PDF - Error: com.sap.ip.bi.base.exception.BIBaseRuntimeException.
    Please suggest me the solution.

    Hi Lavanya
    I strongly recommend you to be on latest Java patches for your SPS from the service market place.
    Also please check whether the note 1052659 - Requirements for customer messages concerning export to PDF is helpful to you.
    Especially check this portion of the note is relevant to you.
    " The following entry is in the trace:
               "Invalid Response Code: (401) Unauthorized.
               com.sap.ip.bi.base.exception.BIBaseRuntimeException com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Service call exception; nested exception is: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: "Invalid Response Code: (401) Unauthorized. The requested URL was:"http://<your host>:<yourport>/AdobeDocumentServices/Config?style=document" at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:405)
    See Note 934276 " Print preview in SAP NetWeaver 2004s BI does not work".
    See the "II Web Dynpro for Java" section in Note 944221."
    If not can you let me know the detailed error you are getting.
    Thank you.
    Regards
    Suresh

  • PhotoShop CS2 "Program Error" when printing

    I am posting this to the Adobe Forums as well, but thought someone here might have some ideas. am having an intermittent problem printing from PhotoShop CS2 to an Epson 9800. When printing large files (200 MB average) to the Epson, PhotoShop will spool the job, taking about 50% longer than normal, and when complete, displays the following message..."The file XXXX.tif could not be printed because of a program error" No job ever gets to the print que. This happens about 80% of the time when printing. Quitting and restarting PhotoShop generally fixes the problem, and the file can be printed from another computer without issue, so this is not file specific. I have 8GB of RAM installed and PhotoShop running under 100% available memory, cache level at 8, with a dedicated 180GB scratch disk. Memory should NOT be the problem, though I do often have the full layered version of the file open in the background (I am printing from a flattened copy. I have observed that the problem is less likely to occur if no other files are open. I have a second G5 with the exact same software setup (OS, Print Driver and PhotoShop down to the decimal version #) that works perfectly every time. I have run all of the System utilities (Repair Permissions, FSCK, etc), reset the OSX printing system, reset PS preferences, trashed and re installed CS, as well as the Epson printer driver, all with no success. Any other trouble shooting ideas would be greatly appreciated. I would love to avoid a System reinstall.

    See the Adobe Knowledge Base document"Error 'Could not complete your request...' or 'Could not create a new document...' (Photoshop CS2 on Mac OS X v10.4)"
    I suggest whenever you have problems with third-party applications, the first place to start troubleshooting is with the application's documentation, then vendor's web site. Usually their sites have FAQs, lists of known bugs, or application-specific forums similar to these Discussions. Sometimes, unlike the Apple Discussions, the questions are even answered by employees of the vendor.
    The document cited above was found in 10 seconds by searching the Adobe support site.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • 0x80004005 error when printing SSRS rdlc report

    Hi there
    I have a small app that is published in MS azure with RDLC integrated reports.
    The application runs using IE and the system asks me to install the SQL Server Report Service 2012 add-in.
    I added with no issues but I am getting a 0x80004005 error when I am trying to print a report.
    I have followed the advise on this issue but I still have the same problem.
    I have unregistered and deleted the dlls from windows\downloaded Program files subdirectory, copy the dlls into the same directory registered the dlls to no avail.
    Any advise from anyone?
    Thanks in advance for the help
    Rio

    Hi Rio,
    The issue may be caused by incorrect session state provide for report view and need to use Azure Cache.
    Please make sure report viewer control works efficiently without any session related issue. We will need to configure session state provider using Azure cache.
    Reference:
    http://msdn.microsoft.com/en-us/library/windowsazure/hh825825.aspx
    http://msdn.microsoft.com/en-us/library/windowsazure/gg278339.aspx
    We pretty much need first create an Azure Shared Cache namespace, then copy the configure property for our cache namespace to our web.config file.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • Photoshop CS5: error when printing to Xerox Phaser 7750

    Mac 10.6.5
    I get the following error when I print directly to my Xerox Phaser 7750 from Photoshop CS5:
    "Error: /Library/Printers/Xerox/Filters/pstophaserps failed"
    All the other CS5 apps (plus Photoshop CS4) have no trouble printing.
    Thanks in advance for any assistance.

    Something doesn't add up since PS CS4 works ok. What's different about CS5? 64bit?
    My guess would be that Photoshop is the only app you use that prints PostScript through the Cocoa drivers, and thus the only one hitting that particular part of the driver software.
    >

  • Disk utility reports "Device could not be opened" - error when trying to format a new drive in a Mac Pro 1,1

    MacPro 1,1 Quadcore 3 GHz (2006 "Woodcrest")
    32 GB RAM
    ATI Radeon HD 5770
    OS X 10.7.5 Lion
    I have encountered the following behavior when trying to format a new drive with disk utility. This description has also been send via the Mac Pro feedback as a bug report to Apple.
    On searching the web and forums with this particular error message and behaviour I could not find any usful results. So maybe the following description may be helpful for some users.
    Best regards.
    1. Drive Bay 1 contains the original 250 GB Startupdisk. It works without errors.
    2. Drive Bays 3 and 4 contain each a WD Caviar Black 2 TB SATA 3 HDD. They work without errors.
    3. I have purchased a third WD Caviar Black 2 TB HDD.
    4. In Drive Bay 2 there has been a Seagate 750 GB HDD, which worked in conjunction with all the other drives without error.
    5. I exchanged the Seagate HDD in Drive Bay 2 with the new WD Caviar Black 2 TB HDD.
    6. On starting the system, it will report to initialize the new drive.
    7. On trying to initialize the new drive with disk utility it reports the error [translated from German] "Erasing of the volume has failed. The device could not be opened."
    8. I thought that the drive is faulty. Thus I created an RMA-Case at WD. They exchanged the drive without problems.
    9. On getting the exchanged WD Caviar Black 2 TB drive I put it in Drive Bay 2 as before.
    10. On trying to erase and format the exchange drive I got the same error message "Drive could not be opened."
    10.1 On selecting the physical drive in the devices list, disk utility reports all information in the bottom area of its window as usual, e. g. hard disk description, connection bus, type and place, capacity, write status, SMART-status, partition scheme.
    10.1 On leaving that drive selected in the devices list and clicking the info-button, disk utility will also report additional information as usual, e. g. Name, Type, partition scheme, media-identification, media name, media type, device tree, … , number of relocated sectors, etc.. All this information appears to be valid, as can be compared to the other devices information inside the other Drive Bays. Also the disk numbering scheme appears to be standard - 4 HDDs give the numbering disk0, disk1, disk2, disk3.
    10.2 From that information I conclude that the SATA-bus and connectors electrically work properly, the drive has spun up and can be accessed by the system normally.
    11. I powered down the computer, took out the HDDs from Drive Bays 3 and 4 and put the caddy with the new exchange drive in Drive Bay 4 [Maybe, I could have also just left it alone in Drive Bay 2, or 3].
    12. After powering on the system, disk utility will quick format the exchange drive without any error message. Also, when erasing again by selecting the option to write zeros to the drive, disk utility will finish without error.
    13. After disk utility finished formatting, I put back the original drives into Drive Bay 3 and 4 and put the now newly formatted drive back into Drive Bay 2.
    14. After switching on the computer the system start and login proceeds without any error message. All drives appear as expected on the desktop.

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

  • Error when print out SAP Crystal Report in SAP B1

    Dear all,
    I have encountered the following message when I tried to print out SAP Crystal Report at client pc:
    Could not load file or assembly 'CrystalDecision.Windows.Forms, Version = 12.0.2000.0, Culture=neutral, Publickey Token=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.
    On the other hand, there's no error when I print out the SAP Crystal Report on server.
    Can anyone advice on the error message as above?
    Thanks alot.

    Hi All,
    I have SAP 2007 B,Visual Studio 2008 and Crystal report 2008 Add-on.  I am facing the same problem,
    "Could not load file or assembly 'CrystalDecision.Windows.form,Version=12.0.2000.0, Culture=neutral,Publickey Token =692fbea5521e1304' or one of its dependencies. The system can not find the file specified."
    I have uninstalled SAP B1 and Crystal report 2008. Still I am getting the same Error message. Kindly give me your suggestions.
    Regards,
    Tom.

  • Hard Drive "Input Output" Error When Attempting to Format

    A friend just gave me a nice PowerBook that seems to be in need of a fresh OS and when attempting to format the hard drive I am getting an "Input Output" error.  Any suggestions to overcome this issue and format the drive?

    Hi all,
    I'm having similar issues on a white macbook (2006 model). I ran into some trouble with it about a month ago, when on booting up, it showed only the folder with a question mark. Booting up from the original grey install DVD worked, so I thought the problem was most likely a faulty hard drive.
    It's only after having this problem, that I came across this recall for possible faulty hard drives, that Apple offered:
    http://www.apple.com/support/macbook/hd/repairextension/
    Doh! Too late?
    So, I got onto ebay and picked up a deal and received my new hard drive yesterday. I swapped out the original 80GB with 320GB, only to find the same input/output error described by the OP, here (also in a couple of other Apple discussion posts - see below).
    Disk utility shows the new hard drive to be 2.3TB in size! Should be 320GB - but, this is also what others have described. See e.g.,:
    https://discussions.apple.com/message/16090313#16090313
    I've run the extended testing from the CD (holding down 'D' on boot-up) and it reported no problems. Also, similar to others experiences:
    https://discussions.apple.com/message/16081818#16081818
    So, what can the problem be?!?!?!?!?
    In this post, JMPC suggests it has something to do with the size of the new internal hard drive....groan.....:
    https://discussions.apple.com/message/16145560?tstart=0#16145560?tstart=0
    Can anyone confirm this?

  • Photoshop Application Errors when printing to Zebra Card Printer

    Hello,
    I have been troubleshooting and issue for a user and I have run into a wall.
    When printing from Photoshop CS3(Version 10.0.1) to a brand new Zebra ZXP Series 3 card printer in Windows 7 32 bit I am getting this: errors:
    I went from an XP machine to Windows 7(with a video card plenty of memory) and still the same errors.  I updated the Zebra printer drivers and firmware. I can test print from the PC just fine. I even tried CS4 with the same result. The user purchased a license for CS3 so I am troubleshooting with CS3 at this moment. My user is way behind in printing id badges for his Fireman and needs this resolved ASAP. I may have to go with Zebra's Card Studio Software if there is no resolution for this Photoshop issue.
    Any help at this point would be greatly appreciated!
    Thank you,
    Ben Collier

    Zebra Level 2 Support is looking into it for me. Thanks for nothing Adobe!

  • Newbie apex error when trying to install the OEHR Sample object.

    ORA-01653: unable to extend table FLOWS_030000.WWV_FLOW_ONLINE_HELP by 8 in tablespace APEX
    I got this error when trying to install.
    I will go back now and check the storage space.
    I could not find any error message on it.
    Thanks.Steve

    Just few minutes after asking this question on forum, I was able to find the workaround for opening the DashboardDesigner.exe.
    What I was trying earlier was that, In my "Business Intelligence Center" site,  i was trying to open the Dashboard Designer from "PerformancePoint Content" list by clicking "New Item" from "Items" tab in Ribbon.
    Instead Now I go to the connections library "Data Connections",  Go to "Documents" tab in Ribbon and then click on "New Document".
    Voila!
    Finally "DashboardDesinger.exe" opens up! :D
    Now from this designer application, I can add other Lists directly and can add "PerformancePoint Content" list for creating actual ScoreCards, Dashboards, KPIs etc.
    Happy Learning!
    Shri07

  • CL_RSRD_PRODUCER_PRECALC Error when Printing using Info Broadcasting

    Hi,
    I get the following error when trying to print from the Portal using Information Broadcasting - CL_RSRD_PRODUCER_PRECALC, type PROD.  I am trying to print using PS or PCL not PDF.
    We are running SPS12.  The printer is setup in BW and tested.  All other connections between Portal and BW appear to be working.
    Any ideas?
    Thanks,

    Thanks,  but that note applies to Patch 8 and as mentioned we are running SPS12.
    Basically what happens is we get a blank browser window for some time then the error returns as mentioned in my original post.

  • CS3 Postscript errors when printing MathType eq's

    When printing documents in CS3 that contain placed EPS files that were created with MathType I get a PostScript error. The same EPS files print fine to the same printer from CS2.
    Has anyone had a similar experience or know of a solution?
    Thanks,
    Phil

    Phil,
    I have also had the same problem with MathType equations in ID CS3. Similar to what you said, it printed fine out of ID CS2. I found that exporting my document as a PDF and then printing that worked fine (and that way the equations are all still editable). However, I'm unhappy with that solution because many of my commercial print providers specifically request that I print to postscript and distill. I know Adobe has assured us that using the Export function is perfectly legitimate and should meet all the needs of commercial print providers, but I'm not sold. Plus it's annoying to have to make a PDF and print that every time I want to print a document.
    As an aside, I work on a Mac G5 and use LinoType FontExplorer for my font management. Is this problem limited to Mac, or does it happen on a PC also?
    In trying to track down the root of the problem, my step were this:
    I completely wiped my system of all but the necessary system fonts, uninstalled MathType, and restarted. I reinstalled MathType 5.1 for Mac. It automatically installs TrueType fonts, so I remade one of my problematic equations in MathType with the TrueType fonts. It used Symbol, MT Extra, and Times. I made a hardcopy printout from MathType - no problem.
    I imported the new MathType equation into a new document in ID CS3. I printed to a postscript file, using "PPD: Device Independent" (which should take care of any individual printer finickiness). The .ps printed fine, but I got "[ Error: typecheck; OffendingCommand: makefont ]" when I distilled it (I've been using my Distiller settings in a professional book publishing environment for the past 8 months without issue).
    Next I permanently deleted the TrueType fonts and installed the Postscript fonts that MathType provides, following the instructions that come with the program on how to do this. I restarted again, and replicated my previous test. Same outcome.
    I opened the equation in Illustrator, and saved it as an .eps. Obviously this isn't ideal because it destroys MathType's editability on it, but this was just to test a theory. I imported the Illustrator equation into ID CS3 (with fonts embedded), and it printed to .ps and distilled fine. Because of this, I think your observation that ID CS3 isn't downloading the necessary fonts for the equations (which you point out can't be embedded in MathType) is correct.
    Thoughts? I'd love to get to the bottom of this if anyone has any more insight.
    Thanks,
    Virginia

Maybe you are looking for

  • Old external Toshiba HDD not working with Windows 7

    I feel as if this problem is going to affect more and more people. Having searched the internet without luck, I felt the need to address the issue here! I have an external 320GB Toshiba HDD, model: PX1267E-1G32 which Windows 7 (64Bit Professional) do

  • Oracle 10g XE // Licensing question

    Hi, as far as i got till ow, the XE seams to be only limited in 3 ways: - max 4GB user data - max 1GB RAM actively used - max 1 Processor used However, this leads to some questions for me: 1. what is a "processor" defined as ? i this 1 cpu including

  • BOYD ISE Native Supplicant Windows 7

    Connects to BYOD-SSID and go through the process, including self registration once everything is done, my windows machine does not automatically selects certificate (TLS) for authentication maunally need to go under proprites and select certificate a

  • RFC response -- Email

    Hi  , I am creating a scenario in which response from RFC is sent to sepcific mail ids.. Can you provide helpful links.. Thanks, Vishal

  • Photo preview on iPhone

    What is the heart that appears in the bottom middle of the screen after a photo is taken (when you preview a photo) - On a 5s with the latest iOS version installed.