Export as PDF not working.

I can't get a Review Document to "Export as PDF".  When I click on the Export button, the dialog box pops up.  I choose "All" and pick "My Computer" for the Destination. I click on the Export button and choose my Desktop for the download.  It says that it's "Generating PDF" but that's all it does.  I can't Export as PDF, the person reviewing the document can't Export as PDF.  I have tried both Safari and FireFox and my client is using Internet Explorer.  I have also tried logging in under another account and I get the same results.  Last week this was working fine.
Any Ideas?
Thanks

This bug was introduced when a new build was deployed on October 27. The bug has been fixed and the fix will be deployed soon. In the meantime a workaround is to Export PDF to Your Workspace. You can then download the PDF from the Workspace.
Ken Rice
Quality Engineer
CS Review - Adobe Systems

Similar Messages

  • Why is exporting to PDF not working?

    Why is exporting to PDF not working?

    Dear Claudio,
    I know it wasn't much to go on but I got your attention!
    I work for a charity and use a program called "Donor Perfect".
    It has a feature that when you generate a report it gives you the option to export to MSWord, Excel, and PDF.
    Below is the step by step description of what happens.
     After log on ......
         1. Click on Reports
         2. Listings
         3. Report Category(any)
         4. Select Record type(any)
         5. Select report options (any selection filter that fits or Build a filter) and sort order(any)
         6. Enter title (accordingly)
         7. Click on Preview
         8. When next screen opens with report visible - in "Report Print preview" line above report choose PDF icon
         9. Export to PDF window opens
         10. click on Page range-ALL
         11. What to print-All pages in Range
         12. Save as C:\DPW32\dpsumm.pdf
         13. collate
         14. number of copies(1)
         15. Click on "Screen" 
         16. Click on "Display Conversion Status"
         17. Then "OK"
         18. After conversion status reaches "100%" nothing happens -screen does not change!
    Then I minimize DP screen and I go to Start menu 
         1. Click on Start
         2. Then "My Computer"
         3. Local Disk "C"
         4. Dpw32
         5. Look for "dpsumm" file with today's date
         6. Size of file says 0 KB and that's it!!!!
    In previous versions of DP (8 and 9)
    the PDF would open on the screen as soon as the Step 18 was finished, then I could save it with an identifying name to a different folder and use it as an attachment that a Donor could receive by e-mail.
    I hope I can get back to that because now I have to convert to "Word" (Which takes a long time)then from that I have to create PDF from Acrobat. too many steps ..... if I have 20-30 reports it's too cumbersome.
    Waiting for your suggestions,

  • Export to PDF not working

    Presses "Export to PDF" Submit Button (custom button) and pdf comes up (Grey) and throws error message
    Adobe reader cannot open RequisiitonDetails.pdf because it is either not a supported file type or the file has been damaged.....
    My Code:
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    try {         
    // Get the Data XML File as the XMLNode
    Serializable[] methodparam = {voname};
    //XMLNode xmlnode = (XMLNode)am.invokeMethod("getDataXML",methodparam);
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    OAViewObject vo = (OAViewObject)am.findViewObject(voname);
    XMLNode xmlnode;
    if (vo.isPreparedForExecution())
    xmlnode = (XMLNode)vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS);
    xmlnode.print(outputStream);
    System.out.println(outputStream.toString());
    else
    xmlnode = null;
    if (null != xmlnode){
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=RequisitionDetails.pdf";
    response.setHeader("Content-Disposition",contentDisposition);
    response.setContentType("application/pdf");
    xmlnode.print(outputStream);
    ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    //Generate the Excel Report
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    "XXX",
    "XXXX_ICX_REQ_SRCH_XTRACT",/*template_code,*/
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    // Write the Excel Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    //xlsFile.flush();
    //xlsFile.close();
    else {
    OAException extractErrMsg = new OAException("There is no data to export.",OAException.ERROR);
    pageContext.putDialogMessage(extractErrMsg);
    catch(Exception e) {
    response.setContentType("text/html");
    System.out.println("Error Export Data in pdf");
    throw new OAException(e.getMessage(), OAException.ERROR);
    Error Message
    [050712_052819574][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [050712_052819574][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [050712_052819574][][EXCEPTION] [DEBUG] [ICX_COOKIE_NAME]:[PCHEBSO1]
    [050712_052819574][][EXCEPTION] [DEBUG] [JDBC:processEscapes]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [050712_052819574][][EXCEPTION] [DEBUG] [APPL_SERVER_ID]:[BDF99B587C72A876E040980A985601FB23644546563679454296293043166890]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[100]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_DATE_LANGUAGE]:[AMERICAN]
    [050712_052819574][][EXCEPTION] [DEBUG] [ICX_SESSION_COOKIE_VALUE]:[LxKyqB6fKisXd4VSGypzth6X6c]
    [050712_052819574][][EXCEPTION] [DEBUG] [EMPLOYEE_ID]:[197133]
    [050712_052819574][][EXCEPTION] [DEBUG] [ICX_TRANSACTION_ID]:[-1]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RRRR]
    [050712_052819574][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[178]
    [050712_052819574][][EXCEPTION] [DEBUG] [LOGIN_ID]:[18817150]
    [050712_052819574][][EXCEPTION] [DEBUG] [DB_PORT]:[5025]
    [050712_052819574][][EXCEPTION] [DEBUG] [USER_ID]:[99136]
    [050712_052819574][][EXCEPTION] [DEBUG] [DISPLAY_LANGUAGE]:[US]
    [050712_052819574][][EXCEPTION] [DEBUG] [APPLICATION_ID]:[xxetfc.oracle.apps.icx.por.reqmgmt.server.ReqMgmtAMEx]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_NUMERIC_CHARACTERS]:[.,]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_LANGUAGE]:[AMERICAN]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [050712_052819574][][EXCEPTION] [DEBUG] [GUEST_USER_PWD]:[GUEST/ORACLE]
    [050712_052819574][][EXCEPTION] [DEBUG] [RESP_ID]:[53865]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_SORT]:[BINARY]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_PROFILE_VALIDATION_ENABLED]:[null]
    [050712_052819574][][EXCEPTION] [DEBUG] [FUNCTION_ID]:[-1]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [050712_052819574][][EXCEPTION] [DEBUG] [ICX_PV_SESSION_MODE]:[115P]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_LANG]:[null]
    [050712_052819574][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS=(PROTOCOL=tcp)(HOST=sitmisdb1w86m7.etrade.com)(PORT=5025)))(CONNECT_DATA=(SERVICE_NAME=PCHEBSO1)))]
    [050712_052819574][][EXCEPTION] [DEBUG] [MODULE_NAME_TAG]:[icx.por.reqmgmt.server.ReqMgmtAMEx]
    [050712_052819574][][EXCEPTION] [DEBUG] [FNDNAM]:[APPS]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_PROXY_USER]:[null]
    [050712_052819574][][EXCEPTION] [DEBUG] [TWO_TASK]:[PCHEBSO1]
    [050712_052819574][][EXCEPTION] [DEBUG] [APPS_JDBC_DRIVER_TYPE]:[THIN]
    [050712_052819574][][EXCEPTION] [DEBUG] [MODULE_TYPE_TAG]:[fwk]
    [050712_052819574][][EXCEPTION] [DEBUG] [DB_HOST]:[sitmisdb1w86m7.etrade.com]
    [050712_052819574][][EXCEPTION] [DEBUG] [DBC_FILE_PATH]:[C:\jdeveloper\jdevhome\jdev\dbc_files\secure\PCHEBSO1.dbc]
    [050712_052819574][][EXCEPTION] [DEBUG] [APPLICATION_NAME]:[Oracle iProcurement]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [050712_052819574][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [050712_052819574][][EXCEPTION] [DEBUG] [LANG_CODE]:[US]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[500]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [050712_052819574][][EXCEPTION] [DEBUG] [USER_NAME]:[ASHARMA2]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[5]
    [050712_052819574][][EXCEPTION] [DEBUG] [DB_NAME]:[null]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_CHARACTERSET]:[UTF8]
    [050712_052819574][][EXCEPTION] [DEBUG] [ORG_ID]:[240]
    [050712_052819574][][EXCEPTION] [DEBUG] [DB_ID]:[PCHEBSO1]
    [050712_052819574][][EXCEPTION] [DEBUG] [GWYUID]:[APPLSYSPUB/PUB]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [050712_052819574][][EXCEPTION] [DEBUG] [ICX_SESSION_ID]:[213276334]
    [050712_052819574][][EXCEPTION] [DEBUG] [JDBC:oracle.jdbc.maxCachedBufferSize]:[358400]
    [050712_052819574][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vendor]:[Sun Microsystems Inc.]
    [050712_052819574][][EXCEPTION] [DEBUG] [ajp.connection.listener.state]:[down]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.management.compiler]:[HotSpot Client Compiler]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.j2ee.container.version]:[10.1.3.3.0]
    [050712_052819574][][EXCEPTION] [DEBUG] [os.name]:[Windows XP]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[C:\jdev12_1_3\jdevbin\jdk\jre\lib\rt.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\i18n.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\sunrsasign.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\jsse.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\jce.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\charsets.jar;C:\jdev12_1_3\jdevbin\jdk\jre\classes]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.desktop]:[windows]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.5.0_05-b05]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.trusted.clients]:[*]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.security.jazn.config]:[C:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\jazn.xml]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.name]:[asharma2]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.language]:[en]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.naming.factory.initial]:[com.evermind.server.ApplicationInitialContextFactory]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.boot.library.path]:[C:\jdev12_1_3\jdevbin\jdk\jre\bin]
    [050712_052819574][][EXCEPTION] [DEBUG] [oc4j.jms.usePersistenceLockFiles]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.version]:[1.5.0_05]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.util.logging.manager]:[oracle.classloader.util.ApplicationLogManager]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.timezone]:[America/New_York]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.net.preferIPv4Stack]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.arch.data.model]:[32]
    [050712_052819574][][EXCEPTION] [DEBUG] [javax.rmi.CORBA.UtilClass]:[com.sun.corba.ee.impl.javax.rmi.CORBA.Util]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.endorsed.dirs]:[C:\jdev12_1_3\jdevbin\jdk\jre\lib\endorsed]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.cpu.isalist]:[]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.jnu.encoding]:[Cp1252]
    [050712_052819574][][EXCEPTION] [DEBUG] [file.encoding.pkg]:[sun.io]
    [050712_052819574][][EXCEPTION] [DEBUG] [DBCFILE]:[C:\jdeveloper\jdevhome\jdev\dbc_files\secure\PCHEBSO1.dbc]
    [050712_052819574][][EXCEPTION] [DEBUG] [file.separator]:[\]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.specification.name]:[Java Platform API Specification]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.class.version]:[49.0]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.country]:[US]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.home]:[C:\jdev12_1_3\jdevbin\jdk\jre]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.info]:[mixed mode]
    [050712_052819574][][EXCEPTION] [DEBUG] [os.version]:[5.1]
    [050712_052819574][][EXCEPTION] [DEBUG] [org.omg.CORBA.ORBSingletonClass]:[com.sun.corba.ee.impl.orb.ORBImpl]
    [050712_052819574][][EXCEPTION] [DEBUG] [path.separator]:[;]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.version]:[1.5.0_05-b05]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.variant]:[]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.protocol.handler.pkgs]:[oracle.apps.xdo.common.net.protocol|com.evermind.protocol]
    [050712_052819574][][EXCEPTION] [DEBUG] [checkForUpdates]:[adminClientOnly]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.awt.windows.WPrinterJob]
    [050712_052819574][][EXCEPTION] [DEBUG] [RUN_FROM_JDEV]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeLittle]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.sun.jts.pi.INTEROP_MODE]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [awt.toolkit]:[sun.awt.windows.WToolkit]
    [050712_052819574][][EXCEPTION] [DEBUG] [MetaObjectContext]:[oracle.adf.mds.jbo.JBODefManager]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_TOP]:[C:\jdeveloper\jdevhome\jdev\dbc_files\]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.j2ee.http.socket.timeout]:[500]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.ssl.port]:[5656]
    [050712_052819574][][EXCEPTION] [DEBUG] [JRAD_ELEMENT_LIST_PATH]:[C:\jdeveloper\jdevhome\jdev\myhtml\OA_HTML\jrad\]
    [050712_052819574][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[C:\jdeveloper\jdevhome\jdev\dbc_files\secure\PCHEBSO1.dbc]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.sun.CORBA.POA.ORBServerId]:[1000000]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.naming.factory.url.pkgs]:[oracle.oc4j.naming.url]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.home]:[C:\Documents and Settings\asharma2]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.specification.vendor]:[Sun Microsystems Inc.]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.home]:[C:\jdev12_1_3\jdevbin]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.dms.sensors]:[5]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.library.path]:[C:\jdev12_1_3\jdevbin\jdk\bin;.;C:\WINNT\system32;C:\WINNT;C:\DevSuiteHome_10g\jdk\jre\bin\classic;C:\DevSuiteHome_10g\jdk\jre\bin;C:\DevSuiteHome_10g\jdk\jre\bin\client;C:\DevSuiteHome_10g\jlib;C:\DevSuiteHome_10g\bin;C:\DevSuiteHome_10g\jre\1.4.2\bin\client;C:\DevSuiteHome_10g\jre\1.4.2\bin;C:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\OraHome_1\bin;C:\Program Files\Java\jre1.5.0_15\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Microsoft Application Virtualization Client;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\;C:\OraHome_1;C:\Program Files\QuickTime\QTSystem\]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vendor.url]:[http://java.sun.com/]
    [050712_052819574][][EXCEPTION] [DEBUG] [XDO_TOP]:[etrade/pkgs/linux/intel/oracle/appldev/apps/apps_st/appl/xdo/12.0.0]
    [050712_052819574][][EXCEPTION] [DEBUG] [javax.rmi.CORBA.StubClass]:[com.sun.corba.ee.impl.javax.rmi.CORBA.StubDelegateImpl]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.j2ee.dont.use.memory.archive]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.vendor]:[Sun Microsystems Inc.]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.runtime.name]:[Java(TM) 2 Runtime Environment, Standard Edition]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.class.path]:[C:\jdev12_1_3\jdevbin\jdk\jre\lib\rt.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\jsse.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\jce.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\charsets.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\ext\dnsns.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\ext\localedata.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\ext\sunjce_provider.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\ext\sunpkcs11.jar;C:\jdev12_1_3\jdevbin\j2ee\home\oc4j-api.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oc4j-unsupported-api.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\activation.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\mail.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\persistence.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\ejb30.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\ejb.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\javax77.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\javax88.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\servlet.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jms.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jta.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jacc-api.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\connector.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jmx_remote_api.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jax-qname-namespace.jar;C:\jdev12_1_3\jdevbin\webservices\lib\jaxr-api.jar;C:\jdev12_1_3\jdevbin\webservices\lib\jaxrpc-api.jar;C:\jdev12_1_3\jdevbin\webservices\lib\saaj-api.jar;C:\jdev12_1_3\jdevbin\webservices\lib\jws-api.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oc4j-internal.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oems-jms-oc4j.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oems-jms-client.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oems-jms-server.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oc4j-schemas.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\ojsp.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oc4j_orb.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\iiop_support.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\orbbase.jar;C:\jdev12_1_3\jdevbin\j2ee\home\iiop_gen_bin.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jmxcluster.jar;C:\jdev12_1_3\jdevbin\j2ee\home\jaccprovider.jar;C:\jdev12_1_3\jdevbin\javavm\lib\jasper.zip;C:\jdev12_1_3\jdevbin\j2ee\home\lib\adminclient.jar;C:\jdev12_1_3\jdevbin\opmn\lib\optic.jar;C:\jdev12_1_3\jdevbin\j2ee\home\jacc-spi.jar;C:\jdev12_1_3\jdevbin\j2ee\home\jazncore.jar;C:\jdev12_1_3\jdevbin\j2ee\home\jazn.jar;C:\jdev12_1_3\jdevbin\jlib\ospnego.jar;C:\jdev12_1_3\jdevbin\jlib\ldapjclnt10.jar;C:\jdev12_1_3\jdevbin\webservices\lib\wsserver.jar;C:\jdev12_1_3\jdevbin\webservices\lib\wsif.jar;C:\jdev12_1_3\jdevbin\webservices\lib\orawsmetadata.jar;C:\jdev12_1_3\jdevbin\webservices\lib\orajaxr.jar;C:\jdev12_1_3\jdevbin\jlib\jssl-1_1.jar;C:\jdev12_1_3\jdevbin\jlib\ojmisc.jar;C:\jdev12_1_3\jdevbin\toplink\jlib\toplink-oc4j.jar;C:\jdev12_1_3\jdevbin\diagnostics\lib\ojdl2.jar;C:\jdev12_1_3\jdevbin\xqs\lib\xqs-api.jar;C:\jdev12_1_3\jdevbin\xqs\lib\xds.jar;C:\jdev12_1_3\jdevbin\jdev\lib\jdev-oc4j-embedded.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\pcl.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\ext;C:\jdev12_1_3\jdevbin\lib\dmsapp.jar;C:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\applications\admin_ejb.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jdomorcl.jar;C:\jdev12_1_3\jdevbin\jlib\jsp-el-api.jar;C:\jdev12_1_3\jdevbin\jlib\commons-el.jar;C:\jdev12_1_3\jdevbin\jlib\oracle-el.jar;C:\jdev12_1_3\jdevbin\jlib\jewt4.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\regexp.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\share.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\uix2.jar;C:\jdev12_1_3\jdevbin\oaext\mds\lib\mdsrt.jar;C:\jdev12_1_3\jdevbin\oaext\lib\mdsdt.jar;C:\jdev12_1_3\jdevbin\oaext\lib\oamdsdt.jar;C:\jdev12_1_3\jdevbin\javacache\lib\cache.jar;C:\jdev12_1_3\jdevbin\lib\xschema.jar;C:\jdev12_1_3\jdevbin\BC4J\lib;C:\jdev12_1_3\jdevbin\BC4J\lib\adfbinding.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfcm.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfm.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfmweb.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfs-jazn.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfs.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfshare.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jct.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jctejb.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jimdomains.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jmt.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jmtejb.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jsyscat.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\collections.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\fwkjbo.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\fwk.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\atg.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\collections.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\iasjoc.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\rosettaRt.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\portalFlexComps.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\svc.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\pat.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\concurrent.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\oamMaintMode.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\fwkCabo.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\wsrp-container.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\pdkjava.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\ptlshare.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\xml.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\wsrp-container-types.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\jaxb-impl.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\jaxb-libs.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\jazn.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\jazncore.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\biamlocal.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bipres.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bicmn.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bidatasvr.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bidataclt.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bidatacmn.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\biext.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bicmn-nls.zip;C:\jdev12_1_3\jdevbin\bibeans\lib\bipres-nls.zip;C:\jdev12_1_3\jdevbin\bibeans\lib\bidata-nls.zip;C:\jdev12_1_3\jdevbin\oaext\config\oac\oacfilter.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\scheduler.jar;C:\jdev12_1_3\jdevbin\jdev\lib\jdev-rt.jar;C:\jdev12_1_3\jdevbin\jdev\lib\ojc.jar;C:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\connectors\datasources\datasources\datasources.jar;C:\jdev12_1_3\jdevbin\diagnostics\lib\ojdl.jar;C:\jdev12_1_3\jdevbin\lib\dms.jar;C:\jdev12_1_3\jdevbin\jdbc\lib\ojdbc14dms.jar;C:\jdev12_1_3\jdevbin\opmn\lib\ons.jar;C:\jdev12_1_3\jdevbin\jdbc\lib\ocrs12.jar;C:\jdev12_1_3\jdevbin\rdbms\jlib\aqapi.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\ojms-provider.jar;C:\jdev12_1_3\jdevbin\jdbc\lib\orai18n.jar;C:\jdev12_1_3\jdevbin\lib\xmlparserv2.jar;C:\jdev12_1_3\jdevbin\lib\xml.jar;C:\jdev12_1_3\jdevbin\lib\xmlmesg.jar;C:\jdev12_1_3\jdevbin\lib\xsu12.jar;C:\jdev12_1_3\jdevbin\lib\xquery.jar;C:\jdev12_1_3\jdevbin\jlib\osdt_core.jar;C:\jdev12_1_3\jdevbin\jlib\osdt_cert.jar;C:\jdev12_1_3\jdevbin\jlib\osdt_xmlsec.jar;C:\jdev12_1_3\jdevbin\jlib\osdt_wss.jar;C:\jdev12_1_3\jdevbin\jlib\osdt_saml.jar;C:\jdev12_1_3\jdevbin\jlib\ojpse.jar;C:\jdev12_1_3\jdevbin\jlib\oraclepki.jar;C:\jdev12_1_3\jdevbin\toplink\jlib\toplink.jar;C:\jdev12_1_3\jdevbin\toplink\jlib\antlr.jar;C:\jdev12_1_3\jdevbin\toplink\jlib\toplink-essentials.jar;C:\jdev12_1_3\jdevbin\webservices\lib\wsclient.jar;C:\jdev12_1_3\jdevbin\webservices\lib\orasaaj.jar;C:\jdev12_1_3\jdevbin\webservices\lib\xsdlib.jar;C:\jdev12_1_3\jdevbin\webservices\lib\mdds.jar;C:\jdev12_1_3\jdevbin\webservices\lib\relaxngDatatype.jar;C:\jdev12_1_3\jdevbin\webservices\lib\soap.jar;C:\jdev12_1_3\jdevbin\sqlj\lib\runtime12.jar;C:\jdev12_1_3\jdevbin\sqlj\lib\translator.jar;C:\jdev12_1_3\jdevbin\webservices\lib\orawsdl.jar;C:\jdev12_1_3\jdevbin\j2ee\home\applib;C:\jdev12_1_3\jdevbin\j2ee\home\jsp\lib\taglib;C:\jdev12_1_3\jdevbin\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\jdev12_1_3\jdevbin\lib\dsv2.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\http_client.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jgroups-core.jar;C:\jdeveloper\jdevhome\jdev\myhtml\OA_HTML;C:\jdeveloper\jdevhome\jdev\myclasses;C:\jdev12_1_3\jdevbin\jlib\jdev-cm.jar;C:\jdev12_1_3\jdevbin\BC4J\jlib\bc4jhtml.jar;C:\jdev12_1_3\jdevbin\BC4J\jlib\datatags.jar;C:\jdev12_1_3\jdevbin\BC4J\jlib\bc4juixtags.jar;C:\jdev12_1_3\jdevbin\BC4J\jlib\graphtags.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\wsp.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\diagnostics.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\svctester.jar]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.j2ee.home]:[C:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.application.environment]:[development]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [050712_052819574][][EXCEPTION] [DEBUG] [JRAD_XML_PATH]:[C:\jdeveloper\jdevhome\jdev\myclasses\JRADXML;C:\jdeveloper\jdevhome\jdev\myprojects;C:\jdev12_1_3\jdevbin\jdev\oamdsxml\fwk]
    [050712_052819574][][EXCEPTION] [DEBUG] [javax.rmi.CORBA.PortableRemoteObjectClass]:[com.sun.corba.ee.impl.javax.rmi.PortableRemoteObject]
    [050712_052819574][][EXCEPTION] [DEBUG] [org.omg.PortableInterceptor.ORBInitializerClass.oracle.oc4j.corba.iiop.server.IIOPInitializer]:[NO_VALUE]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.cpu.endian]:[little]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.j2ee.container.name]:[Oracle Containers for J2EE 10g (10.1.3.3.0) ]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.os.patch.level]:[Service Pack 3]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.io.tmpdir]:[C:\DOCUME~1\asharma2\LOCALS~1\Temp\]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.sun.jts.pi.CLIENT_POLICY_CHECKING]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://java.sun.com/cgi-bin/bugreport.cgi]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.ssl.mutual.auth.port]:[5657]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[200]
    [050712_052819574][][EXCEPTION] [DEBUG] [os.arch]:[x86]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.Win32GraphicsEnvironment]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.ext.dirs]:[C:\jdev12_1_3\jdevbin\jdk\jre\lib\ext]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.dir]:[C:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config]
    [050712_052819574][][EXCEPTION] [DEBUG] [CACHENODBINIT]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [line.separator]:[
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Client VM]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.sun.CORBA.connection.ORBSocketFactoryClass]:[oracle.oc4j.corba.iiop.IIOPSSLSocketFactory]
    [050712_052819574][][EXCEPTION] [DEBUG] [javax.management.builder.initial]:[oracle.oc4j.admin.jmx.server.Oc4jMBeanServerBuilder]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.use.ssl]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [org.omg.CORBA.ORBClass]:[com.sun.corba.ee.impl.orb.ORBImpl]
    [050712_052819574][][EXCEPTION] [DEBUG] [file.encoding]:[Cp1252]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.specification.version]:[1.5]
    12/05/07 17:28:20 Error Export Data in pdf

    - RTF Processor Engine PROBLEM IN CREATE XSL FILE
    answered

  • Export to Pdf Not Working - Blank Pages [Solved]

    Peace all!
    I've been having this problem about some time now. Any export to pdf produces a pdf with the correct number of pages but they are all blank! Tried fiddling with the options to no avail. Also tried setting the options to use openoffice dialogs.
    In an attempt to try to find some log of errors, I started writer from the console with soffice -writer and used the export pdf function but no errors are spitted out. I'm stumped...
    Version 3.0.1
    Thanks in advance!l
    Last edited by onguarde (2009-05-11 14:14:38)

    http://www.oooforum.org/forum/viewtopic.phtml?t=83464
    Ok, I managed to solve this by deleting the old .openoffice config folder and starting afresh. Not sure what's messed up though but the folder has been used since OO version 2.

  • Pages export to .pdf not working -- missing images.

    When I export my finished Pages doc to .pdf, it didn't export all the images. Out of 10 images, only two exported. Pages then replaced the other images with those two. Why is this happening and how can I fix it?
    This has happened before. In this case, all the images were pulled from iPhoto on the iMac. In other cases, the images were pulled from a server shared by multiple users.

    Either some of them have the same name or they are to big in Mb for your Pages to convert. It doesn't matter where they come from, they are all in the saved document. Downsize them before you add them to the Pages document.

  • Some PDFs not working in Preview. Mac created PDFS work but windows created PDFS dont

    Some PDFs not working in Preview. I installed adobe reader and then deleted it because the software was aweful and PDFs have been haveing issues ever since. I can open up PDFs created on my Mac in preview just fine...
    But when I try and open a PDF created on a windows computer it says:
    "Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting http://www.adobe.com/products/acrobat/readstep2.html.
    For more assistance with Adobe Reader visit http://www.adobe.com/support/products/ acrreader.html.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries. "
    I am not sure why where the PDF was created would make a difference but couldnt help but notice that was the difference between the PDF files that work and the ones that give that message. I can view the PDFs on a windows computer just fine and never had issues untill adobe, it seems to have messed up PDFs on my Mac and I am so frustrated with them. I have searched my computer for any remaining adobe files, deleted them and restarted my computer but I am still getting this message.

    Uninstall Adobe Reader's plug-in.
    Remove the following two files from  /Library/Internet Plug-Ins/:
    AdobePDFViewer.plugin
    AdobePDFViewerNPAPI.plugin
    Open Safari Preferences > Extensions. Do you see AdobePDFViewer? If yes. disable.
    Log out/in and test.
    Another option is to download and install this plugin. Schubert|it PDF Browser Plugin . PDF Browser Plugin 2 is free for not-for-profit activities if used at home or at educational institutions.
    http://www.schubert-it.com/pluginpdf/

  • Export to Excel not Working

    Hi
    I'm using JDeveloper 11g TP4 and in Firefox 3.X export to excel not working
    Regards,
    JavaDeVeLoper

    Java developer,
    Firefox 3.x is not one of the documented supported browsers for 11g TP4 (FF 2.0.x and IE 7 are).
    I'm assuming by "export to excel," you are talking about an adf faces table?
    John

  • CS4 "Save as Adobe PDF" not working in Mountain Lion

    CS4 Save as Adobe PDF not working in Mountain Lion
    Just bought a new Mac with mountain lion, installed CS4 design premium twice trying to fix this. When you go to "print" then "Save as Adobe PDF" the process fails with a pop-up saying "An error occurred while saving the PDF file". I can still do the standard "Save as PDF" - but that usually results in a file size 10x larger than Save as Adobe PDF so it won't work for me; I need the small file sizes of Save as Adobe PDF.
    When I go to Help > Repair Acrobat Installation it seems to be recognizing a repair needed with Adobe PDF Printer (see screenshot below); but when I go through the repair nothing changes it still won't work.
    Any help is much appreciated!

    "Save As Adobe PDF" works fine in Snow Leopard.
    Thanks for the link, but this is no help - I already have "Save As Adobe PDF" on the menu - the problem is when I click that it errors out...
    I just think its sad that Adobe charges people $2000 and provides zero support for future updates; when I buy an iMac for half that amount of money or an iPhone I get operating system support and bug fix downloads to deal with the latest internet advances for years to come - but Adobe apparently takes your money and says sayonara! Is it really that hard to provide updates on $2000 worth of software for say 24 months??

  • Export vCard is not working on Chrome; on Chrome Version 40.0.2214.93 m; function works on Mozilaa and IE.

    Export vCard is not working on Chrome; on Chrome Version 40.0.2214.93 m; function works on Mozilaa and IE; is anyone else seeing this same issue?

    Update; my OS is Windows 7 Pro 64-bit v1.08.00.AF B09 SP1.   Same issue reported (by 7 others) at => https://discussions.apple.com/thread/6779059

  • Indesign cc 2014 export to spreads not working

    Hello
    I have a book on indesign 36 pages, when I export to pdf (not interactive) I click the option spreads, low quality because it is a proof.
    my problem is that some pages are exported as spreads but others are not being exported as spreads
    help please!!!
    thank you

    If there are multiple pages within any individual file in your book, those can be output as spreads, but you cannot print a spread made from the last page of file A and the first page of file B even though they are together in the finished book.
    If you need to have spreads, I'd export the entire book to PDF (as single pages), then place the PDF into a new .indd file using Scott Zanelli's script (InDesignSecrets » Blog Archive » Zanelli Releases MultiPageImporter for Importing both PDF and INDD Files) and print your spreads from that, but really, do you need spreads for a proof?

  • Adobe PDF not working in N95

    in my nokia N95 i m not able to open pdf files last 20 days i think adobe PDF not working properly i want to repair it but how i donn know? can anybody help me to get rid of this prob

    I do not think that PDF Maker has been updated for IE9 yet. IE9 is a recent release and Adobe does not generally work on the final software until the release. They also have to be sure it still works with other products. In the meantime, try just printing to the Adobe PDF printer or opening the URL in Acrobat directly.

  • PDF export to word not working, conversion shows text as code.

    I am working with Adobe acrobat pro, and cannot seem to export my PDf file without the text resulting in incomprehensible code. The images in the PDf convert beautifully, however.
    I have followed the directions listed on the website, and have enable ORC, but it has not helped.
    PDF file info:
    PDF Producer: Mac OSX 10/9.5 Quartz PDFContext
    PDF Version: 1.4 (Acrobat 5.x)
    File size: 1.29 MB
    Tagged PDF: No
    Fast Web View: No
    Security: None
    xmpCore properties: xmp:Creator Tool: Microsoft word
    Illustrator: StartupProfile: Print

    Could you post the PDF or a page of it so that we can try it. I actually still have AA5 on one machine, though everything else is more current. If you can also post your DOC result it would help too. You can post on Acrobat.com or dropbox and leave the link here.

  • Exporting from Pages Mavericks to pdf not working

    I want to export my Pages Mavericks document to a pdf. It's not working. Everytime I do it, a box comes that says, it's not possible. What is going wrong? Why can't I export to pdf?

    Either some of them have the same name or they are to big in Mb for your Pages to convert. It doesn't matter where they come from, they are all in the saved document. Downsize them before you add them to the Pages document.

  • Framemaker 12, Save as PDF and Print PDF Not working...

    We are using Framemaker 12 version 12.0.3.424, it tells me it is the latest patch level, and the issue we are having is that it won't either save as or print to PDF, both options are failing, they start up and then go to a certain point and come up as "not responding" and then just stops. I have managed to get a postscript file on two occasions that got 141 pages out of 1400+. I have gone through a bunch of the threads here and made sure that I have changed Adobe PDF printer to the default and deselected the box about using the specific fonts, still nothing. We are also using Adobe Acrobat XI Standard, and that is now up to the latest patch level as well. I am running out of things to try in order to get this full book put together and ready for delivery. If anyone has any additional things to try that would be great. One thing I feel might be an issue is that some of the files seem to be using a different font, "Times" vs. "Times New Roman", Frame automatically substitutes it, so was wondering if that is the issue.
    Any and all assistance will be great on this.

    > .ps file was running about 57,000kb
    Then you aren't anywhere near a 32-bit file size constraint.
    > We are running 64 bit machines here, though the program I think is the 32 bit version.
    Pretty much all CPUs are 64-bit now. What matters is the OS version, and Win7 and 8 installs are commonly 64-bit these days. FM may not even have specific 32- or 64-bit installs. I've tested FM9 on Win7/64 for file size limits, and it sails past 4GB with no problems.
    > ... stops everytime on one particular page, that has was is an OLE linked .vsd file in it.
    As if the world needed another reason to never ever use OLE for anything anywhere, esp. in Framemaker. Export that object in a stable graphical file format (PDF should work). Import that.

  • Indesign Exported into PDF - not all images are showing.. !!!!

    I've created a DL Phamplet in Indesign, using images from Photoshop (All converted to CMYK,PSD and flattened and used Illustrator files for other objects with the extension (filename).ai afterwards.)
    I don't understand why my particular acrobat doesn't show the complete logo. This doesn't occur on two of my the computers at work PC and Mac, but it occurs at my manager's computer and once on my computer. I've outline all the fonts and images etc to ensure everything is in order. Everything is ungrouped as well to ensure all is outline.
    View problem here
    http://img291.imageshack.us/my.php?image=picture1yp2.jpg
    I've even exported the pdf from the computer that had no problem viewing the missing part of the logo - however when previewing it on my computer, the logo seems to be missing still.
    I think its a previewing problem of some sort but not sure. Do I need a certain plugin - I've updated my software and I haven't reinstalled the software. Please assist. Many thanks.
    Other information that may assist?
    Working on Mac OS X Version 10.4.11
    CS3
    Acrobal Professional 8

    The white logo is undoubtedly set to overprint. Go back into Illustrator
    and fix it.
    Bob

Maybe you are looking for