Characters not visible in Generated pdf format..

Hi ,
I am working on a report.I have created an rdf file and registered in Apps to generate the report output in pdf format.When i am running my concurrent request its generating the pdf file but its not generating any characters only numerical values are visible in the output pdf file.I am coming across a problem every time making some small changes..Please help me.
Thanks and Regards
Nisheeth

839041 wrote:
Hello, I cannot see these special czech characters when use TOAD but yes when use SQL Developer.Please explain what you mean by "cannot see..".
What is the definition of the relevant char column? (desc tablename)
*NLS_CHARACTERSET==>WE8MSWIN1252Note that the character (win 1252) set does not define characters such as c, d, e, n, r, t with hacek/caron diacritical mark (e.g. ř, Ť). The lack in character repertoire may be a problem depending on how Toad retrieves nchar columns (if applicable). So this may be a (non-oracle) app specific issue!

Similar Messages

  • Generating pdf format report in Oracle Reports 6i

    Hi everyone,
    I am using Report 6i. I am trying to generate a report in pdf format on the web. My problem is only the labels are displayed, while the data is not displayed. No specific error is shown.
    But the same report is working fine when generated in HTML format on the web.
    Can anyone guide as to what may be the problem in generating this report in pdf format.
    Thanks in advance.
    Elizabeth

    hi,
    can you send the URL used to generate the report.

  • Bookmarks not created when generating pdf

    Hello
    I am using 'robohelp for html' and generate pdf files as user guide from existing word format user guide.
    I import than and  create bookmarks for the TOC of the word user guide.
    Now I generate pdf. But the generated pdf file, do not show bookmarks, I also checked in View-Navigation Panels- > but no bookmark icon is there.
    I want bookmarks when I create pdf for my documentaion,

    Actually my concern is that the elements, I would like to add like bookmarks in the PDF files are in some files of the book, but not all.
    I feel that the problem is there.
    But why i see some of elements, and not all ?
    You do not have to physically use the elements in each file of the book; however, all the files in the book should use the same set of elements. My guess is that FrameMaker does not search through all the files in the book when it generates the list of available elements. It probably creates these things from the first file in the book.
    Do all the files in the book use the same set of elements? If not, make sure the first file in the book uses the set that includes all the elements you want to be in the bookmarks.
    In my opinion, all the files in the book should use the same set of elements. So, I suggest opening a copy of your template, select all the files in the book, and import the element definitions from the template to the files.

  • Generate PDF format from ABAP List using 'RSPO_SR_OPEN'

    Hi All,
    I need some help on the following code. I have 2 cases.
    First case:
    I am using the function Module 'RSPO_SR_OPEN' to create spool from the List Output.
    Once I get the Spool number from Above function Module I will submit it through report RSTXPDF5 to get spool request for PDF data created.
    I will use this spool number in the report RSTXPDFT5 to download it to Local system in PDF format.
    PDF will be generated but I am unable to open the PDF, some conversion error.
    Second Case:
    Instead of using function Module 'RSPO_SR_OPEN' , I will use standard Print button on the application toll bar to generate the spool number and then remaining step follows.
    In this case PDF file is generating as per the requirement.
    Now my question is why system does not work properly when I am using function module 'RSPO_SR_OPEN' .
    I have attached the code for your reference:
    AT USER-COMMAND.
    CASE SY-UCOMM.
    WHEN 'EMAIL'.
    IF SY-LSIND EQ 1.
    Send mail to User ID
    PERFORM SEND_MAIL.
    LEAVE TO LIST-PROCESSING.
    ENDIF.
    WHEN 'MM03'.
    SET PARAMETER ID 'MAT' FIELD I_MARA-MATNR.
    CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.
    WHEN 'LIST'.
    data: pdf_spoolid like tsp01-rqident.
    data: gd_spool_nr1(11) type c,
          gd_spool_nr2(10) type c.
    RANGES : R_SPOOL FOR TSP01-RQTITLE.
    Function Module to Create Spool Number
      call function 'RSPO_SR_OPEN'
           exporting
                dest             =  c_device
                LAYOUT           = 'X_65_200'
                copies           = '1'
                doctype          = 'LIST'
           importing
                spoolid          = gd_spool_nr
           exceptions
                operation_failed = 1
                others           = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Report to Generate spool number for PDF convert
    submit RSTXPDF5 with spoolno  = gd_spool_nr
                    with dstdevic = 'LOCL' and return .
    if sy-subrc eq 0.
    gd_spool_nr2 = gd_spool_nr.
    condense gd_spool_nr2 no-gaps.
    concatenate '00000' gd_spool_nr2 '*' into gd_spool_nr1.
    R_SPOOL-LOW     = gd_spool_nr1.
    R_SPOOL-OPTION  = 'CP'.
    R_SPOOL-SIGN     = 'I' .
    APPEND R_SPOOL.
    To select PDF Spool Number from TSP01 based on Title
    select single * from tsp01 where rqtitle IN R_SPOOL.
    if sy-subrc eq 0.
    Report to Download PDF spool to GUI
      submit RSTXPDFT5 with spoolid = tsp01-rqident and return.
    endif.
    endif.
    ENDCASE.
    Thanks & Regards,
    Nagaraj

    Hi,
    Check this code,
    REPORT  Z_CREATE_PDF_ABAPLIST NO STANDARD PAGE HEADING.
    PF-status containing a PDF button in the report Output to generate
    PDF form
    SET PF-STATUS 'Z_PDF'.
    *Table Declarations
    TABLES: MARA, MARC, MAKT.
    Internal Table Declarations
    DATA: BEGIN OF TS_MARA OCCURS 0,
             MATNR LIKE MARA-MATNR,
             MTART LIKE MARA-MTART,
             MATKL LIKE MARA-MATKL,
             LVORM LIKE MARA-LVORM,
             WERKS LIKE MARC-WERKS,
             MAKTX LIKE MAKT-MAKTX,
           END   OF TS_MARA.
    Selection Screen Parameters
    SELECTION-SCREEN BEGIN OF BLOCK B1.
      SELECT-OPTIONS: S_MATNR FOR MARA-MATNR OBLIGATORY,
                      S_WERKS FOR MARC-WERKS OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B1.
    TOP-OF-PAGE.
    write: 40 'Generating PDF from List Output' color 1 intensified on.
      skip 1.
      write: /1 'Date        :',  SY-DATUM,
             /1 'User ID     :',  SY-UNAME,
             /1(112) SY-ULINE.
    START-OF-SELECTION.
    Perform for Basic Selection
    PERFORM GET_MARA.
    Perform to Display Data
    PERFORM DISPLAY_MARA.
    AT USER-COMMAND.
    User Command to generate PDF Form
      AT USER-COMMAND.
      CASE SY-UCOMM.
        WHEN 'PDF'.
        DATA: L_PARAMS TYPE PRI_PARAMS,
                L_VALID TYPE STRING,
                W_SPOOL_NR LIKE TSP01-RQIDENT.
    TO GET PRINT PARAMETERS
          CALL FUNCTION 'GET_PRINT_PARAMETERS'
            IMPORTING
              OUT_PARAMETERS = L_PARAMS
              VALID          = L_VALID.
          IF SY-SUBRC <> 0.
          ENDIF.
    Internal table for Selection Screen
    DATA: BEGIN OF I_RSPARAMS OCCURS 0.
           INCLUDE STRUCTURE RSPARAMS.
    DATA: END OF I_RSPARAMS.
    Store the current selection screen details
    CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
      EXPORTING
        CURR_REPORT           = SY-REPID
    IMPORTING
      SP                    =
      TABLES
        SELECTION_TABLE       = I_RSPARAMS
    EXCEPTIONS
      NOT_FOUND             = 1
      NO_REPORT             = 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.
    SUBMIT TO GET THE SPOOL NUMBER
    SUBMIT Z_CREATE_PDF_ABAPLIST WITH SELECTION-TABLE I_RSPARAMS
                                 TO SAP-SPOOL
                                 SPOOL PARAMETERS L_PARAMS
                                 WITHOUT SPOOL DYNPRO
                                 AND RETURN.
    SELECT THE RECENTLY CREATED SPOOL
          SELECT MAX( RQIDENT ) INTO W_SPOOL_NR FROM TSP01
                                     WHERE RQCLIENT = SY-MANDT
                                     AND   RQOWNER  = SY-UNAME.
    *REPORT TO GENERATE SPOOL NUMBER FOR PDF CONVERT
          SUBMIT RSTXPDF5 WITH SPOOLNO  = W_SPOOL_NR
                          WITH DSTDEVIC = 'LOCL' AND RETURN .
          IF SY-SUBRC EQ 0.
            CLEAR W_SPOOL_NR.
    SELECT THE RECENTLY CREATED SPOOL FOR PDF
            SELECT MAX( RQIDENT ) INTO W_SPOOL_NR FROM TSP01
                                       WHERE RQCLIENT = SY-MANDT
                                       AND   RQOWNER  = SY-UNAME.
    *REPORT TO DOWNLOAD PDF SPOOL TO GUI
            SUBMIT RSTXPDFT5 WITH SPOOLID = W_SPOOL_NR
                             AND RETURN.
          ENDIF.
      ENDCASE.
    *&      Form  GET_MARA
          text
    -->  p1        text
    <--  p2        text
    FORM GET_MARA .
    CLEAR  : TS_MARA.
    REFRESH: TS_MARA.
    To select Materials based on Selection Criteria
    SELECT A~MATNR A~MTART A~MATKL A~LVORM B~WERKS INTO CORRESPONDING
                               FIELDS OF TABLE TS_MARA FROM MARA AS A
                               INNER JOIN MARC AS B ON A~MATNR EQ B~MATNR
                               WHERE A~MATNR IN S_MATNR
                               AND   B~WERKS IN S_WERKS.
    LOOP AT TS_MARA.
       SELECT SINGLE * FROM MAKT WHERE MATNR EQ TS_MARA-MATNR
                                 AND   SPRAS EQ SY-LANGU.
       MOVE MAKT-MAKTX TO TS_MARA-MAKTX.
       MODIFY TS_MARA INDEX SY-TABIX.
    ENDLOOP.
    ENDFORM.                    " GET_MARA
    *&      Form  DISPLAY_MARA
          text
    -->  p1        text
    <--  p2        text
    FORM DISPLAY_MARA .
    CLEAR  : TS_MARA.
    WRITE: /1   '|', 2(18)  'Material Number' COLOR 7,
             21  '|', 22(5)  'Plant          ' COLOR 7,
             28  '|', 29(13) 'Material Type  ' COLOR 7,
             42  '|', 43(14) 'Material Group ' COLOR 7,
             57  '|', 58(13) 'Deletion Flag  ' COLOR 7,
             71  '|', 72(40) 'Description    ' COLOR 7,
             112 '|'.
    WRITE: /1(112) SY-ULINE.
    LOOP AT TS_MARA.
      WRITE: /1   '|', 2(18)   TS_MARA-MATNR,
              21  '|', 22(5)   TS_MARA-WERKS,
              28  '|', 29(13)  TS_MARA-MTART,
              42  '|', 43(14)  TS_MARA-MATKL,
              57  '|', 58(13)  TS_MARA-LVORM,
              71  '|', 72(40)  TS_MARA-MAKTX,
              112 '|'.
    WRITE: /1(112) SY-ULINE.
    ENDLOOP.
    ENDFORM.                    " DISPLAY_MARA
    Thanks & Regards,
    Nagaraj Kalbavi

  • Could not display output in PDF format from a RDF file

    Hi all,
    I'm calling a report file (.RDF) from the browser using RWCGI.EXE, and specified the output in PDF format, but it always asking me to download the active-X for the PDF file generated by the report. I have Adobe Acrobat Reader installed on my machine, what could be the problem?
    thanks in advance.

    I had the same problem.
    As a quick fix, what I enventually did, if you are using WebDB and CGI, is to create an alias in the cgicmd.dat file.
    It worked after.
    Example of line:
    ===============
    web41pdf: report=web_41.rdf server=Rep60_Z11734 userid=DEMO6I/DEMO6I@PERSOEM destype=cache desformat=PDF tolerance=1440
    Then you call the URL http://<web site>/rw60cgi?web41pdf
    Yet I would be glad to understand why I also get this message.
    Philippe Dalmas.

  • I am able to generate PDF from Framemaker file but not able to generate pdf from book in robohelp

    Hi,
    Using robo help i am able to generate pdf  from a single framemaker file.
    but when i am importing whole book then i am not able to make it.
    And also it is not showing any error on console
    It goes to hang like situation and i have to close it from task maneger.

    Ok, silly question - why are you bothering to try and create PDFs from RH when you've got FM? FM to PDF produces great results; RH to PDF involves having to go through Word - i.e. RH - Word - PDF = too much work IMHO.

  • Automatically generating PDF format Report

    Dear buddies
    can u tell me plzzz that how can I generate my report to PDF format while showing the output on screen isn't necessary. 2ndly is there any automated way to mail this file to a client or I'll have to mail it manually? be careful that I'm using Developer - 6i. hoping a positive response,thanx.

    Hi,
    As u said, while showing the output on screen isn't necessary.
    For the 1st one, u set the system parameters..
    MODE: bitmap (for pdf it should be bitmap).
    Destype: File
    Desname : give some name to the file in your local dir..
    For the 2nd one, u have to configure ur local mailing system..
    For eg: Microsoft Outlook..
    it's enough if u configure ur local mailing system and then
    give an option in the report calling form to send it to mail..
    and set the Destype to Mail.
    Hope this will clear your doubt..!

  • Table Header not Recurring - when Generate PDF from HTML with tables

    Hello,  It is not working as expected...and I'm not sure if the functionality is supported.  Want to create PDF from html document. The html document contains a html table that typically contains a large number of rows.  To make reading easier the html table used thead and tbody elements, and their children, so that when the table extends across pages when printed the header element recurs on each page.  However, the header element is not recurring in the generated PDF document (it only occurs in the first row of the table).  Just wondering if you have tried or used this functionality (created PDF from html with table with headers and the PDF included the table with recurring table header.  And if so, did you do anything special to make it work.  Thanks for any insight.

    If there's a problem with that package, I suggest you speak to the developer of that package and ask them to investigate.  It's not an Oracle supplied package so you are wrong to look for help here.

  • We are not able to generate pdf-files.

    Hi ,
    I am facing issue to generate pdf files in BI .Can anyone please help me in this. i am getting error "Error while generating pdf"
    Regards
    Brijesh Prasad

    hi brijesh,
    make sure that ur ADS cofiguration is correct.
    also u must know that max pdf page limit is 400.
    hope it will help u
    thanks.

  • Workbook is not getting saved in PDF format on website directory

    I have an Excel workbook, which I am trying to save in Pdf file format on website directory at azure, and after creating pdf uploading it on azure blob storage. The code is working fine on local but on web server it is not uploading pdf on storage,
    Code Ex:
    //Save the document in html format
                    workbook.Save(excelFile);
                    string fileName = System.IO.Path.GetRandomFileName();
                    string realPath = Server.MapPath("~/Content/");
                    string pdfFile = realPath + fileName + ".Pdf";
                    workbook.Save(pdfFile, SaveFormat.Pdf);
    Below code I am using to upload PDf file on Storage:
    private string UploadPdfFileToStorage(string filePath, string fileName)
                //Console.WriteLine("Second:=>" + filePath);
                // Retrieve storage account from connection string.
                var storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConnectionString"));
                // Create the blob client.
                CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
                // Retrieve a reference to a container. 
                CloudBlobContainer container = blobClient.GetContainerReference("reporthtmlfiles");
                // Create the container if it doesn't already exist.
                container.CreateIfNotExists();
                //Permit container for public acces
                container.SetPermissions(new BlobContainerPermissions { PublicAccess = BlobContainerPublicAccessType.Container });
                fileName = fileName + ".pdf";
                CloudBlockBlob blockBlob = container.GetBlockBlobReference(fileName);
                blockBlob.Properties.ContentType = "application/pdf";
                byte[] file = System.IO.File.ReadAllBytes(filePath);
                MemoryStream objMemoryStream = new MemoryStream(file);
                objMemoryStream.Seek(0, SeekOrigin.Begin);
                blockBlob.UploadFromStream(objMemoryStream);
                objMemoryStream.Close();
                return blockBlob.Uri.AbsoluteUri;
    Please help, thanks in advance

    Hi,
    Based on your description, your pdf file is saved to server side, so if you try above code on your local, you could read the file, but, if host your application to azure, you need to get the file stream first, then upload from the stream. Please set
    the breakpoint at: "byte[] file = System.IO.File.ReadAllBytes(filePath);" check this file variable.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Links to FM Cross References do not work in Generated PDFs

    Windows XP Professional SP2, FrameMaker 7.0p576, Acrobat Professional 8.1.2.
    I have multiple volumes that are intended to ship together. So, for argument's sake, I have Book_1.fm, Book_2.fm, Book_3.fm.
    Within Book_2.fm, I create cross-references to Book_2.fm and Book_1.fm.
    When I generate the PDF files for all three books (using Frame's Print Book, Printer set to Adobe PDF, Generate Acrobat Data so my bookmarks are generated as links), Book_2.pdf's cross-referenced links to within Book_2.pdf work perfectly. However, Book_2.pdf's cross-references to Book_1.pdf result in the following message:
    There was an error opening this document. This file cannot be found.
    The problem occurs whether the books reside independently, as a single combined PDF file, or as a PDF package (single combined and package both generated after the three individual Book_x.pdf files exist).
    I have kept all PDF filenames identical (minus the extension) to the FrameMaker .book names.
    Thanks for your input.

    Sandra,
    This is an explanation and NOT a solution. When you create a cross-reference to another file, you have to have the file open. Apparently, Frame sees a file in a different book as just a file; it seems to have no way to know that it is part of a different book. Hence, the link points to a chapter name, not a book name. Again this is just an explanation.
    I do not know how, or if there is a way, to do what you want to do, other than edit the links after the PDFs are created, which I am sure is not what you were intending to do.
    Maybe the gurus on these forums have a way to do it.
    Van

  • RoboHelp not able to generate PDF document properly

    Hello,
    I have RoboHelp for Word V9.0.2 and when I want to generate a PDF file, I've got many topics named 'No Data', and some of the parts only of my document has been computed.
    What am I supposed to do to have a clean source file in order for the PDF generation to be done correctly?
    Have you got any idea?
    Thanks.
      Philippe.

    Re,
    I've tried to update the options into Word associated to Template add-ins, but nothing changed.
    I've also tried to set the lowest rights to macro, but, didn't change the issue.
    Tried to erase the RTF by keeping the .doc file and tried to erase the .doc file by keeping the .rtf one.
    Maybe it is due to pictures which have not been inserted through True Code. I've tried to change it, but nothing happened in the menu display mode : 516 pages are changed in an half of seconds. I doubt it is working correctly.
    Anyway, I don't know what to do further...
    Ideas?
    Thanks.
      Philippe.

  • Images does not appears in the PDF format (XSL-FOP)

    Hi, for me it seems to be impossible to generate a PDF with graphics. I have wrote the customized FOP searlizer with the FOP version 20.3.
    Here is the code from the FOP style sheet, all other contents showns correclty except the image.
    <fo:block >
                                  <fo:external-graphic src="uri('http://localhost:8090/siriusbilling/Logo.GIF')" position="relative" top="7pt" left="30pt" height="30.0pt">
                                  </fo:external-graphic>
                             </fo:block>
    Any help or comments on the issue would be really apperaicted.
    I am using Jdeveloper9i.
    Thanks
    Mohammad

    I Googled for fo:external-graphic and the examples I see use url() instead of uri().
    Maybe that's the problem. If not, then this is probably a question for the FOP user's list.
    Try http://xml.apache.org/fop/maillist.html

  • Superscript Characters not printing in a PDF

    I was wondering if anybody knows of a work around to print superscript characters in a table.
    I am a Structural Engineer and use tables for my loadings however instead of m^2 (the 2 is superscript and no ^) I get m when I print my document to a pdf. But when I print to paper it prints as shown.
    The wierd thing is if the superscript isn't in a table it will print ok !!!
    I can obviously use ^2 instead but this looks unprofessional and a mess.
    I tried to log this problem to Apple, but they wanted $20 just for the privledge
    Thanks inadvance

    Just tried again in the new Numbers 3.5 with Yosemite and this seems to have been finally fixed.
    Printed to a pdf and superscript text was printed correctly.
    I'll do some more testing but I hope I can finally say goodbye to Numbers 2.3.
    My guess is this will be fixed in Pages too...

  • Chinese/Japanese characters not appearing on smartforms PDF output

    Hi,
    The print preview of the Smartforms output layout is correctly displaying the characters of native/local languages like Chinese, Japanses etc.....but when i try to print this output, it is printing the junk characters.
    Whereas the same printer is able to print the Chinese, Japanese characters when printed from MS Word.
    So this issue is occurring only when printing from SAP.
    In spool i could see the Chinese/Japanese characters appearing correctly, whereas when i try to convert it to PDF using program RSTXPDFT4, the PDF is again showing junk characters replacing the chinese characters.
    Thanks!

    This could be of different reeasons...
    1) Make sure your printer is uni-code enabled.
    2) Make sure, your unicode enabled printer is configured in SAP.
    3) make sure, your printer device is supported by SAP. (You can find list of SAP recommended printers in www.service.sap.com)
    4) Check whether the correct device type is used for printing chinese and japanese characters.
    5) Check code pages.
    6) Make sure you use Cyrillic font family, for printing chinese and Japanese characters.
    Regards,
    SaiRam

