PDF Generator multithreading

Hello,
One question about windows environment for LiveCycle PDF Generator 9.0.0.2. We have installed this module on Windows 2008 Server/JBoss 4.2.1 machine. Now it doesn’t convert MS word documents in
multithreaded mode. All settings are done exactly as described in installation manual. In admin console added 12 windows users, all dialogs are dismissed for each user…
Does it help if we install Windows 2008 Server in terminal mode?
Does it make any difference for PDF Generator?

It seems that you have not given proper input/output parameter mappings:
Verify your watch folder settings as mentioned here -http://help.adobe.com/en_US/livecycle/9.0/adminHelp/admin.htm?content=000106.html
Also see "Using a watched folder start point" @ http://www.adobe.com/devnet/livecycle/videotraining.html
~ Varun

Similar Messages

  • How can I open a PDF generated by Distiller, in Designer?

    When I open the form in Designer, it prompts me to enter a password. Before I go back to the client, I wanted to know if a pdf generated by Distiller can be opened and edited in Designer?
    What is distiller used for?
    Aditya

    Welcome to Apple Support Communities. We're all users here.
    Depending upon your version of OS X and your version of Safari, as detailed in the Adobe help document links below, Adobe pdf documents created with the latest releases may require an (updated free) Adobe plug-in for Safari, or (free) Adobe Reader in order to display properly.
    http://helpx.adobe.com/x-productkb/multi/safari-5-1-incompatible-reader.html
    http://www.adobe.com/support/downloads/product.jsp?platform=macintosh&product=10
    I encountered the problem recently when attempting to view documents from a financial institution.

  • Smartforms: Appending Spool o/p(report)  to  PDF generated by SSF

    Dear Murugesh
    I have attached the code for Appending Spool o/p(report)  to  PDF generated by SSF below
      Please suggest as i will have 2 finish by this SAT.
    (Hint : Under 1 SOrdr there may be several line items==>
      The material with ref 2 every line-item either may be configurable(ZPL3) or nonconfigurable(ZA3C)) .
    *ENCLOSER TO PACKING LIST
    SELECT VBELN POSNR INTO CORRESPONDING FIELDS OF TABLE T_VBAP
                        FROM  VBAP
                        WHERE VBELN = SSORD.
    *For capturing the o/p pages from ZPL3 and consolidating into table
    *T_OTF to get single PDF
      LOOP AT T_VBAP INTO T_VBAP.
        ITNO = T_VBAP-POSNR.
      SELECT SINGLE * FROM ZPP_PLCMH WHERE VBELN = SSORD
                                     AND   POSNR = ITNO.
       IF SY-SUBRC EQ 0.
         SET PARAMETER  ID: 'AUN' FIELD SSORD ,
                            'APO' FIELD ITNO.
         CALL TRANSACTION 'ZPCE' AND SKIP FIRST SCREEN.
         IMPORT A = T_OTF2 FROM  MEMORY ID 'MEMID'.
         LOOP AT T_OTF2  INTO T_OTF2.
           APPEND T_OTF2 TO T_OTF.
         ENDLOOP.
         REFRESH T_OTF2.
       ELSE.
    *For capturing the o/p pages from ZA3C and Appending
    *at the end of the PDF file just created by the above code
        SELECT SINGLE * FROM ZPLH WHERE VBELN = SSORD
                                  AND   POSNR = ITNO.
         IF SY-SUBRC EQ 0.
           SET PARAMETER  ID: 'AUN' FIELD SSORD,
                            : 'APO' FIELD ITNO.
           CALL TRANSACTION 'ZPNE' AND SKIP FIRST SCREEN.
           IMPORT B = SPOOL_ID  FROM  MEMORY ID 'MEMID2'.
           CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
             EXPORTING
               SRC_SPOOLID                    = SPOOL_ID
               NO_DIALOG                      = ''
               DST_DEVICE                     = E_DEVTYPE
              PDF_DESTINATION                = 'LOHP'
            IMPORTING
               PDF_BYTECOUNT                  = BTC
             PDF_SPOOLID                    =
             LIST_PAGECOUNT                 =
             BTC_JOBNAME                    =
             BTC_JOBCOUNT                   =
            TABLES
               PDF                            = T_SPOOL_2_PDF
           EXCEPTIONS
             ERR_NO_ABAP_SPOOLJOB           = 1
             ERR_NO_SPOOLJOB                = 2
             ERR_NO_PERMISSION              = 3
             ERR_CONV_NOT_POSSIBLE          = 4
             ERR_BAD_DESTDEVICE             = 5
             USER_CANCELLED                 = 6
             ERR_SPOOLERROR                 = 7
             ERR_TEMSEERROR                 = 8
             ERR_BTCJOB_OPEN_FAILED         = 9
             ERR_BTCJOB_SUBMIT_FAILED       = 10
             ERR_BTCJOB_CLOSE_FAILED        = 11
             OTHERS                         = 12
           IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
           ENDIF.
    ELSE.
           TEXT02 = ITNO.
           MESSAGE I014(ZQOTBANK) WITH TEXT02.
       ENDIF.
    ENDIF.
    ENDLOOP.
    CALL FUNCTION 'CONVERT_OTF_2_PDF'
      EXPORTING
        USE_OTF_MC_CMD               = 'X'
      ARCHIVE_INDEX                =
    IMPORTING
        BIN_FILESIZE                 = BIN_FILESIZE
    TABLES
        OTF                          = T_OTF
        DOCTAB_ARCHIVE               = T_DOC
        LINES                        = T_LINES
    EXCEPTIONS
       ERR_CONV_NOT_POSSIBLE        = 1
       ERR_OTF_MC_NOENDMARKER       = 2
       OTHERS                       = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        BIN_FILESIZE                    = BIN_FILESIZE
        FILENAME                        = 'C:\SD6.pdf'
        FILETYPE                        = 'BIN'
        APPEND                          = 'X'
      WRITE_FIELD_SEPARATOR           = ' '
      HEADER                          = '00'
      TRUNC_TRAILING_BLANKS           = ' '
      WRITE_LF                        = 'X'
      COL_SELECT                      = ' '
      COL_SELECT_MASK                 = ' '
      DAT_MODE                        = ' '
      CONFIRM_OVERWRITE               = ' '
      NO_AUTH_CHECK                   = ' '
      CODEPAGE                        = ' '
      IGNORE_CERR                     = ABAP_TRUE
      REPLACEMENT                     = '#'
      WRITE_BOM                       = ' '
      TRUNC_TRAILING_BLANKS_EOL       = 'X'
    IMPORTING
        FILELENGTH                      = BIN_FILESIZE
      TABLES
        DATA_TAB                        = T_LINES
      FIELDNAMES                      =
    EXCEPTIONS
      FILE_WRITE_ERROR                = 1
      NO_BATCH                        = 2
      GUI_REFUSE_FILETRANSFER         = 3
      INVALID_TYPE                    = 4
      NO_AUTHORITY                    = 5
      UNKNOWN_ERROR                   = 6
      HEADER_NOT_ALLOWED              = 7
      SEPARATOR_NOT_ALLOWED           = 8
      FILESIZE_NOT_ALLOWED            = 9
      HEADER_TOO_LONG                 = 10
      DP_ERROR_CREATE                 = 11
      DP_ERROR_SEND                   = 12
      DP_ERROR_WRITE                  = 13
      UNKNOWN_DP_ERROR                = 14
      ACCESS_DENIED                   = 15
      DP_OUT_OF_MEMORY                = 16
      DISK_FULL                       = 17
      DP_TIMEOUT                      = 18
      FILE_NOT_FOUND                  = 19
      DATAPROVIDER_EXCEPTION          = 20
      CONTROL_FLUSH_ERROR             = 21
      OTHERS                          = 22
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanx
    Moni
    Message was edited by: md monirujjaman

    Hello,
    Can you explain the problem in detail plz.
    I do see that the logic which was proposed is implemented in code.
    please check at various places, in run time the following points:
    1. Spool ID exported into ABAP Memory.
    2. Contents of the Main OTF IntTab.
    3. Conversion of the Spool to PFD.Check whether SUBRC = 0. <b>Un-comment all the Exceptions in your FMs where-ever you make a call in your program.</b>
       If this conversion of Spool to PDF is successful, you can choose "Append" option from the popup.
    Hope this helps you. Or if you have any specific query let me know.
    Regards, Murugesh AS

  • How many Licenses of Acrobat Professional do I need for Adobe LC PDF Generator

    Hi,
    At our customer site we have purchased 6 licenses of Adobe LiveCycle PDF Generator and have recieved a license file with the keys for Adobe LiveCycle PDF Generator and Adobe Acrobat Professional. We bought the license from a reseller of the product. We understand that the Adobe LiveCycle PDF Generator is a server based software and needs 1 license per CPU. Each of our server (Dev, Val & Prod) have 2 CPU's so we have sufficient licenses (6). We are under the impression that this would suffice. How ever we are not sure on how many licenses we need for Acrobat Professional.
    Here is a brief description of the way we would use Adobe LiveCycle PDF Generator. We are deploying a PLM system and one of the requirement is to render Word documents to PDF so we are using PDF Generator for this capability. On our Adobe servers we will install Microsoft Word, Acrobat Professional V9 Extended and the Adobe Livecycle PDF Generator. We will have around 150 users for the PLM system being deployed. The PLM system is a Web based system which means the PLM application server will be running on a Solaris server in our case. As part of the workflows in the PLM system, at the end of the workflow process, the PLM server would trigger a request to the Adobe server to convert the word document to PDF. The Adobe server processess the request and returns the PDF file that gets generated.
    Based on the above usage of the system how many licenses of Acrobat Professional do we need? We will be installing Acrobat only on the server where we install the Livecycle PDF Generator. We had a call with our purchasing person today and she cautioned us that for Adobe Acrobat Professional we might need 1 license per user of the PLM system. She has asked us to check this with the Vendor of the product. Somehow I don't think it makes sense to purchase so many Acrobat Professional licenses even though we install only once.
    So can someone tell me How does the licensing for Adobe Livecycle PDF Generator work? How many Acrobat Professional licenses we actually need? Is it based on the number of users in the system that is triggering the request? Appreciate your response on this.
    Regards,
    Ragha

    You really should talk to your Adobe Sales Rep about this.  There are all kinds of special deals, licenses and such for customers using LiveCycle.  (For instance the license for PDFG may include Acrobat licenses for certain uses).

  • Error in opening PDF generated through HAP_DOCUMENT(ESS/MSS)

    Hi Experts,
    User is getting an error while opening the PDF generated through "Print" functionality of appraisal document(HAP_Document).
    There is a problem i'am facing in this BSP's,when i click on PRINT after creating Appraisal,it will ask me to either open or save in pdf.
    But when i open or save it and open it is giving me this message in Adobe
    "Acrobat could not open u2018webforms.pdfu2019 because it is either not a supported file type or because the file has been corrupted (for example, it was sent as an email attachment and wasnu2019t correctly decoded).
    To create an Adobe PDF document, go to the source application. Then print the document to Adobe PDF."
    Any body please guide me with a solution.
    With Regards,
    Surender Dahiya

    Hello Surender,
    there may have been connection problems to your content repository when you tried to view this file. I would also recommend that you apply the latest version of the Acrobat Reader. I would recommend that you run a
    trace on the RFC destination to your archive and see what errors are reported when this error occurs again.
    Best Regards,
    Deepak..

  • PDF Generator on Small Business Server 2008

    Hi,
    does anybody know if it is possible to run PDF Generator + MS Office 2007 on Small Business Server 2008? One client of mine asked me to install it, but I am unable to make it work.
    Thanks,
    --- Jaroslav

    Jasmin,
    well, this is true. I know PDF Generator works on Windows XP and it is also unsupported. I have seen PDF Generator works on Windows 2008 Server and it is also unsupported. If there is somebody here having PDF Generator working on SBS 2008, please let me know.
    If I knew it works, I would spend time to make it working for the customer. If I know it don't work, I will not waste the time.
    --- Jaroslav

  • PDF Generator ES: Monochrome image DPI

    Has anybody had any issues with DPI settings being overridden in output from PDF Generator ES?
    We're passing 200dpi TIFF files in, and getting out PDF files with a DPI of 72 (tested by exporting to TIFF from the PDF) but containing the same number of pixels. The result is the page size is about 2.78 times as large as the original TIFF image.
    Right-click conversion to PDF using Acrobat on the server produces a file with the correct DPI (and therefore page size).
    I did look through the exported PDFG config files, and noticed this:
    > /MonoImageResolution 72
    But this seems to be a base operand for other settings (e.g. thresholds for mono image conversions) and changing to 200 seems to have no effect. Have reverted back to defaults now.
    Converting the TIFF into a PS file then passing that to PDFG gives the correct DPI/page size. Also the same TIFF files come out correctly on PDFG 7.2.
    Putting together a case for Adobe, but asking here in case anyone else has come across this.
    Thanks in advance for all input on the matter!

    I've raised the issue with Adobe and been told that a fix is on the way. If you encounter this same problem and you have a support and maintenance agreement, contact Enterprise Support and they will be able to assist.

  • Reader X does not display drawing in PDF generated with LaTeX

    I have a quite large PDF generated by pdfTeX, Version 3.1415926-1.40.11 which contains also XY-pic drawings rendered with Xy-pic version 3.8.2, PDF driver v.1.4.
    One drawing does not display correctly in Adobe Reader X. Neither on Windows, neither on Mac. It does display correctly with following programs:
    Preview on Mac OS X 10.5 and 10.6
    Adobe Reader 9.x
    Skim (skim-app.sf.net).
    When I open this document with Adobe Reader X I get following error message when I hit page 58:
    "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem".
    Where does one report rendering problems?
    Damjan

    See [https://support.mozilla.com/en-US/kb/Opening%20PDF%20files%20within%20Firefox Opening PDF files within Firefox]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • How to crop pages using Adobe LiveCycle ES2 PDF Generator and Acrobat 9.2 Pro Extended

    Hi all,
    I'm evaluating the possibilities of Adobe LiveCycle ES2.0 PDF Generator in order to convert on the fly (programmatically) MS Office Documents and Visio drawings into PDF files.
    I'm able to trigger this process using the Webservices API (from within C#). However when generating the PDF files in this way, each and every PDF file has a lot of white margins around it as it is generated as an 8x11 inch page.
    I have been looking in ways to crop these white margins from around the information, so that the PDF content is only showing the actual content (in order to be used as an image).
    I found a way of doing this manually by opening the generated PDF file of LiveCycle in Acrobat 9.2 Pro Extended and using the Document > Crop Pages... option.
    So my question is: Can this be done programmatically using Adobe LiveCycle ES (and/or API functions of the Acrobat tool).
    The envisioned solution would run on a server (without interaction/monitoring requirements by a human).
    Any input about this is highly appreciated.
    Kind Regards,
    Raf
    Raf Snijders

    Hi all,
    I'm evaluating the possibilities of Adobe LiveCycle ES2.0 PDF Generator in order to convert on the fly (programmatically) MS Office Documents and Visio drawings into PDF files.
    I'm able to trigger this process using the Webservices API (from within C#). However when generating the PDF files in this way, each and every PDF file has a lot of white margins around it as it is generated as an 8x11 inch page.
    I have been looking in ways to crop these white margins from around the information, so that the PDF content is only showing the actual content (in order to be used as an image).
    I found a way of doing this manually by opening the generated PDF file of LiveCycle in Acrobat 9.2 Pro Extended and using the Document > Crop Pages... option.
    So my question is: Can this be done programmatically using Adobe LiveCycle ES (and/or API functions of the Acrobat tool).
    The envisioned solution would run on a server (without interaction/monitoring requirements by a human).
    Any input about this is highly appreciated.
    Kind Regards,
    Raf
    Raf Snijders

  • Acrobat Pro Extended 9 with Adobe LiveCycle PDF Generator 8.2.1. This Is Work ?

    Hi
    I’m having problems to get LCES PDF-generator.
    After install Adobe LiveCycle PDF Generator  8.2.1 and Acrobat Professional 8.1.5 all work perfect.
    The Question is - "Adobe LiveCycle PDF Generator 8.2.1  with  Acrobat Pro Extended 9 NOT WORK. Because ?. "
    Thank you.

    2009-07-02 03:01:00,042 INFO  [org.quartz.core.JobRunShell] Job QUARTZ_JOBGROUP_IDP.DIRSYNC_JOB threw a JobExecutionException:
    org.quartz.JobExecutionException: A full directory sync initiated through a cron setting or a user-initiated `Sync Now' action in the web console failed to start due to some other running job. This exception indicates that the full directory sync will be rescheduled to run as soon as possible.
    at com.adobe.idp.um.scheduler.DirectorySyncJob.executeSyncInitiate(DirectorySyncJob.java:209 )
    at com.adobe.idp.um.scheduler.DirectorySyncJob.execute(DirectorySyncJob.java:101)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    2009-07-02 12:10:15,718 INFO  [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-000-
    Job ID for the submitted createPDF job =ATI-2.docd4b89c-9d0f9f-1b5d8c-ed89df-455685-1d5e35
    2009-07-02 12:10:15,780 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-024-ATI-2.doc: Time Job Submitted: 02/07/09 12:10
    2009-07-02 12:10:15,843 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-021-ATI-2.doc: PDF Settings Used: pdfg Standard 8012
    2009-07-02 12:10:15,843 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-022-ATI-2.doc: Security Settings Used: No Security
    2009-07-02 12:10:15,843 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-023-ATI-2.doc: FileType Settings Used: Standard
    2009-07-02 12:10:15,843 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-017-ATI-2.doc: Job Submitted by User: administrator
    2009-07-02 12:10:15,968 INFO  [com.adobe.native2pdf.bmc.WordToPDFConverter] ALC-PDG-001-001-Begin processing job : C:\Documents and Settings\_task-scheduler\Local Settings\Temp\pdfg-_task-scheduler\79\2e3f-d6e58d-d9a0c6-60b470-52417b-2db656\native-in.d oc
    2009-07-02 12:13:05,739 INFO  [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-000-
    Job ID for the submitted createPDF job =FORMUlÀRIO DE HORA EXTRA.doc8c9547-9e9a42-9e69c7-7ea799-40b767-eb4104
    2009-07-02 12:13:05,755 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-024-FORMUlÀRIO DE HORA EXTRA.doc: Time Job Submitted: 02/07/09 12:13
    2009-07-02 12:13:05,770 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-021-FORMUlÀRIO DE HORA EXTRA.doc: PDF Settings Used: pdfg Standard 8013
    2009-07-02 12:13:05,770 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-022-FORMUlÀRIO DE HORA EXTRA.doc: Security Settings Used: No Security
    2009-07-02 12:13:05,770 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-023-FORMUlÀRIO DE HORA EXTRA.doc: FileType Settings Used: Standard
    2009-07-02 12:13:05,770 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-017-FORMUlÀRIO DE HORA EXTRA.doc: Job Submitted by User: administrator
    2009-07-02 12:14:45,855 INFO  [com.adobe.native2pdf.bmc.WordToPDFConverter] ALC-PDG-001-000-Calling function to clean registrys Resiliency entry
    2009-07-02 12:14:45,980 WARN  [com.adobe.native2pdf.bmc.WordToPDFConverter] ALC-PDG-001-000-Acrobat add-in got diabled in MS Office applications . So cleaned entry of Resiliency subtree from registry successfully to re-activate the Acrobat add-in
    2009-07-02 12:14:49,870 INFO  [STDOUT] Exception e06d7363, at 77E4BEF7
    2009-07-02 12:14:49,870 INFO  [STDOUT] Native function stack data: 0,3874f20,b1674,3875268,ffffffff,0,2979ee8,657461,5000b,3080130,0,0,1,0,0,0,c1041904,9989 00,0,53a8900,0,0,b40519,8b00b78a,0,2a043aac,0,0
    2009-07-02 12:14:50,495 INFO  [com.adobe.native2pdf.bmc.WordToPDFConverter] ALC-PDG-001-000-Calling function to clean registrys Resiliency entry
    2009-07-02 12:14:50,495 INFO  [com.adobe.native2pdf.bmc.WordToPDFConverter] ALC-PDG-001-000-The system cannot find the file specified.
    2009-07-02 12:14:50,542 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-028-ATI-2.doc: Job Completion Status: Failed
    2009-07-02 12:14:50,542 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-025-ATI-2.doc: Time Job Completed: 02/07/09 12:14
    2009-07-02 12:14:50,542 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-026-ATI-2.doc: Time of Job Execution: 274.762 ms
    2009-07-02 12:14:50,573 INFO  [com.adobe.native2pdf.bmc.WordToPDFConverter] ALC-PDG-001-001-Begin processing job : C:\Documents and Settings\_task-scheduler\Local Settings\Temp\pdfg-_task-scheduler\b8\f327-3aa5c9-e63e59-7aeb44-a2c3d7-c6a0a9\native-in.d oc
    2009-07-02 12:14:52,104 ERROR [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-000-ALC-PDG-010-015-The conversion operation timed out before it could be completed. Please report this error to the system administrator.
    2009-07-02 12:14:52,104 ERROR [com.adobe.aes.web.create.CreatePDFAct] ALC-PDG-001-000-Invocation error.
    ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:152)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doBMT(EjbTran sactionBMTAdapterBean.java:197)
    at sun.reflect.GeneratedMethodAccessor358.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:214)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:149)
    at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor. java:54)
    at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)
    at org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:1 58)
    at org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:62)
    at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:154)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:153)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    at org.jboss.ejb.Container.invoke(Container.java:873)
    at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)
    at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)
    at $Proxy160.doBMT(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:95)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:132)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:91)
    at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:21 5)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:57)
    at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    at com.adobe.aes.web.create.CreatePDFAct.createPDF(CreatePDFAct.java:383)
    at com.adobe.aes.web.create.CreatePDFAct.createPDF2(CreatePDFAct.java:402)
    at com.adobe.aes.web.create.CreatePDFAct.execute(CreatePDFAct.java:174)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at com.adobe.aes.web.AesActionServlet.service(AesActionServlet.java:63)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at com.adobe.idp.um.auth.filter.AuthenticationFilter.doFilter(AuthenticationFilter.java:154)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:159)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11P rotocol.java:744)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: ALC-PDG-10015-000: com.adobe.livecycle.generatepdf.client.ConversionException: ALC-PDG-010-015-The conversion operation timed out before it could be completed. Please report this error to the system administrator.
    at com.adobe.pdfg.BMCCaller.checkResult(BMCCaller.java:358)
    at com.adobe.pdfg.Native2PdfCaller.callNativeBMC(Native2PdfCaller.java:788)
    at com.adobe.pdfg.Native2PdfCaller.createPDF(Native2PdfCaller.java:298)
    at com.adobe.pdfg.GeneratePDFImpl.createPDFCommon(GeneratePDFImpl.java:342)
    at com.adobe.pdfg.GeneratePDFImpl.createPDF(GeneratePDFImpl.java:172)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    ... 73 more
    2009-07-02 12:19:20,492 INFO  [com.adobe.native2pdf.bmc.WordToPDFConverter] ALC-PDG-001-000-Calling function to clean registrys Resiliency entry
    2009-07-02 12:19:20,492 WARN  [com.adobe.native2pdf.bmc.WordToPDFConverter] ALC-PDG-001-000-Acrobat add-in got diabled in MS Office applications . So cleaned entry of Resiliency subtree from registry successfully to re-activate the Acrobat add-in
    2009-07-02 12:19:24,584 INFO  [STDOUT] Exception e06d7363, at 77E4BEF7
    2009-07-02 12:19:24,584 INFO  [STDOUT] Native function stack data: 0,3874c78,afd64,3874d10,ffffffff,0,2979808,65006c,50004,20801d3,2aec230,ffffffff,2870,0,0 ,6d89cac8,40006,20c01df,26d381b0,2c84e58,0,ffffffff,ffffffff,ffffffff,ffffffff,0,4255434b, 7265
    2009-07-02 12:19:25,209 INFO  [com.adobe.native2pdf.bmc.WordToPDFConverter] ALC-PDG-001-000-Calling function to clean registrys Resiliency entry
    2009-07-02 12:19:25,209 INFO  [com.adobe.native2pdf.bmc.WordToPDFConverter] ALC-PDG-001-000-The system cannot find the file specified.
    2009-07-02 12:19:25,241 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-028-FORMUlÀRIO DE HORA EXTRA.doc: Job Completion Status: Failed
    2009-07-02 12:19:25,241 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-025-FORMUlÀRIO DE HORA EXTRA.doc: Time Job Completed: 02/07/09 12:19
    2009-07-02 12:19:25,241 INFO  [com.adobe.pdfg.BMCCaller] ALC-PDG-001-026-FORMUlÀRIO DE HORA EXTRA.doc: Time of Job Execution: 379.486 ms
    2009-07-02 12:19:25,241 ERROR [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-000-ALC-PDG-010-015-The conversion operation timed out before it could be completed. Please report this error to the system administrator.
    2009-07-02 12:19:25,241 ERROR [com.adobe.aes.web.create.CreatePDFAct] ALC-PDG-001-000-Invocation error.
    ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:152)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doBMT(EjbTran sactionBMTAdapterBean.java:197)
    at sun.reflect.GeneratedMethodAccessor358.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:214)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:149)
    at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor. java:54)
    at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)
    at org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:1 58)
    at org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:62)
    at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:154)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:153)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    at org.jboss.ejb.Container.invoke(Container.java:873)
    at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)
    at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)
    at $Proxy160.doBMT(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:95)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:132)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:91)
    at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:21 5)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:57)
    at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    at com.adobe.aes.web.create.CreatePDFAct.createPDF(CreatePDFAct.java:383)
    at com.adobe.aes.web.create.CreatePDFAct.createPDF2(CreatePDFAct.java:402)
    at com.adobe.aes.web.create.CreatePDFAct.execute(CreatePDFAct.java:174)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at com.adobe.aes.web.AesActionServlet.service(AesActionServlet.java:63)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at com.adobe.idp.um.auth.filter.AuthenticationFilter.doFilter(AuthenticationFilter.java:154)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:159)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11P rotocol.java:744)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: ALC-PDG-10015-000: com.adobe.livecycle.generatepdf.client.ConversionException: ALC-PDG-010-015-The conversion operation timed out before it could be completed. Please report this error to the system administrator.
    at com.adobe.pdfg.BMCCaller.checkResult(BMCCaller.java:358)
    at com.adobe.pdfg.Native2PdfCaller.callNativeBMC(Native2PdfCaller.java:788)
    at com.adobe.pdfg.Native2PdfCaller.createPDF(Native2PdfCaller.java:298)
    at com.adobe.pdfg.GeneratePDFImpl.createPDFCommon(GeneratePDFImpl.java:342)
    at com.adobe.pdfg.GeneratePDFImpl.createPDF(GeneratePDFImpl.java:172)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    ... 73 more

  • "Save as pdf" generates corrupt pdfs

    Hello everybody,
    I have a problem with the "save as pdf" option in the printing menu. When generating the pdf for a document which contains bitmapped embedded images, the actual images in the pdf file are corrupt when opened on a windows/linux machine with the latest version of acrobat reader.
    If I open the document on a mac, either with preview or with acrobat, it looks fine. The problem seems to be the compatibility of the generated pdf with the windows/linux version of acrobat reader.
    Moreover, the problem happens randomly when printing either from Pages or Keynote, so I think it is not an application-dependent issue. I tried also to save as pdf-X but this does not solve the problem.
    Some idea on how to fix this compatibility issue on the Tiger's internal pdf generator?
    Thank you very much,
    Vittorio

    Stuck files in the queue sounds like a problem I had with Acrobat X. The
    10.0.1 patch broke the Adobe PDF printer, so that it tried to use the
    COM1: port, instead of the Documents or Desktop port. (You can check for
    this by right-clicking the Adobe PDF printer, choosing "Printer
    Properties," then selecting the "Ports" tab.) In fact, it deleted those
    ports! (Here's a link to that problem:
    http://kb2.adobe.com/cps/893/cpsid_89330.html). The result was PDFs that
    would not print, and would be left stuck in the printer queue. The fix
    was to delete the Adobe PDF printer, then run the Acrobat repair option
    to regenerate it. You might want to do this. Following are the
    directions for Windows 7. Windows XP instruction are included at the
    link above.
              *Windows Vista (UAC on, nonadmin user), Windows 7 (UAC on,
              admin user)*
    1. Close all PDF files.
    2. Go to Printers and Faxes (Windows XP), Printers (Vista) or Devices
        and Printers (Windows 7).
    3. Right-click the Adobe PDF printer and click Delete (Windows XP,
        Vista) or Remove Device (Windows 7).
    4. Enter the admin credentials. This step deletes the Adobe PDF printer.
    5. Go to Programs and Features (Vista and Windows 7).
    6. Select Adobe Acrobat X Pro or Standard and click Change.
    7. Select Repair and follow instructions to complete repair.**
    By the way, I don't think this was mentioned earlier, but another cause
    of problems with PDF generation is having more than one installation
    and/or version of Acrobat, Adobe Reader, or the PDF creation add-on that
    comes with FrameMaker installed simultaneously. If you have Acrobat, you
    should NOT have Adobe Reader or the PDF creation add-on installed on the
    same computer, and you should have only one version of Acrobat installed.

  • If pdf generated with Bullzip, opens with problems in text (missing, weird characters, etc...)

    pdf opening in new tab shows problems with text. If pdf was generated with Adobe acrobat, works fine. If pdf generated with Bullzip, opens in new tab, but with problems.

    hello lwhitman, the pdf preview in firefox is still under very active development. if you find any issues please report them at https://github.com/mozilla/pdf.js/issues & provide a sample pdf-file which shows the problem.

  • Issue with Czech characters in PDFs generated from RSTXPDFT4

    Hi,
    We have a requirement to generate PDF documents from the spool of the Billing document outputs in our project.
    For this we are using the standard program RSTXPDFT4, which converts the SAP script OTF to PDF format.
    But the Czech characters in the billing document output are not getting displayed in the PDF generated out of it.
    We are already using a device type I2HP4 when creating the print request , which supports Latin-2 Character set ( ISO 8859-2 ), to which the special characters
    of East European languages belong.
    Even then , the czech characters are not getting displayed in the PDF generated.
    We have raised  a message to SAP for this, and SAP informed us that currently the only solution to this is to use Latin 2 soft fonts,
    and to upload these soft fonts into R/3 System using report RSTXPDF2 as they contain the Eastern European special characters plus all the other characters in ISO 8859-2.
    But, since character font definitions (font files) are protected by copyrights, SAP informed us that they cannot provide these font files and we have to acquire
    these latin-2 font files by searching in search engines in the internet.
    If anyone has the information where we can get these "Adobe type 1 Latin-2" font files with '.PFB' extension,  for the proper display of Czech characters, please let me know.

    Hi,
    Did you or anyone manage to find a reasonable solution for this issue?
    I'm currently facing something similar but with Polish characters instead.
    I tried using RSTXPDF2 to upload .PFB and .TTF files but to no avail.

  • Need info on adobe pdf generator

    Hi,
    We are evaluvating a tool to convert word document to pdf for our prestegious client.
    Below are requirements,
    Requirement 1:
    Source- MS Word document
    Target- PDF
    1) Conversion of MS Word document to PDF through online. Here Word document content don't follow any specific layout disagn.
    User wants pdf format should be as same as Word document including font, file layout, header, footer.
    2) Target Pdf should dynamically generate content while reading  word document. i.e it has to replace <placeholders> with the data read from DB.
    3) Target Pdf should also merge some other pdf documents during conversion
    Requirement 2:
    Source- PDF
    Target- PDF
    1) User will provide PDF which has user data aswell as <placeholders>. We need to replace the <placeholders> with the data read from DB & generate PDF.
    Please let us know which adobe tool would suite better for above said requirements.
    Note: From my initial analysis  I found 'LiveCycle PDF Generator ES ' and 'LiveCycle Output ES2' are suitable to 'Requirement 1'. Please let me know your comments on this.
    Thanks,
    Kumaresh
    9886190109

    I've not seen a response from others, so I'll chime in.  If the answers are not in sufficient detail, I can find someone else to go to the next level.
    Requirement 1: The key thing to keep in mind is that PDF Generator is a server-based framework around word, at least for the word to PDF part of its functionality.
    1-1) Conversion of Word to PDF...  PDF Generator does this well.  Note that it will require the installation of MS Office or will use Open Office. Given your fidelity requirement, you probably want to use Office.
    1-2) The integration of dynamic data is less clear.  PDFG does not support this directly, as we use MS Office. I'm not a Word expert, but if you can pull of the dynamic content access and have the appropriate access paths available from Office as it is deployed on the server.
    31-3) Both Output and PDF Generator use a common service called Assembler for the merge. This should be an easy usecase.
    Requirement 2: Generation of PDF from a template.
    The best product for you is LiveCycle Output. It will take a template from LiveCycle designer, either static of dynamic, and create PDF at moderate volumes. I'd suggest that you look at Designer, including its template import facilities, and then consider how you can get the data for your placeholders into XML format. Output is then quite easy to do the data merge, formatting, and PDF generation.

  • Disappearing footers in PDF generated from FrameMaker 9

    Myself and three other writers are having a problem with disappearing footers in FrameMaker.  Here’s the problem:  In FrameMaker, the footers display correctly.  When we convert a book to PDF, many of the footers disappear.  What we find is that a footer (or part of the footer) will appear on the first page of the chapter, but then the footers disappear in rest of the chapter.
    Here is some more info:
    ·         We are using Frame 9.  My version is 9.0p250.  I'm also using Adobe Acrobat 9 Pro Extended, Version 9.3.2 and Adobe Distiller: Professional Version 8.1.3.
    ·         We have been able to duplicate this problem using multiple guides.
    ·         Oddly, footers DO appear correctly when I print just one chapter.
    ·         I’ve tried rebooting my machine and then loaded only FrameMaker (in case of memory issues).
    ·         I optimized the book file and associated chapters.
    ·         I experimented with different Distiller settings.
    Anyone else having this problem?

    It's probably a symptom of needing the MS Hotfix that corrected a problem with text disappearing from PDFs generated from several Windows apps (not just FM).
    More info here:
    PS Hotfix KB 952909
    Adobe blog: Hotfix for FrameMaker
    Please let us know if this does the trick --
    Sheila

Maybe you are looking for

  • GR without PO (501) using own price instead of M.Master Rec's price.

    Hi all, I have the following business process issue which I urgently need your help: Background: Currently our company will perform buying from another subsidiary (another plant in another company code) from a buying price offer by them and this proc

  • Bought movies are greyed out

    I have bought various movies and TV shows via my Apple TV. They automatically sync back to iTunes but are greyed out so I cannot view then or transfer them onto my phone. Any help would be appreciated as I am new to the Apple TV.

  • Flex for Java Developer?

    I am working on flex 1.5 from last 7 months.Ealier i hv worked on Java (1.5 Yr) I hv created an application in flex sucessfully. My Qtn is: Whether i have to continue with flex or move to another technologies like Struts etc. Because i have nil knowl

  • How to create  hidden column in Oracle Table

    Hi folks i have one doubt regarding hidden column creation in Oracle Table.. Let me briefly explain my requirements. I have one table called UWRMC_MAST is table contain the following columns         RMC_N_ID           NUMBER(10)                    NO

  • I need to reload Elements 12

    My computer has been cleaned after a virus attack. How can I reload Elements 12