Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you print a TradeMark (TM Superscript) symbol in Postscript rep 1

Status
Not open for further replies.

BONDfan

Programmer
Feb 20, 2002
12
US
Hello all,

I need to print the "TM" trademark symbol on a Postscript report. All I ever get so far is "�". I am using Reports 6i in an Oracle 9i Apps.

Thanks for any help!
 
Use chr(153) in a formula. For example, create formula column of charachter type like this:
Code:
begin
 return 'A TRADEMARK'||chr(153);
end;
 
Hello,

I jumped the gun slightly. When I tested this initially, I had the Concurrent Program set to PDF, and it worked great. As soon as I changed it back to PostScript, the charcater disappeared entirely. Any suggestions?

Thanks
 
Sorry..
Try changing font/font size and see if the character completely missing, or just for some combinations.
Looks like something wrong with Oracle Postscript driber settings. Did you try opening TAR?
As last resort, I'd create the TM as label.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top