Maybe you are looking for

  • Error when deploying application in weblogic 10.0

    weblogic.application.ModuleException: [HTTP:101216]Servlet: "cds-service" failed to preload on startup in Web application: "/cds-wsclient".           org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'hdr2Persiste

  • Possible workaround for: Launch Debugger Error "Unable to connect to the RDS server"

    I do not yet have a reproducible case for this. *Sometimes* ColdFusion Builder throws the "Unable to connect to the RDS server" error, when attempting to start a debug session against a remote server. However, "RDS Dataview" and "RDS Fileview" views

  • Why after uploading to FTP does the site page appear then disappear?

    Hello Everybody, I am an amateur when it comes to Muse but am capable of making minor text and image changes, saving as HTML, then uploading to my FTP server.  I have an accordion menu on my main page that I had previously made some changes to by add

  • How to get the iView Property value in NWDS

    Hi all, I my requirement I need to get some of the iView Property Value in NWDS. Can anybody help me for this? Helpful answers will appreciate. Thanks & regards, Kathiresan R

  • Data class is ambiguous

    hi i get the following error when i compile my code. it says that my Date class is ambihuous??? icomm server\src\icommserver\admin.java:268: reference to Date is ambiguous, both class java.util.Date in java.util and class java.sql.Date in java.sql ma