ReportBuilder 7 no longer includes the global ppParentWnd due to modifications required for thread-safety.
You have two choices:
procedure TWPCustomRichTextForPP.CreateParams(var Params:
TCreateParams);
begin
inherited CreateParams(Params);
{remove ws-child so that no parent window is required}
Params.Style := Params.Style and not(WS_CHILD);
end; {procedure, CreateParams}