HR_ESS_PAYSLIP_TO_PDF pdf converter character problem

Hi,
I have a problem regarding to HR_ESS_PAYSLIP_TO_PDF.I done every customizing about Employee Self-Service to see my salary statement at ESS.I see it at ESS but I have a character problem with Turkish capital characters and some Turkish letter(Ş,İ).at the smartform my Language Attiribute is TR(Turkish) and thats not change anything.
Thanks...

Can I up this question?
I have the same problem with Russian characters, what's wrong?

Similar Messages

  • Adobe PDF Converter Login Problem

    We purchased an annual subscription for Adobe PDF Converter but my login today tells me there is a problem

    All i get is a message - An error occurred when signing in
    I am not sure how to overcome this

  • Question: Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages? - Problem: I have 1400 e-mails with attachments that need to be conv

    Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages?
    - Problem: I have 1400 e-mails with attachments that need to be converted into pdf and the attachments cannot be embeded.
    System: PC Windows 7 using Acrobat X Prof. - Thank you!

    Hi ,
    There is an option of embedding index for faster search while converting email to a PDF .
    However I am not sure that will serve your purpose or not .
    I would recommend you to get in touch with Microsoft support as well .
    Meanwhile I'll work on it and get back to you in case I get a desired solution .
    Regards
    Sukrit Dhingra

  • Character Problem For SmartForms to Pdf .

    Hi Experts ;
    my problem about smartforms . I have a custumer list. I use smartform for output. Customer list of smartform ok . Have any problem . But I convert this output to PDF . Some Characters  are overlapping . My main language Türkçe(Turkish) . Characters is incorrect for  struct of laguage .( smartform output has no problem but pdf output have problem )
    My Code :
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETER: p_date LIKE sy-datum.
    PARAMETER: p_rea TYPE char255.
    SELECTION-SCREEN: END OF BLOCK b1.
    DATA:      ws_ucomm LIKE sy-ucomm.
    DATA: gt_intab  TYPE ZSMRT_DNM_T WITH HEADER LINE.
    INITIALIZATION.
    SET PF-STATUS 'GUI'.
    PERFORM get_data.
    AT SELECTION-SCREEN.
      ws_ucomm = sy-ucomm.
      CASE ws_ucomm.
        WHEN '&PDF'.
          PERFORM f1000_download_form.
          EXIT.
        WHEN '&BACK'.
          LEAVE TO SCREEN 0.
          EXIT.
        WHEN '&EXIT'.
          SET SCREEN 0.
          EXIT.
        WHEN '&canc'.
          SET SCREEN 0.
          LEAVE TO SCREEN 0.
      ENDCASE.
       f1000_download_form
    FORM f1000_download_form.
      DATA: form_name TYPE rs38l_fnam.
      DATA: wa_ctrlop TYPE ssfctrlop,
            wa_outopt TYPE ssfcompop.
      DATA: t_otfdata  TYPE ssfcrescl,
            t_pdf_tab  LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA: t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE.
      DATA: w_filesize TYPE i.
      DATA: w_bin_filesize TYPE i.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                 = 'ZDNMSMRT'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
       IMPORTING
         fm_name                  = form_name
       EXCEPTIONS
         no_form                  = 1
         no_function_module       = 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.
      wa_ctrlop-getotf = 'X'.
      wa_ctrlop-no_dialog = 'X'.
      wa_ctrlop-DEVICE = 'I9SWIN'.
      wa_outopt-tdnoprev = 'X'.
      CALL FUNCTION form_name
        EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
         control_parameters         = wa_ctrlop
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
         output_options             = wa_outopt
         user_settings              = 'X'
         mydate                     = p_date
         reason                     = p_rea
         ADRNR                      = '23713'
       IMPORTING
      DOCUMENT_OUTPUT_INFO       =
         job_output_info            = t_otfdata
      JOB_OUTPUT_OPTIONS         =
       TABLES
         RTAB                      = gt_intab[]
       EXCEPTIONS
         formatting_error           = 1
         internal_error             = 2
         send_error                 = 3
         user_canceled              = 4
         OTHERS                     = 5
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      t_otf[] = t_otfdata-otfdata[].
      CALL FUNCTION 'CONVERT_OTF'
       EXPORTING
         format                      = 'PDF'
         max_linewidth               = 150 "132
      ARCHIVE_INDEX               = ' '
       IMPORTING
         bin_filesize                = w_bin_filesize
        TABLES
          otf                         = t_otf
          lines                       = t_pdf_tab
       EXCEPTIONS
         err_max_linewidth           = 1
         err_format                  = 2
         err_conv_not_possible       = 3
         OTHERS                      = 4
      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 'WS_DOWNLOAD'
       EXPORTING
         bin_filesize                  = w_bin_filesize
      CODEPAGE                      = ' '
         filename                      = 'c:     est.PDF'
         filetype                      = 'BIN'
      MODE                          = ' '
      WK1_N_FORMAT                  = ' '
      WK1_N_SIZE                    = ' '
      WK1_T_FORMAT                  = ' '
      WK1_T_SIZE                    = ' '
      COL_SELECT                    = ' '
      COL_SELECTMASK                = ' '
      NO_AUTH_CHECK                 = ' '
       IMPORTING
         filelength                    = w_filesize
        TABLES
          data_tab                      = t_pdf_tab
      FIELDNAMES                    =
       EXCEPTIONS
         file_open_error               = 1
         file_write_error              = 2
         invalid_filesize              = 3
         invalid_type                  = 4
         no_batch                      = 5
         unknown_error                 = 6
         invalid_table_width           = 7
         gui_refuse_filetransfer       = 8
         customer_error                = 9
         OTHERS                        = 10
      IF sy-subrc <> 0.
        MESSAGE i003(z00) WITH 'File not downloaded succesfully'.
      ELSE.
        MESSAGE i003(z00) WITH 'File Test.pdf downloaded succesfully '
                                                'under C drive'.
      ENDIF.
    ENDFORM.                    " F1000_DOWNLOAD_FORM
    *&      Form  GET_DATA
    FORM GET_DATA .
       SELECT kunnr belnr gjahr from bsid
             INTO CORRESPONDING FIELDS OF TABLE gt_intab
             WHERE bukrs = '4000' and gjahr = '2007'.
       LOOP AT gt_intab.
          SELECT SINGLE name1 from kna1
            INTO (gt_intab-name1)
            WHERE kunnr = gt_intab-kunnr.
          MODIFY gt_intab INDEX sy-tabix.
       ENDLOOP.
       SORT gt_intab by kunnr.
    ENDFORM.                  " GET_DATA
    Regards .

    Try following logic:
    DATA: lt_data TYPE TABLE OF tline,
          lt_data1 TYPE TABLE OF tline,
          lt_objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    Convert OTF to PDF
            REFRESH: lt_data.
            CALL FUNCTION 'CONVERT_OTF'
              EXPORTING
                format                = 'PDF'
                max_linewidth         = 132
              IMPORTING
                bin_filesize          = l_binfilesize
              TABLES
                otf                   = la_jobout-otfdata[]
                lines                 = lt_data[]
              EXCEPTIONS
                err_max_linewidth     = 1
                err_format            = 2
                err_conv_not_possible = 3
                err_bad_otf           = 4
                OTHERS                = 5.
            IF sy-subrc <> 0.
    Error during conversion from OTF to PDF.
            ELSE.
    Creation of the document attachment
              REFRESH: lt_data1.
              CALL FUNCTION 'TABLE_COMPRESS'                    "#EC *
                TABLES
                  in             = lt_data[]
                  out            = lt_data1[]
                EXCEPTIONS
                  compress_error = 1
                  OTHERS         = 2.
              IF sy-subrc <> 0.
    Error during compress operation of the data
              ELSE.
                REFRESH: lt_objbin.
                CALL FUNCTION 'TABLE_DECOMPRESS'                "#EC *
                  TABLES
                    in             = lt_data1[]
                    out            = lt_objbin[]
                  EXCEPTIONS
                    compress_error = 1
                    OTHERS         = 2.
                IF sy-subrc <> 0.
    Error during decompress operation of the data.
                ENDIF.
           ENDIF.
    ENDIF.
    Pass table lt_objbin[] to WS_DOWNLOAD function module. It should work.
    Thanks
    Amol Lohade

  • PDF convertion - hebrew font upload problem

    Hello,
    I am trying to define hebrew support to pdf convertion according to note 569404 - but whenever i try to run the RSTXPDF2 report - instead of getting the browse window to choose from where i upload the fonts - the report directly goes to the end and has the error message - could not open file - i was'nt given the opportunity to choose one - on the DEvelopment and QA system i didn't have problems like that.
    I found that whenever in the first time you enter the above report - rstxpdf2 and run it - it opens a custom sap browse window to browse the local station and to choose the appropriate file - but if press on the cancel button - the window goes to the end of the report with the message file could not be opened - and from now on this is the result when i try to run the report - i don't get again the custom sap browse window to browse the local station and to choose the appropriate file
    regards,
    Moshe

    Check your user own data ...delete own data at the before runing the report.
    Did you try logging out and login again?
    Mathews

  • Problem with Adobe PDF Converter

    I'm sorry to say I struggle with the technicalities a bit but would be really grateful for any help!
    I have a laptop with Windows 7 64 bit, Office 2010, Acrobat Standard X, and PSE9.
    I found in PSE9 whilst I could print pictures out on my HP All-in-One okay I could not print as a pdf.  I thought the problem was with PSE9 but then I tried to print an Office 2010 document (Word) and noticed that whilst it did actually print fine, when I went back to print again there was a statement under Adobe PDF "Error: 1 document waiting".  I printed another document as a pdf and the message changed to "Error: 2 documents waiting" (even though, again, it printed okay). So although with Office 2010 the PDF Converter seems to work it also builds up a list of errors.
    I don't like not understanding what is going on!  I tried to use Windows 7 to "troubleshoot" the problem but that was a silly waste of time ... it merely cleared the list of errors so I started all over again.
    Can anyone help/advise?

    Thanks, Lindsay.
    I have the same problem & your update on the PORT being the problem was crucial.  I sorted it out.  The solution (for other folks who see this thread) is as follows:
    1.  Go to Printer Properties
    2.  Go to the Port Tab
    3.  Add a New Local Port
    4.  Name It Anything (e.g. "PDFPort" without a colon)
    Done!   : )   Hope this helps!

  • Why does Acrobat Pdf converter file slow down my 2003, Windows  Word Program.  I only experience this problem when i convert a pdf file to a doc file.

    Why does Acrobat Pdf converter file slow down my 2003, Windows  Word Program.  I only experience this problem when i convert a pdf file to a doc file.

    Hi Bill -- thanks for your reply!
    When I check the Document Properties on Acrobat I can see that the fonts used in the document (Cambria, Times and Windings) are listed as "Embedded Subset" in the Fonts panel. The machine it was created on did use an earlier version of OS X and an old version of Word, but it seems to have the proper fonts...
    -nick

  • PDF Converter for Acrobat Pro 8 problem in windows 7 (64)

    Hi,
    I just recently upgraded to Windows 7 - 64 bit and I am getting the following error message when I try to print to the Adobe PDF printer:
    %%[ Error: undefined; OffendingCommand: setdistillerparams; ErrorInfo: CalCMYKProfile U.S. Web Coated (SWOP) v2 ]%%
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    Error accessing color profile: U.S. Web Coated (SWOP) v2
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    I am using Adobe Acrobat 8 professional version 8.1.4 that came with CS3 Design Premium and have installed all current updates. Regardless of the chosen program (Word, Excel, Photoshop) when I attempt to print to the Adobe PDF printer, the print job stops at about 10% completion with the above error message.
    Any suggestions?
    Thanks,
    Kyle

    Thanks everyone for the helpful hints.
    In the end I unstalled and then re-installed the entire Adobe Premium CS3 in Windows 7 (64 bit). The big difference was loading the adobepdf.dll_64 file at the proper point during the installation process.
    Adobe has published a full explanation of this issue at the following URL:
    http://kb2.adobe.com/cps/401/kb401731.html
    Once installed, it's also important to update Acrobat 8 to the latest revision to get the PDF Converter working again.
    Thanks again,
    Kyle

  • Adobe PDF Converter problem

    My Adobe PDF Converter says it is out of paper, but I want to print to a file. What's wrong?

    Hello Big John
    I understand that it is difficult to determine which forum to post in since there are so many. This particular forum (sharing and storage) was created to help those transitioning from Photoshop.com to Adobe Revel. I am moving your post to the correct forum so that it can get proper attention.
    I'll put I this posting in theAcrobat community so the experts there can help you.
    We also have many other forums relating to other Adobe products
    http://forums.adobe.com/community/
    http://forums.adobe.com
    Out of curiosity, can you tell me how you found our forum page?
    Thanks
    Scott

  • IBR problem - IDC PDF converter is not installed

    Hi,
    I did clean installation of UCM and IBR setup. But, I am getting the following error on IBR page.
    Alert
    The required printer 'IDC PDF Converter' is not installed. Queue monitoring will be turned off.
    Conversion queues not being monitored and will not be processed.
    Also, am getting the following exception while starting IBR server. Please help how to fix this issue...
    <Nov 20, 2011 4:14:50 PM GMT+04:00> <Error> <oracle.ucm.idcibr> <UCM-CS-000001>
    <general exception>
    <Nov 20, 2011 4:14:50 PM GMT+04:00> <Error> <oracle.ucm.idcibr> <UCM-CS-000001>
    <general exception
    java.lang.Throwable
    at pdfconverter.PDFCInstaller.postErrorNotice(PDFCInstaller.java:181)
    at pdfconverter.PDFCInstaller.verifyWindowsPrinter(PDFCInstaller.java:16
    6)
    at pdfconverter.PDFCInstaller.configureWindows(PDFCInstaller.java:79)
    at pdfconverter.PDFCInstaller.doFilter(PDFCInstaller.java:61)
    at intradoc.shared.PluginFilters.filterWithAction(PluginFilters.java:114
    at intradoc.shared.PluginFilters.filter(PluginFilters.java:68)
    at docrefinery.server.RefSystemLoader.executeFilter(RefSystemLoader.java
    :321)
    at docrefinery.server.RefSystemLoader.doFilter(RefSystemLoader.java:193)
    at intradoc.shared.PluginFilters.filterWithAction(PluginFilters.java:114
    at intradoc.shared.PluginFilters.filter(PluginFilters.java:68)
    at intradoc.server.IdcExtendedLoader.executeFilter(IdcExtendedLoader.jav
    a:462)
    at intradoc.server.IdcServerManager.init(IdcServerManager.java:205)
    at docrefinery.server.RefServerManager.init(RefServerManager.java:67)
    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletReq
    uestUtils.java:624)
    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletReq
    uestUtils.java:455)
    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrap
    per.java:102)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:8
    7)
    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.j
    ava:305)
    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperU
    tils.java:278)
    at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:124
    2)
    at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:542
    at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:455)
    at idcservlet.IdcFilter.initContentServer(IdcFilter.java:132)
    at idcservlet.IdcFilter.init(IdcFilter.java:124)
    at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterMa
    nager.java:332)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    120)
    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java
    :98)
    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.
    java:59)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAp
    pServletContext.java:1876)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletCon
    text.java:3153)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.jav
    a:1508)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleSta
    teDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStat
    eDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedMod
    uleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(Module
    ListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleSta
    teDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStat
    eDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartMod
    ulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.ja
    va:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.
    java:205)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.ja
    va:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(Deploym
    entStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(Ap
    pContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicD
    eployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromSer
    verLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(De
    ploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(Deploy
    mentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(App
    Transition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionA
    pps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(Co
    nfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(Conf
    iguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(De
    ploymentServerService.java:180)
    at weblogic.management.deploy.internal.DeploymentServerService.start(Dep
    loymentServerService.java:96)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    StandardFileStore:1.0.0.0 started.
    +++ClassLoader reporting object initialized at Sun Nov 20 16:14:47 GMT+04:00 201
    1
    Servlet protocol layer ready to receive requests.
    Started Core Feature 'Refinery', version '11.1.1.4.0' (build 8.0.8.1)
    Ready and waiting for connection on port 5555, PID 2216 (idc42)
    Inbound Refinery. Version 11gR1-11.1.1.5.0-idcprod1-110413T184243.
    Copyright (C) 1996-2011, Oracle and/or its affiliates. All rights reserved.
    <Nov 20, 2011 4:14:53 PM GMT+04:00> <Error> <oracle.ucm.idcibr> <UCM-CS-000001>
    <general exception>
    <Nov 20, 2011 4:14:53 PM GMT+04:00> <Error> <oracle.ucm.idcibr> <UCM-CS-000001>
    <general exception
    stack trace
    at intradoc.server.ServerConfigurationAnalyzer.addAlert(ServerConfigurat
    ionAnalyzer.java:194)
    at docrefinery.agent.AgentManager.startIncomingQueueMonitorEx(AgentManag
    er.java:175)
    at docrefinery.agent.AgentManager.startIncomingQueueMonitor(AgentManager
    .java:152)
    at docrefinery.agent.AgentManager.startAllIncomingQueueMonitors(AgentMan
    ager.java:144)
    at docrefinery.server.RefSystemLoader.doFilter(RefSystemLoader.java:210)
    at intradoc.shared.PluginFilters.filterWithAction(PluginFilters.java:114
    at intradoc.shared.PluginFilters.filter(PluginFilters.java:68)
    at intradoc.server.IdcExtendedLoader.executeFilter(IdcExtendedLoader.jav
    a:462)
    at intradoc.server.IdcExtendedLoader.extraAfterProvidersStartedInit(IdcE
    xtendedLoader.java:454)
    at intradoc.server.IdcSystemLoader.startMonitoringProviders(IdcSystemLoa
    der.java:2611)
    at intradoc.server.IdcManagerBase.startProviders(IdcManagerBase.java:131
    at docrefinery.server.RefServerManager.serviceStart(RefServerManager.jav
    a:135)
    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletReq
    uestUtils.java:630)
    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletReq
    uestUtils.java:455)
    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrap
    per.java:102)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:8
    7)
    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.j
    ava:305)
    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperU
    tils.java:278)
    at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:124
    2)
    at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:542
    at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:455)
    at idcservlet.IdcFilter.initContentServer(IdcFilter.java:132)
    at idcservlet.IdcFilter.init(IdcFilter.java:124)
    at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterMa
    nager.java:332)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    120)
    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java
    :98)
    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.
    java:59)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAp
    pServletContext.java:1876)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletCon
    text.java:3153)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.jav
    a:1508)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleSta
    teDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStat
    eDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedMod
    uleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(Module
    ListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleSta
    teDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStat
    eDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartMod
    ulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.ja
    va:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.
    java:205)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.ja
    va:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(Deploym
    entStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(Ap
    pContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicD
    eployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromSer
    verLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(De
    ploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(Deploy
    mentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(App
    Transition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionA
    pps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(Co
    nfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(Conf
    iguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(De
    ploymentServerService.java:180)
    at weblogic.management.deploy.internal.DeploymentServerService.start(Dep
    loymentServerService.java:96)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    Added virtual directory for matching pattern '/*' for context root /ibr/ mapping
    to path D:/Oracle/MIDDLE~1/USER_P~1/domains/UCM_DO~1/ucm/ibr/weblayout/
    IDC Servlet initial class path is D:/Oracle/MIDDLE~1/ORACLE~2/ucm/idc/jlib/idcse
    rver.jar

    This issue has been resolved. The thing is we need to install "IDC PDF converter". This procedure is not mentioned in UCM installation guide.
    The following document can be visited for installing IDC PDF Converter...
    http://download.oracle.com/docs/cd/E10316_01/refinery/refinery_doc_10/documentation/addons/install_admin_pdfc_10en.pdf
    Thanks
    Sravan

  • PDF format printing problem... (complex 6i reports conversion to 10g)

    Hi All,
    I hope somebody has solved this problem and could give me a hint. We have a lot of complex reports in 6i (client\server) and PDF format is the only option for us in 10g, I believe.
    The previews of the report in 6i and 10g (PDF format) are very similar. When we send the report to the printer from 6i preview, the printout also looks the same as in the preview (with about 3mm sides margin), but when we print a PDF version of
    the report with the default settings for Acrobat Reader, the printout gets huge
    margins and it is absolutely unacceptable for our company. When we change “Page Scaling:” to “None” in Acrobat Reader printing settings, some information of the report doesn’t get printed on the paper (being cut off). This report has a landscape orientation and a legal paper size and these settings are also setup in the printer driver as default (for Oracle PDF writer). The testing was done on the developer workstation with local OC4J and a local report server (10g iDS).
    I also tried to generate this report into PDF file by Oracle 6i Reports (client-server). Same problem. In Acrobat in looks fine, but in Acrobat preview, it only looks OK
    when "Page Scaling:” is set to “None”, however, when it gets printed the report
    data is being cut off (left and top parts). If "Page Scaling" is set to "Fit to
    Printable Area" (default), the report on paper gets resized with huge margins.
    I hope it is not an Acrobat Reader v8 problem.
    Thank you

    Hi,
    Was it a character mode report? While converting character mode reports to bitmap reports you have some layout problems. You might be facing similar issue it seems.
    And there are many other formats supported by Reports 10g, not only pdf.
    Br,
    Gouri Sankar

  • I have Nuance PDF Converter 7.2 and after I scan a document and want to email it, I get an error message that says the scan cannot be attached to an email.

    I want to be clear: I can scan the document with Nuance PDF Converter 7.2, but after the scan, I want to email the scan to someone.
    When I click on the word "email" on the left side of the Nuance screen, I get a failure message. For a couple of years this process worked without a problem. I was told by Nuance Support that the problem was in the email software. Is there something on a drop
    down menu that I can click on the resolve the problem? Thanks.

    The problem could be that your computer doesn't have Thunderbird identified as the default e-mail program, so the first step is:
    Thunderbird: Menu bar: Tools: Options: Advanced Tab: System Integration:
    Press the "Check Now..." button.
    In the resulting "System Integration" window, make sure that "E-Mail" is check-marked, and "Always perform this check when starting Thunderbird" is checked. Then click the "Set as Default" button.
    If you have Windows 8 or 8.1, then there is also another step:<br>
    Windows Control Panel: Programs: Default Programs: Set your default programs.<br>
    Find "Thunderbird" on the left side, and click to select it.<br>
    On the right side, click "Set this program as default".<br>
    Then reboot the computer.<br>
    If the problem still exists, then do a clean install of Thunderbird:
    Certain Thunderbird problems can be solved by performing a ''Clean reinstall''. This means you remove Thunderbird's program files and then reinstall Thunderbird. Please follow these steps:
    #Download the latest version of Thunderbird from http://www.mozilla.org/en-US/thunderbird/ and save the setup file to your computer.
    #After the download is complete, close all Thunderbird windows (Click Exit/Quit from the menu button on the right).
    #Delete the Thunderbird installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #** C:\Program Files\Mozilla Thunderbird\
    #** C:\Program Files (x86)\Mozilla Thunderbird\
    #*'''Mac:''' Delete Thunderbird from the Applications folder.
    #*'''Linux:''' If you installed Thunderbird with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Thunderbird on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/en-US/thunderbird/ Thunderbird Download Page], simply remove the folder ''thunderbird'' in your home directory.
    #Now, go ahead and reinstall Thunderbird:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to open Thunderbird after clicking the Finish button.
    <b>WARNING:</b> Do not run Thunderbird's uninstaller or use a third party remover as part of this process, because that could permanently delete your Thunderbird data, including but not limited to, extensions, emails, personal settings and saved passwords. <u>These cannot be recovered unless they have been backed up to an external device!</u>
    Please report back to see if this helped you!

  • Hyperlinks not working properly in PDF, converted by Nuance PDF converter

    I have encountered a problem with the pdf files which were converted by the Nuance PDF converter(v8.1).
    When reviewing a pdf file in Adobe Reader X(v10.1.0) the hyperlinks are not working properly in the "fit to window width and enable scrolling" mode.
    The second one, "fit one full page to window", is working without problems. In this mode all links can be used.
    Attached is a screenshot about the two modes in Adobe Reader X.
    This issue is just happening, if the file is converted by Nuance PDF converter.
    Well, Nuance support was not helpful at all.
    Regards

    just the "alias hyperlinks"(don't know the specific name) are not working.
    if I write down www.hp.com it's just fine.
    i've uploaded documents..
    one is created with nuance pdf converter and the other with MS Office Word "save as pdf" function.
    http://www.filedropper.com/linktestdocumentnuanceconverted
    http://www.filedropper.com/linktestdocumentofficesafeas
    so it seems like that nuance is not supporting "alias hyperlinks"..

  • Adobe Pdf Converter Print Driver Will not install

    Acrobat V9.0
    Vista Utimate Service Pack 1
    I have not been able to print to the PDF Printer. I get the following error when I select the PDF printer.
    "The 'Adobe PDF Converter' printer driver is not installed on this computer. Some printer properties will not be accessible unless you install the printer driver. Do you want to install the driver now?"
    When I say yes and select version 8.5.0.0 printer since it is the latest version. I get a Add Printer Driver Wizard window that says. "Unable to install adobe pdf converter, Type 3 - User Mode, x86 driver. Access is denied.
    I went through all the recommended steps on the web site listed below with no success.
    Thanks in advance for you help.!!!!!!!!!!!!!!
    Jim
    Solution 1: Use a supported installation.
    The following are unsupported installations, and the supported solutions:
    If you install Acrobat (Professional or Standard) on a 64-bit operating system, then you may
    see this error. Please update Acrobat to version 8.1 or later. You can update from within
    Acrobat via the help pull-down menu, or download the updater from the following location:
    http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows.
    If you install Acrobat to a shared network disk instead of a local hard disk, then the Adobe PDF
    printer is not installed. Install Acrobat on a local hard disk.
    TechNote Details
    PRODUCTS AFFECTED:
    DID THIS RESOLVE
    YOUR PROBLEM?
    Yes
    No
    300 characters
    Acrobat Professional
    Acrobat Standard
    Acrobat 3D
    TechNote
    Home / Support /
    Your account o Y Contact United States (Change)
    Home Solutions Products Support Communities
    Company Downloads Store
    Error "Warning 20225..." or no Adobe PDF printer appears (Acrobat 8.0 and Acrobat 3D 8.0 on Windows)
    http://kb.adobe.com/selfservice/viewContent.do?externalId=333221&sliceId=1[10/4/2008 2:04:17 PM]
    If you install Acrobat to a directory with a path that contains extended ASCII or double-byte
    characters, then English installations will display the error message. Install to a path that does
    not contain extended ASCII or double-byte characters.
    Solution 2: Ensure that the Print Spooler process is running and set to
    Automatic, and then repair Acrobat.
    1. Select Start > Settings > Control Panel.
    2. Double-click Administrative Tools and then double-click Services.
    3. Locate the service Print Spooler.
    4. If the Startup Type is not Automatic, then set it to Automatic:
    a. Right-click the Print Spooler.
    b. Choose Properties.
    c. Choose the General tab.
    d. Choose Automatic in the Startup Type menu.
    e. Click OK.
    5. If the Print Spooler service is not running, then start it.
    a. Right-click the Print Spooler line.
    b. Select Start from the menu.
    6. Start Acrobat, and choose Help > Detect And Repair.
    Solution 3: Ensure that the Print Spooler process has no additional
    dependencies.
    Only the Remote Procedure Call dependency is required for Print Spooler to operate.
    Additional Services can attach to the process but will interfere with restarting the service.
    If the Print Spooler process has additional dependencies, then please refer to the steps
    below.
    To remove all services listed under "This service depends on the following system
    components":
    1. Choose Start > Settings > Control Panel.
    2. Double-click Administrative Tools and then double-click Services.
    3. Right-click Print Spooler and choose Properties.
    4. Click the Dependencies tab.
    5. Record services under "This service depends on the following system components" and click
    OK.
    Imporatnt: Remote Procedure Call is a system service and should not be removed.
    6. Temporarily remove associated programs for the listed services.
    7. Contact the service vendor for removal information if removal of associated software does
    not remove the service.
    8. Start Acrobat, and choose Help > Detect And Repair.
    To disable all services listed under "The following system components depend on this
    service":
    1. Choose Start > Set

    I am having similar problems. After years of successful use, about a year ago, my printer (Epson stylus Photo R300) stopped working. After much investigation, it appears my computer no longer recognizes my printer. I've followed resets, safe boots, uninstalls, reinstalls, etc. This happened so long ago, I don't recall what I was doing when it happened. I'm figuring it happened shortly after a Software Update... So far none of the fixes recommended to me have solved the problem. I've been using Epson customer support, but they've stopped responding. None of their suggestions have seemed to work either.

  • Export PDF converts filled PDF form without the data - Turns filled PDF form onto blank Word doc. Is there a solution to this or did Adobe just sell me a service that doesn't work?

    Export PDF converts filled PDF form without the data - Turns filled PDF form onto blank Word doc. Is there a solution to this or did Adobe just sell me a service that doesn't work?

    ExportPDF is not for forms. In general, converting forms to Word is a really, really bad idea which can even cause legal problems. Work with the form as a PDF. Acrobat (not Reader) can export form data as simple text for example.

Maybe you are looking for

  • Getting multiple values from a report

    I created a report in portal and I can get a single value using "get_value" function. Which procedure or function do I need to use to get multiple values ? Any help on this is greately appreciated. Ajay

  • Please Help!  I can't get Itunes or Quicktime to install properly

    Ok, I'm about fed up. I'm trying to get itunes installed along with quicktime, and everytime it goes through the installation & says everything is ok, but then when I try to run Itunes, it comes up an error. The problem seems to be with quicktime, b/

  • Unable to connect to multiple drives at the same time on Windows

    It is not possible to connect to a second Drive on Windows. When you try to do this, an error occurs in the AD log and a general failure message is shown to the user. See also the attached screenshot. On Mac OSX, it is possible to connect to multiple

  • How do I find the name of an append structure?

    Lets say I want to add a field to the component BT115QS_SLSQ (Sales quote search). I enhanced the component and the view (SlsQuotSQ). If I go to the context nodes and the context node BTQSLSQUOT. I can see the implementation class ZL_BT115QS_SLSQUOTE

  • LSMW of INCOMING INVOICE (MIRO)

    Hi, I'm gonna do the conversion of Invoices from one SAP to an other SAP and I need to use an LSMW of Incoming Invoices for SAP Material Management (transaction MIRO???). Anyone knows if it's possible and if it's exists? Thank you Andrea