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!

insert logo on reports

Status
Not open for further replies.

ewana

Technical User
Sep 26, 2005
6
US
Hello,
I would like to insert a logo (an image file) on the reports that I am created. How can I do this in PeopleSoft ?
Thank you.
 
You will need the following to be able to run the report:
1. Use SQR programming.
2. Since logo is a window function, you have to run in client
location(not server).
3. When running the SQR you will add a printer parameter on the command line -printer:wp
4. Inside you SQR program add the following statements to print your image:

PRINT-IMAGE (1,1)
TYPE = BMP-FILE
SOURCE = 'C:\DATA\PS\MYLOGO.BMP'
IMAGE-SIZE = (8,6)

5. SQR manual has more explanation about PRINT-IMAGE.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top