PO Not Printing special character

Hello Gurus,
We have printing issue with POs. Users in other countries need to be able to print the PO to display special characters like:
Ä/ä,Ö/ö, Ü/ü
However, when we preview the PO from ME9F, it looks just fine with the special characters in them. But when printed or trial-printed, those special characters are replaced by space, #, ", etc.
I will appreciate your solutions.

Hi,
Plz check the following link.
Re: Few keyboard special characters are coming as # in printout
Thanks,
Sree.

Similar Messages

  • Problem about printing special character in bex query analyzer

    Hi,
    in bex query analyzer i have created one restricted key figure , in which i have substracted two date with the help of replacement path.
    So i got result.
    But i am facing one problem. when in both date, if one date is null or # then it is giving some big value like -734567.
    But i want some special character like X instead of this big values.
    So how can i do this?
    With the help of if and else it can be done.
    But how can we print special character in report.
    Please help me
    Thank you in advance

    hi,
    You cannot show X in a formula result. You can highlight the row using exception.
    Still if you want to show X in the result then you need to create a formula variable on a char which returns X value all the times.
    Then you can use the three formula variable to write a formula so that it shows the difference:
    date1 -- formula variable
    date2 -- formula variable
    charx -- formula variable.
    the formula will be
    Count(date1)Count(date2)(date1 - date2) + charx *(count (delta(date1) + delta(date2))).
    this would return the X value if any of the dates are empty otherwise their difference.
    regards.
    Arvind.

  • HOW WE CAN VALIDATE A FIELD THAT SHOULD NOT BE SPECIAL CHARACTER?

    HOW WE CAN VALIDATE A FIELD THAT SHOULD NOT BE SPECIAL CHARACTER?

    data : v_abcde like sy-abcde,
             v_num like '0123456789',
              v_data(60) type c.
    start-of-selection.
    v_abcde = sy-abcde.
    concatenate v_abcde v_num into v_data.
    if ur field co v_data
    else.
    message.
    endif.

  • On the JTextPane need to don't print special character .........

    Hello All,
    I work on JTextPane , and want to don't print special character when the user press on this the JTextPane ,like "a" character,
    the application will test is this character is "a" or "A" , it won't print the character , else print it , So how can i do that code.??
    Thanks.

    There are other ways, but the best is probably to use a documentFilter.
    The Java Tutorials: [Implementing a Document Filter|http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html#filter]
    luck, db

  • EP6.0 SP2: Howto print special character in hbj:textview

    Hello,
    i tried to print the character ä (special german) in the textView.
        <hbj:textView
              id="Text_ZIP"
              text="vorläufiger Stand 23.12.2004"
           design="EMPHASIZED"
       />
    But the iView didn't run. I get an error.
    Has anybody of you an idea?
    Thank you
    Message was edited by: Stephan Borchert

    Hi Stephan,
    within Eclipse, please save all documents in UTF-8 (Window -- Preferences -- Workbench -- Editors -- Text File Encoding -- Other --UTF-8). If you have saved them in Cp1252, you will get problems to switch to UTF-8, so copy the content of such a file, delete it, switch to UTF-8 and insert again.
    Hope it helps
    Detlev

  • Printing special character from report

    I was reading thru the other discussion on the same subject as I hv a similar problem. I am trying to print the character ' in a report. Note that it is not coming from the database. It is a hard typed character in the text of the report. It works fine on NT but doesn't work when we run the report under Unix. Currently our report server is on Unix so.. It just prints a '?'. Any suggestion will be highly appreciated.
    Thanks,

    I was wondering if there is a way to bypass
    Unix fonts and send the character to the
    printer using PL-SQL code in this
    particular case. Any idea?Ideas, maybe, answers, no. I haven't had
    that particular problem, but if I did, I
    would:
    1) First step: make sure you can generate
    a report that has the correct character
    code value and that your Unix OS doesn't
    force it to '?' because of US7ASCII.
    2) Second step: make sure the printer is
    given something it can understand; the
    character has to be in it's font palette
    too. Either it has to know what to do
    with B1 hex, or you have to put a header
    in your output file telling it how to
    interpret that.
    Good luck, sorry I couldn't help more.
    -- Allan Plumb

  • 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

  • Unable to print special character in SAP script

    Hi,
      There is an address which needs to be hardcoded in a SAP Script form.
    It looks like:
    Česká republika s.r.o
    Karla Engliu0161e 3219/4
    Česká republika
    IČO:  25635972
    The letters which has got a tilde and sign above them are appearing as a hash '#' in print. I have tried uploading it as an image and as standard text. But still not working. Can someone help please?
    Thanks in advance,
    Anita

    Hello,
    Is your SAP Unicode? If no, then this can get very messy. If yes, I'd start with checking if the font used by the SAPScript supports that character.
    Regards,
    Michael

  • PDF created in MS Word does not print special characters correctly

    I am having a problem with converting an MS Word document to a PDF. This document contains the Ohm symbol and the greater than or equal to symbol. I am using Word 2007 and Acrobat X Pro.
    I am simply using the insert symbol feature in Word to insert the symbols. They appear fine in Word. When I print to PDF the Ohm symbol turns into an '&' and the greater than or equal to symbol turns into an 'e'.
    A fellow I work with who has the exact same computer and program setup as me does not have this issue.
    What can I do to correct this?
    Thanks!
    Chris

    I tried all of the print/press options and they all do the same thing.
    I have always used the pdf maker button from the MS Word ribbon.
    I just tried using the print dialog and selected Adobe PDF with the 'high quality print' option that I need to use and this time it worked! But it is not really fixed as I make a lot of PDFs every day and need the one-click functionality.
    In the PDFs that work and PDFs where the character fails I tried editing the text and it says that the font is substituted. In MS Word i am using Arial, Acrobat is using some "ArialMT" font that I never heard of.
    The embeded fonts are also listed as ArialMT.

  • Adobe LeanPrint prints special characters

    LeanPrint prints special character strings some times for the whole document and some other times for some phrases (may be URLs).

    Hello,
    Could you please let us know if you were trying to print a non english document? Is it possible for you to share the document or relevant content with us for analysis?
    I am assuming this was observed on Microsoft Word plug-in. Let me know if otherwise.
    Thanks,
    Adobe LeanPrint Team

  • Problem with CONVERT_OTF, special character '-' printing not properly

    Hi experts,
    when printing PO item text; in Print Preview, text displays correctly. But in program by using 'CONVERT_OTF' FM output is converting into PDF and this PDF is send it to the PO creator through mail,   In the PDF present in the mail, the special character ' - ' is not displaying properly; i.e the special character ' - ' is replaced by '  ' space. For the text we are using Text editor and Font family is 'COURIER' , device type is 'PDF'.   And also i tried with different Font fammilies, for that it beheaves differently but not displays as it is the special character ' - '.
    Thanks and regards
    Aumprakasharya T

    Hi,
    Which device type is used to create the PDF? i.e. which deivce type is used in the OTF data that is converted to PDF? If you use device type PDFUC or SWINCF, then it should work fine. (see SAP not #999712 about unicode PDF conversion)
    Regards,
    Aidan

  • Printing Problems with the special character &

    Hi All,
    When our users are printing POS character & is printing as junk i.e where ever there is a & print prieview shows & along with
    some other characters <(>&<)> .
    Host Spool Acess Method is F:F: Printing on  Front end computer
    HostPrinter is __Default

    Sorry i was in between and it got posted.
    Device Type is SWINCF CASC Fonts SAPWIN Unicode
    other special characters like " and - are being recognized. It does not seems to be a print problem coz i can see the junk in print
    preview. Has any one seen this error before. I apologize if i posted this in the wrong forum
    Regards,
    Ershad Ahmed

  • How can I use Greek symbols in a text in Pages? Greek symbols are not in the special character list.

    How can I use Greek symbols in a Pages text? Greek symbols are not included in the special character collection.
    I need to import for example a sigma from Word or Adobe illustrator and then Pages can recognise it. I can not find it from within Pages.

    Special character palette from the edit menu does have sigmas under European ... > Greek ...
    You can do a search at the bottom of the Special Character palette. Double click on the greek capital letter sigma. You will get a lot of sigmas.

  • Special Character not displayed correctly on Japanese OS

    Hi,
    I have an application build in LabVIEW that I want to install on a Japanese OS but some of the special character are not displayed correctly like °.
    Is it possible to tell my application to use the US ASCII table to display character? Or I need to code special case for Japanese OS?
    Thank you 
    Dany
    Dany Allard

    Hi Dany,
    It sound like tyou are trying to localize your application to Japanese. You might want to take a loot at this link here 
    Joe Daily
    National Instruments
    Applications Engineer
    may the G be with you ....

  • Problem is occurring in docx format; it is not printing "New Line" character in extracted txt using IFilter (offfiltx.dll) while with doc file IFilter (OffFilt.dll) is working fine.

    Problem: Problem
    is occurring in docx format; it is not printing “New Line” character in extracted txt using IFilter (offfiltx.dll) while with doc file IFilter (OffFilt.dll) is working fine.
    Environment: -
    Operating
    System:
    Windows XP SP2/7
    Language:
    C#
    MS
    Office Version: - MS Office 2007/2010/2013
    Problem
    Description: -
    We
    havedocx
    file with new line character, and we are processing this file in IFilter for extracting text, and it is giving output with concatenation of lines.
    Docx
    file format (Sample.docx)
    Test this music
    Word processing
    Testing docx file
    Output:
    - Test this music Word processing Testing docx file
    Requirement:
    - We
    have requirement to get following text in particular format with New Line from docx because client is using docx format only.
    Test this music
    Word processing
    Testing docx file
    Attempt:
    We have tried a lot after changing IFilter configuration,
    but it is not giving required output. Then we saved same file in doc format (Sample.doc), which is giving required output.
    Because it is application specific problem, kindly
    assist to resolve issue on priority. We are sharing IFilter paths for extracting text for doc and docx.
    Doc Filter Location: - %systemroot%\system32\OffFilt.dll
    Docx Filter Location: - <Drive>:\PROGRA~1\COMMON~1\MICROS~1\Filters\offfiltx.dll
    Code Snippet for setting property of filter
    internal static IFilter LoadAndInitIFilter(string fileName, string extension)
                IFilter filter
    = LoadIFilter(extension);
                if (filter
    == null)
                    return null;
                IPersistFile persistFile
    = (filter as IPersistFile);
                if (persistFile
    != null)
    persistFile.Load(fileName, 0);
                    IFILTER_FLAGS flags;
                    IFILTER_INIT iflags
    =
                                IFILTER_INIT.CANON_HYPHENS
    |
                                IFILTER_INIT.CANON_PARAGRAPHS
    |
                                IFILTER_INIT.CANON_SPACES
    |
                                IFILTER_INIT.APPLY_INDEX_ATTRIBUTES
    |
                                IFILTER_INIT.HARD_LINE_BREAKS
    |
                                IFILTER_INIT.FILTER_OWNED_VALUE_OK;
                    if (filter.Init(iflags,
    0, IntPtr.Zero, out flags)
    ==IFilterReturnCode.S_OK)
                        return filter;
                Marshal.ReleaseComObject(filter);
                return null;
    Kindly
    assist to resolve this issue and also let us know if any input is required.
    For any help, we would be really
    thankful.

    Kindly
    assist to resolve this issue and also let us know if any input is required.
    For any help, we
    would be really thankful.

Maybe you are looking for