When linking to a report, if parameters are missing the page prompting the user for the missing parameters will show the header. Subsequent pages show the header too.
e.g. Parameters missing : Header is shown on page prompting for inStartDate and inEndDate
select 'dbr.report', 'sp_DBR_geozoneEventDetailArriveDepart','inGeozoneID=[GeozoneID]', 'inAccountID=[AccountID]', 'inGeozoneDesc=[Description]', 'append=&hdr=0';
e.g. Parameters NOT missing : Header is NOT shown
select 'dbr.report', 'sp_DBR_geozoneEventDetailIgnitionOnOff','inGeozoneID=[GeozoneID]', 'inAccountID=[AccountID]', 'inGeozoneDesc=[Description]', 'inStartDate=2014-01-01', 'inEndDate=2014-12-31', 'append=&hdr=0';
Is there a way to suppress the headers?