Sapscript output(Spool) to PDF problem when viewed

We have a number of documents which are output in Russian using the Cyrillic courier font within our Uincode SAP system. They look fine on the spool when viewed, print okay, and all look fine when converted to a PDF file (using RSTXPDFT4) and viewed via Adobe PDF viewer (vers 9.1.20), except one form, the invoice, which will not display properly in Adobe, showing square blocks with crosses through them when viewed. The strange thing is that when this same PDF is viewed via Sumatra (Open source PDF viewer) it looks perfect, but will not display via the Adobe PDF viewer, even though all the other delivery/dispatch docuemnts (all Sapscript) print and view fine via the Adobe PDF viewer.
I guess I could suggest that we just use Sumatra from now on, but that is not really the answer when you have a multinational company which has Adobe already installed on all hardware as default.
Has anyone come across this problem before. I was wondering if there could be anything in Sapscript that might have caused this as this is a copy of SAP standard Russian Invoice Sapscript (J_3RVINVOICE)?
I'm going to check OSS to see if there's a fault with the PDF convertion program (RSTXPDFT4) but I would like to hear from anyone that may have encountered the same problem.
Regards
Gary

Hi Gary
How the issue is resolved, please let me know. Since i am also facing same issue.
Thanks
M G Shankar

Similar Messages

  • Spool to PDF - Problems with downloading PDF file when converting with job

    Hi all!
    I've got a problem. I've got a program that writes a smartform into the spool. After that, I am using the function modules RSTS_GET_ATTRIBUTES and CONVERT_OTFSPOOLJOB_2_PDF to convert it into PDF. I retrieve a internal table with the binary content for the PDF file. Now i can download the file to the desktop by using the method cl_gui_frontend_services=>gui_download.
    But there is a problem: when the spool excesses 99 pages, the function module CONVERT_OTFSPOOLJOB_2_PDF asks the user via popup if the PDF should be created in background. If the user commits, the internal tables that should contain the binary PDF data is emtpy. A background job writes the binary data into the spool. The user has got an empty file that will be generated by cl_gui_frontend_services=>gui_download.
    So, is it possible to suppress the popup to create the PDF allways online? Or how can I write the PDF file if there will be create any spool id in background? You'll find my current code below.
    * Prüfen ob es die übergebene Spoolnummer überhaupt gibt
      SELECT SINGLE * FROM tsp01 INTO ls_tsp01 WHERE rqident = id_spoolid.
      IF ( sy-subrc <> 0 ).
        cf_error = 'X'.
        EXIT.
      ENDIF.
    * TemSe-Objekte speichern sequentielle Daten. Ein TemSe-Objekt kann aus
    * mehreren Teilen bestehen. Dieser FB ermittelt die wichtigsten Attribute
    * eines TemSe-Objekts. Falls das Objekt aus mehreren Teilen besteht, werden
    * die Attribute entsprechend zusammengefaßt.
      CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
        EXPORTING
          client        = ls_tsp01-rqclient
          name          = ls_tsp01-rqo1name
          part          = 1
        IMPORTING
          objtype       = ld_objtype
        EXCEPTIONS
          fb_error      = 1
          fb_rsts_other = 2
          no_object     = 3
          no_permission = 4
          OTHERS        = 5.
      IF ( sy-subrc <> 0 ).
        cf_error = 'X'.
        EXIT.
      ENDIF.
      IF ld_objtype(3) = 'OTF'.
        lf_is_otf = 'X'.
      ELSE.
        lf_is_otf = ' '.
      ENDIF.
      IF ( lf_is_otf = 'X' ).
    *   Konvertiere OTF-Spoolauftrag nach PDF
        CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = id_spoolid
            no_dialog                = ' '
    *        pdf_destination          = 'T'
          IMPORTING
            pdf_bytecount            = ld_numbytes
            pdf_spoolid              = ld_pdfspoolid
            btc_jobname              = ld_jobname
            btc_jobcount             = ld_jobcount
          TABLES
            pdf                      = lt_pdf
          EXCEPTIONS
            err_no_otf_spooljob      = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_dstdevice        = 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.
        IF ( sy-subrc <> 0 ).
          cf_error = 'X'.
          EXIT.
        ENDIF.
      ELSE.
    *   Konvertiere ABAP-Liste-Spoolauftrag nach PDF
        CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = id_spoolid
            no_dialog                = ' '
          IMPORTING
            pdf_bytecount            = ld_numbytes
            pdf_spoolid              = ld_pdfspoolid
            btc_jobname              = ld_jobname
            btc_jobcount             = ld_jobcount
          TABLES
            pdf                      = lt_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.
        IF ( sy-subrc <> 0 ).
          cf_error = 'X'.
          EXIT.
        ENDIF.
      ENDIF.
      WHILE ( lf_file_ok = '' ).
    *   Die in der Tabelle lt_pdf enthaltenen Binärdaten werden nun in eine
    *   Datei geschrieben. Da alle übergebenen Tickets in die gleiche Datei
    *   geschrieben werden, kann der im Speicher gehaltente Protokolleintrag
    *   gelesen werden
        CALL METHOD cl_gui_frontend_services=>gui_download
          EXPORTING
            bin_filesize              = ld_numbytes
            filename                  = cd_filename
            filetype                  = 'BIN'
    *    append                    = SPACE
    *    write_field_separator     = SPACE
    *    header                    = '00'
    *    trunc_trailing_blanks     = SPACE
    *    write_lf                  = 'X'
    *    col_select                = SPACE
    *    col_select_mask           = SPACE
    *    dat_mode                  = SPACE
          confirm_overwrite         = 'X'
    *    no_auth_check             = SPACE
    *    codepage                  = SPACE
    *    ignore_cerr               = ABAP_TRUE
    *    replacement               = '#'
    *    write_bom                 = SPACE
    *    trunc_trailing_blanks_eol = 'X'
    *    wk1_n_format              = SPACE
    *    wk1_n_size                = SPACE
    *    wk1_t_format              = SPACE
    *    wk1_t_size                = SPACE
    *  IMPORTING
    *    filelength                =
          CHANGING
            data_tab                  = lt_pdf
          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
            not_supported_by_gui      = 22
            error_no_gui              = 23
            OTHERS                    = 24.

    Creating a PDF file with over 99 pages through SAP seems rather unreasonable to me. What are you printing - Encyclopedia Britannica? For cripes sake... Have you thought about creating more than one spool request or using something completely different? Why do you have to do this through spool? You can get Smartform output directly into PDF, there are a lot of example out there.
    The only solution that comes to mind is rather brutal - create a copy of the function module and get rid of the popup. Although it just might time out after that...

  • Display logo In PDF output ( Spool to PDF output )

    Hi Experts,
    In my requirement i am using 'REUSE_ALV_GRID' to display logo.
    In our functionality we are executing report in background and we are converting spool into PDF output. Now our requirement is to display LOGO in PDF output.
    Any pointers on this are appreciated.
    Regards,
    Bhanu.R

    Hello,
    Use the top-of-page parameter of the FM 'REUSE_ALV_GRID_DISPLAY' and use the FM REUSE_ALV_COMMENTARY_WRITE to add the logo to the I_LOGO export parameter to get the logo in the ALV output. Now convert this to spool and to pdf and you can get the logo in the pdf as well
    Vikranth

  • Problems when viewing page in IE but not in Firefox - Help

    Please help! I'm new to using tables in Dreamweaver. I built my page in Photoshop, sliced it and then opened it in Dreamweaver. It looks fine on my Mac but when viewed on a PC in IE it appears as though there are lines or gaps between the cells of my table. How do I fix this? How can I make sure this doesnt happen again? For reference, the problem can be viewed here: http://www.amscattle.com
    Thank you for any and all help!
    SC

    Please help! I'm new to using tables in Dreamweaver. I built my page in Photoshop, sliced it and then opened it in Dreamweaver.
    Bad news - that action alone accounts for some significant percentage of the posts here on the forum.  The truth of the matter is this - the code that any graphics application writes is not usable for anything other than rapid prototyping.  This means it's not suitable for any production work.  Read this to discover one of the several reasons why that is the case -
    http://www.apptools.com/rants/spans.php
    Your gaps are a definitive proof of the brittleness of such table layouts.
    A much better approach would be to use a graphics application for what it does best - make graphics.  Build the page in DW.  Read this to see a suggested method - http://www.apptools.com/examples/pagelayout101.php

  • Pdf problems when converting to lion

    Interactive Pdf documents scrunched when converted to Lion operating sytem. Just upgraded to lion, my children have interactive day planners which were saved on the desktop as PDF documents, the writing is now scrunched when viewing or printing. Any suggestions?

    If you are using Adobe Acrobat for PDF files read here >  Apple Safari 5.1 and Adobe Reader/Acrobat Advisory

  • Menu positioning problem when viewing in Internet explorer on a pc

    Hi guys,
    I have created a website for a football team and I am having problems with the menu. It looks fine in all browsers apart from Internet Explorer. The menu positioning is meant to be on the left hand side but shows far right on the screen when viewed in Internet Explorer. Does anyone know how I can resolve this issue?
    http://www.stormersfc.co.uk
    css sheet - http://www.stormersfc.co.uk/style.css
    Hopefully someone can help.
    Cheers,
    Roy

    Hummm....its difficult to tell. Youre using so many redundant css styles ie not needed.
    Youre 'leftPan' <div> container is 140px in width but your ul (unordered list inside it is 244px wide?
    Why set widths and heights when they are not needed. You have no idea what height the ul and li will be in other users browsers. A child element placed inside a parent container will stretch to the full width without specifying a width for the child element. The key to web deisgn is keeping all the maths 100% correct. If you so much as get anything out by even one px it could break the design.
    #leftPan{
         margin-left: 90px;
         width: 140px;
    #leftPan ul{
         width:244px;
         height:250px;
         background-position: 0 0;
         padding-top: 0px;
         padding-right: 0;
         padding-bottom: 0;
         padding-left: 0;
         margin-top: 1px;
         text-decoration: none;
    I see no reason why your based structure ie the 'container', 'header', 'mainpic', sidebar1 and 'mainContent' should not work in all browsers. Now what you have inside those may be casuing the conflict. I would strip the page back to the base structure (check that it does work in all browsers) then begin to fill the containers, checking as you go.

  • How can I rotate a PDF document when viewing in adobe reader?

    How can I rotate a PDF document when iewing in adobe reader?

    That hardware button can actually be toggled to work either as a mute button, or a lock orientation button. This can be edited at the settings screen.

  • When opening attachments from my email, they are opening in HTML.pdf.  When viewing, they are nothing but symbols. Any ideas?

    When opening an attachment from my suddenlink email, the attachment opens in html.pdf.  When I use my gmail account, the attachment opens fine.
    Any ideas.  Thanks.

    Install the Flex:Player App;  http://itunes.apple.com/app/flex-player/id451024857?alreadyRedirected=1&mt=8
    Then you can open the movies, keep tapping on them and choose Open in Flex:Player.

  • PDF Export problems when viewing with Preview 4.2

    Hi Everyone,
    I'm an Indesign novice for sure, so this may be fairly basic to a lot of you, but I'm having problems with a document of mine. I've built my portfolio in indesign using PNG images from my book. In Indesign I've applied the gradient feather to each image to give it a reflection. When I export the book with no compression, it's too large, so I've tried regular JPEG compression (at maximum) and JPEG 2000 compression at lossless and I get better file sizes, however when I view the PDF in preview there's 2 problems:
    1. The images look like crap no matter what with any compression applied. Very blurry, pixelated... generally looks like crap. In Acrobat, everything looks sharp and beautiful.
    2. The reflections don't exist at all. There's just an upside down version of the image there with no transparency whatsoever.
    I need it to look good in both programs because it's impossible for me to control who's viewing my book in what program. It's so odd because a year ago when I built my portfolio in keynote, it looked beautiful in preview, but like crap in Acrobat.
    Any ideas?
    Thanks!

    I can understand the gradient feather not appearing properly, and I can build the reflections into the original PNG if I must, but any idea why the images look so bad? They look fuzzy, and far from sharp with ANY any compression. The only way an exported PDF looks ok in preview is if I export it with no compression at all. Yet when looked at in reader, they look sharp (even with compression).

  • PDF and Illustrator CC opacity mask.  The opacity mask displays perfectly in the print preview, and in the pdf document when viewed on my computer, but when printed the gradient opacity mask doesn't work.  Any suggestions?  Have not had this problem in ot

    Never had this issues in previous versions.  This IS a black/white gradient opacity mask over a black and white photo, but still don't think that is the problem.

    You may try the forum LiveCycle Designer.

  • Crystal for Eclipse intermittent problem when viewing CR in .pdf over Web

    *(I also have no idea why I'm not getting carriage returns/line feeds when I press the Enter key so that this message is readable.)*
    My developer is telling me that the below error is causing one of our Crystal reports to not populate with data, and has asked if there is a way to turn on tracing.  This is an intermittent issue and we've not been able to determine the cause, nor can I find out where I can create a support ticket for it with SAP.  It doesn't do it all the time and it doesn't do it with the same users.  We're a large enterprise user (US Army).
    Does anyone have any ideas?  I'm unfortunately not technical enough with Java or web delivery of Crystal.  The report runs fine nearly all the time and of course in the report designer it doesn't have this issue.  Our web developer is trying to find out why this is happening.
    Does anyone have any ideas at all what the culprit might be?
    Regards and thanks!
    Don Davis
    US Army
    Alexandria, VA, USA
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: java.lang.IllegalArgumentException---- Error code:-2147467259 Error code name:failed
            at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.if(SourceFile:237)
            at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:147)
            at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:128)
            at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:111)
            at jsp_servlet._reports.__crystalreportviewer._jspService(__crystalreportviewer.java:208)
            at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
            at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
            at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
            at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
            at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at mil.army.cisd.crb.filter.PortalUserFilter.doFilter(PortalUserFilter.java:224)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.IllegalArgumentException
            at com.crystaldecisions.reports.common.value.FormulaValue.Load(Unknown Source)
            at com.crystaldecisions.reports.common.value.CrystalValue.Load(Unknown Source)
            at com.crystaldecisions.reports.saveddata.saveddata.y.a(SourceFile:273)
            at com.crystaldecisions.reports.saveddata.saveddata.SavedData$a.getValue(SourceFile:159)
            at com.crystaldecisions.reports.saveddata.saveddata.x.a(SourceFile:318)
            at com.crystaldecisions.reports.saveddata.saveddata.x$a.new(SourceFile:270)
            at com.crystaldecisions.reports.saveddata.saveddata.x$a.for(SourceFile:199)
            at com.crystaldecisions.reports.saveddata.saveddata.DataView.a(SourceFile:1792)
            at com.crystaldecisions.reports.saveddata.saveddata.DataView.do(SourceFile:969)
            at com.crystaldecisions.reports.saveddata.saveddata.DataView.else(SourceFile:1640)
            at com.crystaldecisions.reports.saveddata.a.try(SourceFile:653)
            at com.crystaldecisions.reports.basicdataengine.a.u(SourceFile:829)
            at com.crystaldecisions.reports.basicdataengine.a.p(SourceFile:739)
            at com.crystaldecisions.reports.basicdataengine.a.a(SourceFile:220)
            at com.crystaldecisions.reports.datalayer.a.do(SourceFile:1626)
    at com.crystaldecisions.reports.datalayer.a.a(SourceFile:1404)
            at com.crystaldecisions.reports.dataengine.m.b(SourceFile:334)
            at com.crystaldecisions.reports.dataengine.j.b(SourceFile:518)
            at com.crystaldecisions.reports.dataengine.m.o(SourceFile:408)
            at com.crystaldecisions.reports.dataengine.m.a(SourceFile:173)
            at com.crystaldecisions.reports.dataengine.ContextNode.a(SourceFile:114)
            at com.crystaldecisions.reports.dataengine.ContextNode.a(SourceFile:95)
            at com.crystaldecisions.reports.dataengine.j.case(SourceFile:1080)
            at com.crystaldecisions.reports.dataengine.h.<init>(SourceFile:108)
            at com.crystaldecisions.reports.dataengine.DataContext.a(SourceFile:254)
            at com.crystaldecisions.reports.dataengine.DataProcessor2.a(SourceFile:4664)
            at com.crystaldecisions.reports.dataengine.DataProcessor2.a(SourceFile:4574)
            at com.crystaldecisions.reports.dataengine.DataProcessor2.new(SourceFile:2655)
            at com.crystaldecisions.reports.dataengine.DataProcessor2.byte(SourceFile:2610)
            at com.crystaldecisions.reports.dataengine.DataProcessor2.try(SourceFile:2282)
            at com.crystaldecisions.reports.dataengine.DataProcessor2.int(SourceFile:2442)
            at com.crystaldecisions.reports.dataengine.DataProcessor2.I(SourceFile:1013)
            at com.crystaldecisions.reports.dataengine.DataProcessor2.if(SourceFile:4816)
            at com.crystaldecisions.reports.dataengine.DataProcessor2.a(SourceFile:2020)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ObjectFormatter.a(SourceFile:309)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ObjectFormatter.a(SourceFile:250)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.u.e(SourceFile:784)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.f.e(SourceFile:386)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.u.for(SourceFile:246)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.aa.a(SourceFile:67)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ObjectFormatter.a(SourceFile:243)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ObjectFormatter.a(SourceFile:210)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.v.a(SourceFile:185)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.v.a(SourceFile:230)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.for(SourceFile:359)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.for(SourceFile:133)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ColumnFormatter.for(SourceFile:121)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.aa.a(SourceFile:67)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.a(SourceFile:514)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.a(SourceFile:452)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.a(SourceFile:369)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ah.a(SourceFile:72)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.ReportColumnFormatter.a(SourceFile:86)
             at com.crystaldecisions.reports.formatter.formatter.paginator.SinglePageFormatter.a(SourceFile:379)
                 at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.for(SourceFile:359)
                 at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.for(SourceFile:133)
                 at com.crystaldecisions.reports.formatter.formatter.objectformatter.ColumnFormatter.for(SourceFile:121)
                 at com.crystaldecisions.reports.formatter.formatter.paginator.SinglePageFormatter.for(SourceFile:180)
                 at com.crystaldecisions.reports.formatter.formatter.objectformatter.aa.a(SourceFile:67)
                 at com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.do(SourceFile:730)
                 at com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.formatPage(SourceFile:226)
                 at com.crystaldecisions.reports.formatter.export2.a.a(SourceFile:96)
                 at com.crystaldecisions.reports.formatter.export2.a.a(SourceFile:247)
                 at com.crystaldecisions.reports.formatter.export2.ExportSupervisorEx.if(SourceFile:642)
                 at com.crystaldecisions.reports.formatter.export2.ExportSupervisorEx.a(SourceFile:587)
                 at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.a(SourceFile:636)
                 at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.int(SourceFile:674)
                 at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1944)
                 at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:661)
                 at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:167)
                 at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:529)
                 at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:527)
                 at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)
                 at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:525)
                 at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:424)
                 at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:352)
                 at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)
                 at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)
                 at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:717)
                 at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)
                 at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)
                 at com.crystaldecisions.sdk.occa.report.application.ds.a(SourceFile:186)
                 at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:1560)
                 at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:341)
                 at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.if(SourceFile:223)
                 at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:147)
                 at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:128)
                 at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:111)
                 at jsp_servlet._reports.__crystalreportviewer._jspService(__crystalreportviewer.java:208)
                 at weblogic.servlet.jsp.JspBase.service(JspBase.java:35)
                 at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
                 at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    Edited by: Don Davis on Jun 13, 2011 6:26 PM
    Edited by: Don Davis on Jun 13, 2011 6:27 PM
    Edited by: Don Davis on Jun 13, 2011 6:29 PM
    Edited by: Don Davis on Jun 13, 2011 6:34 PM

    Hello, Phan Nguyen Binh;
    I would like to confirm what products you are using now.
    Are you running your reports on Crystal Reports Server XI (11.0) or Crystal Reports Server XI R2 (11.5)?
    What Service Pack do you have installed on your Crystal Reports Server?
    On your Development machine, what version of Visual Studio .NET are you using?
    What is referenced under Help|About Visual Studio .NET on the Crystal Reports line?
    On the server where you have installed the runtime. what version do you see for the following files? Right Click and go to Properties 'Version" tab for the full version number:
    CrystalDecisions.CrystalReports.Engine (11.5.3700.0)
    CrystalDecisions.Enterprise.Framework (11.5.3300.0)
    CrystalDecisions.Enterprise.InfoStore (11.5.3300.0)
    CrystalDecisions.ReportAppServer.ClientDoc (11.5.3300.0)
    CrystalDecisions.ReportAppServer.Controllers (11.5.3300.0)
    CrystalDecisions.ReportAppServer.ReportDefModel (11.5.3300.0)
    CrystalDecisions.Shared (11.5.3700.0)
    What .msi did you use to create your Click Once deployment?
    https://bcp.wdf.sap.corp/sap/sapnotes/display/0001206112
    I will watch for your reply.
    Elaine

  • IDcs3 export PDF issues when viewing in Preview

    I appear to be having issues when exporting PDFs from IDcs3. I have drop shadows on text and objects. When i export as a PDF and view it in 'Preview', I get a shadow that extends the area of the object. Drop shadows are not defined, they just have a block blur effect.
    The thing is when I transfer the file over to my MS machine, Acrobat displays the PDF perfectly. Is this a problem with Preview or is it something to do with the export PDF settings.
    Cheers

    Preview is not capable of handling the advance features of exported PDFs.
    Bob

  • Spool to pdf problem

    Hello,
    I am converting imternal table data to spool and then to pdf using CONVERT_ABAPSPOOLJOB_2_PDF in the report it self.
    But , its giving zero pages in pdf.Even executing the RSTXPDFT4 does not work.The type of data is RAW.
    I tries again by writing internal table data to report output , and i executed the report in background and it generated a spool no.
    RSTXPDFT4  works fine at this time.
    Is there any parameters that i need to pass.
    Thanks
    --Pradeep

    Hi Pradeep.
    I am facing the same problem hee, the table ids not getting updated at the run time. What other logic did you applied for the solution of this problem? Do let me know.
    Thanks.
    Warm regards,
    Harshad.

  • How to maintain PDF links when viewed in Apple Mail

    Hi All
    I've created a single page promo flyer in InDesign which has an email and a web link at the foot of the page. The flyer is to be distributed to clients as a PDF attachment via Apple Mail. The PDF has been created from the InDesign doc and the links display and behave as they are intended to. When I attach the PDF to a mail it displays just fine. I want recipients to be able to click on and follow the links directly from the Mail view in a single action without having to download the PDF and then click on the links. However when you try to click the links the whole PDF highlights blue and no link is activated. Can anyone suggest a way to achieve this?
    I'm using Apple Mail v7.3 on an iMac running OSX v10.9.5.
    Thanks in anticipation!

    If you are asking about addresses that are not in your Address Book, they are listed in Windows > Previous Recipients.
    Allan

  • PDF problem when used in Pro/ENGINEER

    Since the company I'm with now does not use separate part numbers for every different part, and a lot of times the description is the same (i.e. "TUBE"), many times everything with the description of "TUBE" comes in on the parts list in the same row with a quantity equal to everything with "TUBE" as a description. Needless to say, this causes a lot of problems with balloons etc. So, I added the parameter "&asm.mbr.name" to one of the cells to force a separate row for each unique filename, but made the text height .000001 so it wouldn't print. This works fine in printig from Pro/E directly, or making a PDF using the "TrueType" font option. But when we use the "Stroke All Fonts" option, the values for the parameter "&asm.mbr.name" show up as dots, which our checkers are demanding we remove. We can't simply use the "TrueType" font option as we want the font proportions we have on the format because the default .8 width text then bleeds over into other cells. I tried to put that one piece of text for the parameter in the repeat region on a layer to turn off at the dwg level, but Pro/E won't let me even pick the text string. So, does anyone know a setting for creating the PDF's that will ignore things under a certain threshold?
    Thanks!
    Frank
    P.S.  I know this is a pretty unique application, but I'm hoping someone here will know what I'm talking about. 

    CYCLE_MONKEY wrote:
    I'm creating the PDF in Pro/ENGINEER.  But, I'd have to assume that
    Adobe software would have to be embedded though to make the PDF,
    wouldn't it?
    I wouldn't assume that no. Lots of applications have their own PDF engines. Even other Adobe products. I would check with Pro/Engineer support.

Maybe you are looking for