I have two ways to print a report in PDF or letterhead.
Is it possible to have a customization in a report so that I have a logo in the header in the PDF, and I do not have the title of that logo on the letterhead?
You can add a parameter with a boolean in the report, something like ISPDF and then the logo in the header Click on the format graphic (assuming this as an image) and then press Fill with the Exx checkbox.
From there you write code Which will suppress the graphic when the IsPDF parameter is false and will not be suppressed when ISPDF is true
IF? IsPDF} = true is wrong EDIT: After writing it I think that I really want Boolean parameters to be IsLetterHead so that when it was true that it was true in The Suppress Will be consistent with. In other words
IF? IsLetterHead} = true is true
Comments
Post a Comment