Howdy Long number with a kk at the end,
So there is a callback called ModifyReportHeader for exactly what you are doing. To insert this callback into your sequence go to Edit->Sequence File Callbacks and look for ModifyReportHeader. Click on it and click the Add button. Then click OK. Now you will see a new sequence in your sequence file. It is being passed a parameter called Report Header. You can add to the report header by having a statement in this sequence that looks something like this:
Parameters.ReportHeader += "Some HTML Stuffs here"
To overide the Header completely do this:
Parameters.ReportHeader = "<br>some HTML Stuffs here<br>Hello Crazy World<br>"
Only read this part if you aren't familiar with Callbacks. Basically a callback is a function, Sequence, whatever. that gets called instead of what is normally called. In this case the Process Model has a call to a sequence called Modify Report Header. This sequence is inside the process model. If you add the callback to your sequence (The Client Sequence) the process model automatically calls that one instead of the one that resides within itself. Therefore you get to change the process model without affecting other people.
Let me know if you have any questions,