XML Publisher report not printing German character ü properly

Hi
We have a BI PU Report which gets the XML from the 10g report.
When I run the report in Oracle Apps, the XML generated by the report has the correct name, but the pdf output doesnot show the correct name on it.
Name (in XML file): *<FSE_NAME>Kühn, Thomas</FSE_NAME>*
Name printed on pdf output: Kühn, Thomas
This issue doesnot occur when I run the report on the local system using the xml file and rtf template.
Please let me know if anyone has any idea about this issue. Attached is the xml file, rtf template and the pdf output.
Thanks & regards,
Anoop

Hi,
Please find below sql which will find the special characters in column of table,
SET serveroutput ON size 1000000
DECLARE
PROCEDURE gooey (v_table VARCHAR2, v_column VARCHAR2)
IS
TYPE t_id IS TABLE OF NUMBER;
TYPE t_dump IS TABLE OF VARCHAR2 (20000);
TYPE t_data IS TABLE OF VARCHAR2 (20000);
l_id t_id;
l_data t_data;
l_dump t_dump;
CURSOR a
IS
SELECT DISTINCT column_name
FROM dba_tab_columns
WHERE table_name = v_table
AND data_type = 'VARCHAR2'
AND column_name NOT IN ('CUSTOMER_KEY', 'ADDRESS_KEY');
BEGIN
FOR x IN a
LOOP
l_id := NULL;
l_data := NULL;
l_dump := NULL;
EXECUTE IMMEDIATE 'SELECT '
|| v_column
|| ', '
|| x.column_name
|| ', '
|| 'dump('
|| x.column_name
|| ')'
|| ' FROM '
|| v_table
|| ' WHERE RTRIM((LTRIM(REPLACE(TRANSLATE('
|| x.column_name
|| ',''ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@#$%^&*()_+
-=,!\`~{}./?:";''''[ ]'',''A''), ''A'', '''')))) IS NOT NULL'
BULK COLLECT INTO l_id, l_data, l_dump;
IF l_id IS NOT NULL
THEN
FOR k IN 1 .. l_id.COUNT
LOOP
DBMS_OUTPUT.put_line ( v_table
|| ' - '
|| x.column_name
|| ' - '
|| TO_CHAR (l_id (k), '999999999999')
DBMS_OUTPUT.put_line (l_data (k));
DBMS_OUTPUT.put_line (l_dump (k));
DBMS_OUTPUT.put_line ('*********************');
END LOOP;
END IF;
END LOOP;
END gooey;
BEGIN
gooey ('GL_ALLOC_BATCHES', 'DESCRIPTION');
END;
Thanks,
Amogh

Similar Messages

  • XML Publisher report not printing excel output due to special characters

    Hello,
    I am trying to create a xml publisher report which should display the output in excel. But the program completes with a warning status and the output is displayed as XML instead of excel, with some errors "An invalid character was found in text content. Error processing resource " and i think these errors are due to the special characters(eg: city/province - A Coruña, Cáceres). If i give rownum < 10 in my query, where there are no such characters it works fine and i am getting an excel output.
    Tried changing the XML encoding and it doesn't help (both mentioned below)
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <?xml version="1.0" encoding="UTF-8"?>
    Do anyone have a solution for this
    Thanks in advance
    Edited by: user10317098 on Jan 16, 2012 10:58 AM

    Hi,
    Check this links that might help you..
    https://forums.oracle.com/thread/1018488
    http://docs.oracle.com/cd/E10091_01/doc/bip.1013/e05000/toc.htm
    Here the Exact solution from Oracle
    In the XML PUBLISHER ADMINISTRATOR Resp..
    Click the administration..
    then Click HTML Output
    Then in the Base Image URI Give the url of your application for example
    http://Test.Test.com:8000/OA_MEDIA/
    And then
    Image File Directory give this as per your application setup
    /u01/app/oracle/apps/apps_st/comn/java/classes/oracle/apps/media/
    Thanks & Regards
    Srikkanth.M

  • XML Publisher Report not generating the PDF output.

    Hi,
    I am trying to develop a XML Publisher Report in R12 Vision Instance.
    I have developed the rdf report and concurrent program with XML as output format. Ran the concurrent program and I got the XML output. Based on XML output I have created the rtf template. Using both the template and xml output I have created in Data Definition and Template in XML Publisher Administrator Responsibility. Now I am comming to the concurrent program and running the program, here instead of generating the PDF output it is generating again the XML output and concurrent program completing with warning status.
    When I am trying to do the same in 11i Vision Instance, Concurrent Program completing with normal status and when trying to view the output it is saying "Unable to Publish output for the Processed Request".
    Kindly please help me out in this issue.
    Thanks,
    Manasa.

    Hi Mahesh,
    Here the concurrent programs are not erroring out. It is completing with Warning status and when we click on View Output the output is coming in XML format instead of PDF, this is in R12 Vision Instance.
    In 11i Vision Instance, concurrent program is completing with Normal Status but when we click on View Output it is saying "Unable to Publish output for specified request".
    Thanks,
    Manasa.

  • Check box in XML Publisher report not displaying

    Hi,
    In my XML Publisher report , my template contains a checkbox, using forms tools i create that check box and run the report
    but output of check box is not comming becoz,The XML Publisher default PDF output font does not support checkbox.
    can any one give idea to solve this who face same problems;
    Regards,
    venkat

    Hi Venkat
    What version of XMLP are you using ?
    Check the user guide, there is an entry in there describing how to specifiy the check box glyph to be used for checks and unchecked.
    Its will either be set using the UI or thru a config file depending on your version.
    Tim

  • My xml publisher report not display chart/graph in r12 apps

    dear all
    my xml publisher report is not showing chart/graph in oracle apps r12.1.1, but it's locally preview fine in MS word
    when i register rtf template in apps it just show data in xml not apply template without chart/graph it's work fine in apps
    please guide me.
    thanks
    Adnan zafar goraya

    Hello Adnan,
    To have the XML Publisher graphs display when started from Concurrent request, the DISPLAY environment variable must be specified.
    Please review the following Note on how to setup the Xserver
    Configuring VNC Or XVFB As The X Server For Applications 11i (Doc ID 181244.1)
    After this is done, you can run once again the concurrent program and check the output.
    Bogdan

  • Report cant print Chinese character properly when direct output to printer

    I have follow the instruction {How to Print PDF/UTF8 in R12? [ID 778970.1]} {PASTA 3.0 Release Information}
    I am able to print the chinese character properly in PDF format. (direct to printer)
    However, some standard report like "Final Payment Register" "TEXT format" NOT able to print chinese character(direct to printer)
    When I preview the report it can display chinese character properly.
    Please advise

    However, some standard report like "Final Payment Register" "TEXT format" NOT able to print chinese character(direct to printer)
    When I preview the report it can display chinese character properly.Please see (What Happened To The Preliminary And Final Payment Register In R12? [ID 746339.1]).
    Thanks,
    Hussein

  • XML publisher report not generating output for huge XML files

    Changed Depreciation Projections Report output type to XML.
    Defined a Data Definition and a new Data Template (RTF) for this report.
    Ran the Depreciation Projection Report to generate the XML output.
    Ran the XML Report Publisher report to generate teh PDF/Excel output of the above report.
    Output generated for smaller XML files. When XML size is big, the program is running for hours without generating the output.
    Teh RTF template is basically a matrix report in which the number of columns in the report is based on the number of periods the report is run for.
    The same is not working in the Desktop version also. The system is hanging when i try to view the preview pdf.
    The XML file size is approximately 33 MB.
    Please let me know if there is any way we can increase the memory size to see the output.
    Thanks,
    Ram.

    for publisher use Category: E-Business Suite

  • XML Publisher Report not displaying Chart/Graph in Excel Output

    Hi All,
    We are currently on Oracle EBS 11.5.10.2
    I am facing an issue with XML Publisher based report when i try to fetch the output in Excel.
    We have created an RTF in which i have embedded a graph. While viewing the output in PDF everything seems to work fine.
    however when i try to run the report with output as Excel the Graph is not displayed.
    Can you please let me know if i missed anything.
    Also it would be very helpful if someone can tell me how to get the output of Excel in .XLSX format.
    I have seen in various forums that you need to select the output type as Excel 2007, but i am not getting any such option while submitting the report.
    I am on EBS version 11.5.10.2 do we need to install any patch to get the output option.
    Regards,
    Sandeep

    Hi,
    Check this links that might help you..
    https://forums.oracle.com/thread/1018488
    http://docs.oracle.com/cd/E10091_01/doc/bip.1013/e05000/toc.htm
    Here the Exact solution from Oracle
    In the XML PUBLISHER ADMINISTRATOR Resp..
    Click the administration..
    then Click HTML Output
    Then in the Base Image URI Give the url of your application for example
    http://Test.Test.com:8000/OA_MEDIA/
    And then
    Image File Directory give this as per your application setup
    /u01/app/oracle/apps/apps_st/comn/java/classes/oracle/apps/media/
    Thanks & Regards
    Srikkanth.M

  • XML Publisher Report not opening on Desktop

    Hi All,
    I have installed XML publisher on my machine and after creating the RTF and loading XML, when i am trying to preview it, it;s giving me error that file not found. But the PDF output is formed at c:/program files/oracle/XML Publisher Desktop/Template for word/<One more folder>.
    But on my team mater machine it is working fine and he is able to open the PDF when he is pressing Preview link in RTF Template. As per him, many days back he did some thing but he is not aware of this now.
    Kindly help in resolvig this.
    Thanks
    Aryan

    Hi Gurus,
    Please please help me....
    This is taking a toll time of mine..
    Thanks
    Aryan

  • XML Publisher Report - Not able to see image stored on External server

    Hi
    I need to put image on XML report that is on different instance for that i had put a dummy image on XML template and in the WEB TAB for that image i put the tag like url:{ATTRIBUTE3} and attribute3 is having correct value we are also showing it on the report , but at the run time i can only see the dummy image of the template and the URL, not the actual image , URL points to a image on different server we can see the image when we place that URL in Web browser.
    Please help me , Thx in advance.
    Ranga

    Hi,
    I've got the same problem.
    Did you find any solution?
    Thank you
    Davide

  • PDF output generated by XML Publisher is not printing in Dotmatrix Printer

    Hi All,
    We have designed a template for a particular concurrent program to print it's output format in PDF. The concurrent is running fine and it has produced the output in PDF format. But we are unable to take a printout of the output in our Dotmatrix printer (Epson FX2175). We configured PASTA driver as per the Metalink Note ID: 739186.1. By using this Configuration we are able to take printout in our hp LaserJet 1320 printer. But not able to take printout in Dotmatrix printer. If anybody faced the same problem and find a solution please share here. Any help would be appreciated.
    Thanks in Advance,
    Regards,
    PLS
    Edited by: user10088016 on Oct 31, 2008 9:41 PM

    Hi,
    I have a similar issue, where the output is coming with some junk characters while printing to the printer. I contacted my System Administrator regarding the PASTA driver being installed on the printer and it is already done, but I am still having the issue.
    I am trying to print it from the Bursting control file, using following command : <xapi:print id="LOCALPRINT" printer="ipp://192.168.1.73:9100" copies="1" />
    Can anyone help me out on this.
    Thanks and Regards,
    Sumanth

  • If employee id is the same should not print on the xml publisher report

    Hi Dear,
    I met with one problem and needs some suggestion on the best approach on it. It is a xml publisher report.
    We have multiple rows for the same employee , but for the same employee only the first row needs to print the emplid.
    Do we need to write the if statement , how to get the value of the last row emplid ?
    For example :
    EMPLID EMP_RCD STATE
    1001 0 CA
    1 TX
    Any suggestion is appreciated.
    Thanks,
    Dennis

    I understand your requirement is as follows:
    Requirement:_
    The data is this ->
    EMPLID COLUMN 1 COLUMN 2 COLUMN 3
    EMPLID_01 DATA_01_01 DATA_02_01 DATA_03_01
    EMPLID_01 DATA_01_02 DATA_02_02 DATA_03_02
    EMPLID_01 DATA_01_03 DATA_02_03 DATA_03_03
    EMPLID_02 DATA_01_04 DATA_02_04 DATA_03_04
    And you need report in this format:
    EMPLID_01 DATA_01_01 DATA_02_01 DATA_03_01
    DATA_01_02 DATA_02_02 DATA_03_02
    DATA_01_03 DATA_02_03 DATA_03_03
    EMPLID_02 DATA_01_03 DATA_02_04 DATA_03_04
    Solution:_
    If my understanding is correct, then you can make use of variables
    at start of template set the variable to 0
    *<?xdoxslt:set_variable($_XDOCTX,'PREV_EMPLID',0)?>*
    at the end of each data row, reset the variable
    *<?xdoxslt:set_variable($_XDOCTX,'PREV_EMPLID',EMPLID)?>*
    while printing emplid in that row use IF condition
    *<?if:(xdoxslt:get_variable($_XDOCTX, 'PREV_EMPLID'))!=EMPLID?>*
    The above If condition will print emplid on the row only when there is change in EMPLID, so effectively printing emplid only on the 1st row of data for each employee id.
    Also, you need to ensure that you group by employee id before you print each row.
    Let me know if this works for you.

  • XML Publisher report output in RTF format does not display full page

    Hi,
    We have one XML Publisher report, the output of report in RTF format is not getting displayed in Full Page in normal way (MS Word -->View menu --> Print layout) but we can see full page display when we do MS Word -->View menu --> Outline.
    Appreciate your valuable inputs on this.
    Is this a template issue or any profiles needs to be set.
    Thanks
    Vijay

    Do you have any header and footer on your template?
    If you have any header and footer then try to adjust it as of to display full page.
    Thanks
    Yasar

  • Unable to print xml publisher report in excel format in R12

    Hi All,
    We are unable to print xml publisher report in excel format in R12. We were able to see the excel output but it's printing junk characters while printing and it's printing without any issue with PDF format.
    Please let me know how to fix this issue.
    Thanks,
    Raja

    Hi Raja,
    I presume you have gone through the debugging process of testing your template locally first to get the expected result.....
    If yes, this note might probably be helpful "Changing Output Format to RTF or Excel in XML Publisher Request Does Not Display Output Correctly (Doc ID 404512.1)"
    Good Luck,
    Lamine Balde

  • Printing of XML publisher report

    Hi All,
    This is in regards to the printing of XML publisher report in Oracle E-Business Suite.
    we have a XML Publisher report in Oracle EBS,which generates the output in PDF without any issues. But the same output is printed in XML Tags when it goes to the printer.
    Can you please throw some light why this is happening only for this particaular report,other XML reports in the system does not have this problem.
    Thanks in Advance for your help.

    I do not think it is possible to send all the pages to one tray and send only the last page to a different tray. However, you may review the following notes:
    Note: 357402.1 - How to Print the Output to a Different Paper Size Using XML Publisher Delivery Manager?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=357402.1
    Note: 394130.1 - How To Enable Printer Options Such As Duplex Printing Or Tray Selections For Bitmap Concurrent Programs
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=394130.1

Maybe you are looking for

  • Satellite C855D - Computer thinks key Num 9 is pressed

    Such a weird issue, I hope someone can help. So this started happening on a monday after leaving the laptop off since saturday; everything working perfectly - no issues at all.After turning on the machine and booting normally into windows, I noticed

  • Is it possible auto TO for movement type 561? if so, how ?

    Hello, Could  any one suggest whether auto TO possible or not for movement type 561? regards rk

  • Email config - I can't import email accounts

    I just bought a Curve 8520 and I can't import my email addresses into it. I do everything right - click on 'add', choose the email provider (gmail in this case), enter address, enter password. Then I submit, only to get a message saying 'address or p

  • Lot Sizing

    Is there any lot sizing functionality for fabricated parts orders in ASCP? For that matter how about within the manufacturing suite? We are a discrete manufacturer that could use some help in establishing optimal lot sizes in our plant.

  • Z10 What happened to sync for contacts etc.

    I managed (with the help of my cloud Outlook provider) to sync contacts and calendar using ActiveSync.  However, the Outlook Notes (which I heavily depend on and has always synced in the past) no longer syncs.  To me, this is unacceptable! I can do w