Skip to main content
Planview Customer Success Center

How to add a logo to an invoice for versions prior to CP 2014

In Changepoint 2014 and later, you can add a logo to invoices in Changepoint Administration. For more information, see the Changepoint Administration Guide.

For versions prior to CP 2014:

In the rpInvoiceGeneral.asp file, at the top of the HTML body, replace the following line:

Response.Write "h2" & sTitle & "/h2"

With:

Response.Write "table cellpadding=2 cellspacing=0 border=0 width='100%'"
Response.Write "trtdimg src='logo.gif'Images/CX-word-black.jpeg'/tdtd align=Righth2"& sTitle & "/h2/td/tr/table"

Where the "img src=' '" tag points to the URL where the image file is located.

Be sure to place the logo file in the same directory as the invoice asp file, otherwise you must include the complete path.

Note that you must make this change to the "rp" (rpXxxx.asp) file for any invoice format.

Then change the following line from:

""<"h2">""<"!--CreditNotesTitleStart--">"" & convtohtml(sTitle)

To:

""<"tr">""<"td">""<"img src='YourCompanyLogo.jpg'/">""<"/td">""<"td align=Right">""<"h2">""<"!--CreditNotesTitleStart--">"" & convtohtml(sTitle)