Printing Pro*C Outputs with Other Language Text and PCL

Hi,
Since I did not find any separate forum for Pro*C, I am posting my query in this forum.
In our application, using Pro*C programs we are generating reports. These reports contain other language characters such as Arabic, Thai along with printer control characters (PCL). Earlier for the reports that contains only English characters, we have used C program to print the document and now we could not use the same C program because of the presence of other language characters in the output (when the old C program is used for printing, the other language characters are printed as junk).
Can anyone update me about the options that are available in C or VB or any other third party printing program to print the documents generated in other language as well as with printer control characters.
Thanks in advance.
Best Regards,
Ganesan

Hey Thanks .
Does that mean I will put 1900 as character set in that device type and assign it to printer and then print with that ?
Best
Ganesh

Similar Messages

  • I see boxes instead of Japanese or other language text

    I see boxes instead of Japanese or other language text.
    This happens on my my browsers, not just firefox. I tried downloading chrome and safari but this did not help.

    Windows XP doesn't have support for Japanese and other languages installed by default.
    # Click the Start button and choose Control Panel.
    # Click the Date, Time, Language and Regional Options icon.
    # Click the Regional and Language Options icon.
    # Click the Languages tab.
    # Under Supplemental Language Support, make sure both "Install files…" options are checked.
    You may also want to install ClearType fonts that were introduced in Windows Vista.
    * [http://www.microsoft.com/en-us/download/details.aspx?id=10550 Japanese ClearType fonts for Windows XP | Microsoft Download Center]
    * [http://www.microsoft.com/en-us/download/details.aspx?id=10490 Korean ClearType fonts for Windows XP | Microsoft Download Center]
    * [http://www.microsoft.com/en-us/download/details.aspx?id=14577 Simplified Chinese ClearType fonts for Windows XP | Microsoft Download Center]
    * [http://www.microsoft.com/en-us/download/details.aspx?id=12072 Traditional Chinese ClearType fonts for Windows XP | Microsoft Download Center]

  • Photoshop Elements 12 no longer see's my scanner.  So I cannot scan my pictures, help.  Windows 8.1 with HP Officejet 6500A Plus printer.  Scanner works with other programs in my PC.  Problem is PS12

    So I cannot scan my pictures, help.  Windows 8.1 with HP Officejet 6500A Plus printer.  Scanner works with other programs in my PC.  Problem is PS12

    I bought the Officejet 6500A Plus about one month and have experienced the very same problem. I tried to remedy this problem following suggestions in a number of different posts (static IP, router, firewalls etc), all to no avail. Last week I called support. The support I received by the tech over several hours and different days for a week was very good. However none of his suggestions corrected the connection issue. After today's recommended fix failed, he advised HP is aware of this issue with the 6500 and other affected printers. He claimed HP was working on a firmware upgrade. He did not know when the update would be provided. The tech also claimed HP acknowledged this problem in a written announcement. He agreed to email the announcement to me. I haven't received it. This has been the only problem I've had with the 6500

  • I have a problem with other languages with Firefox 3.6.6 and Serverlight

    I acquired the problem with other languages in Serverlight when I update my Firefox to 3.6.6
    It seems that only English chart is working properly. I have WinXPprof and have no any other additionally added languages programs. But I use every day Cyrillic and Greek charts and they are working in others applications except on Serverlight. I do thank you for any coming help.
    == This happened ==
    Every time Firefox opened
    == After updating my Firefox to 3.6.6. version

    Do not reply to engineer. It is a phishing scam.

  • How to display data with the same text and key in the drop down list?

    Hi All,
    Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    REPORT ZTESTING.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST,
          c(20) type c.
    *      c = 'select any'.
    data:begin of itab occurs 0,
          kunnr like kna1-kunnr,
          name1 like kna1-name1,
         end of itab.
    data:begin of jtab occurs 0,
          kunnr like kna1-kunnr,
          land1 like kna1-land1,
         end of jtab.
    PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
                              default 'SELECT'.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'p_list'.
    VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    APPEND VALUE TO LIST.
    VALUE-KEY = '2'.
    VALUE-TEXT = 'Country'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    start-of-selection.
    select kunnr name1 up to 20 rows from kna1 into table itab.
    select kunnr land1 up to 20 rows from kna1 into table jtab.
    case p_list.
    when '1'.
    loop at itab.
    write:/ itab-kunnr,itab-name1.
    endloop.
    when '2'.
    loop at jtab.
    write:/ jtab-kunnr,jtab-land1.
    endloop.
    endcase.
    <Added code tags>
    Moderator Message: Please use the "code" tags to format your code snippet.
    Edited by: Suhas Saha on Nov 17, 2011 11:19 AM

    shawnTan wrote:
    Hi All,
    >
    > Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    >
    >
    REPORT ZTESTING.
    >
    > TYPE-POOLS: VRM.
    >
    > DATA: NAME  TYPE VRM_ID,
    >       LIST  TYPE VRM_VALUES,
    >       VALUE LIKE LINE OF LIST,
    >       c(20) type c.
    >
    > *      c = 'select any'.
    >
    > data:begin of itab occurs 0,
    >       kunnr like kna1-kunnr,
    >       name1 like kna1-name1,
    >      end of itab.
    >
    > data:begin of jtab occurs 0,
    >       kunnr like kna1-kunnr,
    >       land1 like kna1-land1,
    >      end of jtab.
    >
    > PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
    >                           default 'SELECT'.
    >
    > AT SELECTION-SCREEN OUTPUT.
    >
    > NAME = 'p_list'.
    >
    > VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    > VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    > APPEND VALUE TO LIST.
    >
    > VALUE-KEY = '2'.
    > VALUE-TEXT = 'Country'.
    > APPEND VALUE TO LIST.
    >
    > CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    >
    > start-of-selection.
    > select kunnr name1 up to 20 rows from kna1 into table itab.
    > select kunnr land1 up to 20 rows from kna1 into table jtab.
    >
    > case p_list.
    > when '1'.
    > loop at itab.
    > write:/ itab-kunnr,itab-name1.
    > endloop.
    >
    > when '2'.
    > loop at jtab.
    > write:/ jtab-kunnr,jtab-land1.
    > endloop.
    > endcase.
    >
    > <Added code tags>
    >
    > Moderator Message: Please use the "code" tags to format your code snippet.
    >
    > Edited by: Suhas Saha on Nov 17, 2011 11:19 AM
    This surely seems to be a bug to me(if not by design),  did you check for any SAP notes? Perhaps a front end trace can help(Note 407743) !
    -Rajesh.

  • I have an interactive CD-Rom as part of my Italian language text, and have loaded it onto the iMac.  How can I also copy it to the iPad?

    I have an interactive CD-Rom as part of my Italian language text, and have loaded it onto the iMac.  How can I also copy it to the iPad?

    You can only install apps from the iTunes app store on your computer and the App Store app directly on the iPad. Does the maker of the CD have an app in the store with the CD contents already in it ?

  • I have been having issues with not receiving texts and voicemails daily, for a few months now. If I turn the phone completely off, when I turn it back on the messages will flood in from hours before. I can't be continually turning off my phone in case som

    I have been having issues with not receiving texts and voicemails daily, for a few months now. If I turn the phone completely off, when I turn it back on the messages will flood in from hours before. I can't be continually turning off my phone in case someone left me a message. How do I resolve this issue?

    Wifi:  my Cell phone will remember 10 wifi connections.  So delete any you don't use often and your home wifi and try to enter home wifi again.
    if it still won't connect to home wifi, call your internet provider for help.  You may need a newer router or different settings Or upgraded service.   Your phone seeks the best connection and will refuse lesser connections.
    last resort.  Backup the phone.  Do a full reset, then restore as new with the backup.
    if still not fixed, go back to apple and insist on repair or replacement.
    HOWEVER.   voicemail is not a wifi issue, it's a carrier function, which is why the SIM card is a suspect.

  • I want to pay for a MacBook pro 15 inch with retina display online and send someone to pick it up from a store is it possible if ok who and where contact me

    I want to pay for a MacBook pro 15 inch with retina display online and send someone to pick it up from a store is it possible if ok who and where contact me
    <Email Edited by Host>

    When you order a MBP you can have it delivered at any Apple retail store.  When you get the e-mail that the MBP is ready to be picked up, you have options to enter in the rersponse if you or someone else will pick it up.  You will have to fill in some required information that will identify that person to the store personnel. 
    I had my last MBP delivered to the local store, but I picked it up.
    Ciao.

  • However, we've had issues with other legacy systems and programs for outlook

    I have a user who when she logs into her workstation and tries to access her outlook folders she is denied access. If she removes and then adds them back they work. Only one other person on our network had this problem which I initially thought was connectivity
    related. I replaced their cat five cable and that seemed to solve their problem. I tried this with this user and it cleared up for about a week but happened again today. Any thoughts or experience with this. Outlook doesnt support archives in a network share
    so I cant turn to them. It uses a login batch script to load mapped drives according to department. This all predates me so I did not build them. However, we've had issues with other legacy systems and programs so it is highly possible that this could be an
    issue.

    Will:Hi! Hi!
    I use Firefox and it is now No. 1 on my choice of browsers. I agree it doesn't like the "for IE only" coded sites but then IE is now a non issue as it is dead in the water! So Safari is now really bloated and getting slower by the version. Firefox is quick, good to look at with numerous skins, and what is more has become the browser of choice for web developers on both platforms because it sticks to the WWC3 code. Camino is just another flavour of Netscape which seems to be a bloat AOL IE wannabee product. Do yourself a favour and download Firefox. Give it a few spins around the block and I'm sure you will agree. As for the sites it declines to accept because of bad code, then I would suggest a strong letter of protest to the webmaster! For too long IE has been flouting the rules and trying to be the only game in town. Take some affirmative action and let the webmasters know there are other browsers available to users. If you are still not a believer then check this out:
    http://www.pcworld.com/reviews/article/0,aid,118959,00.asp
    May the force be with you!

  • Check printing in English along with Arabic language

    Hi,
    My requirement is to print check in English along with Arabic language.
    All details in English, except vendor name, which should be in Arabic.
    I am maintaining two forms one in English and 2nd in Arabic language.
    2nd form which is in arabic is meant for Vendor name in arabic.
    My print program flow in brief is as follows:
    OPEN_FORM.
    In between, after writing all the English details, i am ending the English form and then starting Arabic form and printing vendor name and ending the Arabic form.
    CLOSE_FORM.
    In stead of single page I am getting 2 pages as output.
    Page1: English details, without Arabic name.
    Page2:Vendor name alone in Arabic.
    Can you please tell me how to print vendor name also on the 1st page itself along with other details in english.
    Thanks & Regards
    Seshagiri

    Hi,
    Have you got the solution to your problem? what you did?
    Actually I am now have the same problem. I have to print the korean text (Customer Address which is in korean in master table). in debugging mode it is coming correct. while printing it is prnting as #. Currently i am maintaining only one form in english.
    Have you maintained two forms or how you did to display the arebic?
    Its urgent please reply.....
    Thanx In advance

  • After Effects & Premiere Pro CS4 users: Turn off "Make text and other items larger or smaller" (Win)

    I just made a brief blog post recommending that After Effects CS4 and Premiere Pro CS4 users turn off the "Make text and other items larger or smaller" setting in Windows 7, since it causes some problems.
    Please use this thread to let us know whether this solved a problem for you or whether there are any problems with this solution.

    There isn't really an option to "turn off" the feature. Do you mean to say that it should be set to "Smaller - 100% (default)"?

  • Some Adobe PDF documents don't print from Adobe Reader; with other software it works correctly

    Dear community,
    I'm facing the problem that some Adobe PDF documents with lots of colors and lines (size less than 3 MB) don't print on our printers from Adobe Reader XI.
    The same files when opened with PDF XChange or PDF Architect are printed out without problems.
    How can I provide an Adobe Reader that is able to do so? Any recommendations about solving the issue are very appreciated.
    Best regards
    Christian

    Word document problem fixed at the moment by deleting and adding the Lexmark printer again.

  • Premiere Pro CS4 users: Turn off "Make text and other items larger or smaller" in Windows 7

    I just made a brief blog post recommending that After Effects CS4 and Premiere Pro CS4 users turn off  the "Make text and other items larger or smaller" setting in Windows 7,  since it causes some problems.

    There isn't really an option to "turn off" the feature. Do you mean to say that it should be set to "Smaller - 100% (default)"?

  • E70's Keyboard with Other Languages?

    Hi,
    I'll Soon add Hebrew Support to my phone
    and I want to know, Can The QWERTY Keyboard
    Support writeing in other languges just like the Computer ?
    Thanks, Doorman

    I had a Hungarian keyboard (with Hungarian characters, etc). I upgraded the firmware with a Hungarian updater, and now, I have a new firmware but ENGLISH keyboard.
    Does somebody know where could I find firmwares for other language than English? Or how to define own keyboard?
    Message Edited by v_mark on 30-Jan-2008 08:30 AM

  • Printing Adobe Reader files with a DeskJet 6540 and OS X.6

    Ever since I upgraded to Mac OS X.6, I've had problems printing .pdf files.  No matter what I teil the printer, it only prints one copy of one page of the document.  I've upgraded to Adobe Reader 9.2.0.  Is this a driver problem?  OS X.6 is supposed to take care of that.  Adobe Reader is the only software that causes this problem, and of course Adobe does not provide support.  Any ideas?

    Hi There...I'm having the same problem, although I'm using XP Pro with Service Pack 3 and an OfficeJet 6500 , e709n ...and
    it was working until this past couple of weeks.  I can't print ANY PDF, doesn't matter if it's old or new...  If I "do" a preview, all I see is a line of print across the top of the page.
    Anything else will print other than PDF's, so of course it's driving me nuts! I've even reinstalled the driver for the printer; but it didn't make any difference except for my time and frustration. I hope someone can give us an answer soon...there are important docs I need to print out.

Maybe you are looking for