This is the code i am using now to Suppress the page header.
1)
Shared numbervar rownum := 0;
rownum
Used a shared variable to calculate rows in a page and placed this in page footer to reset on every page
2)
Shared numbervar rownum;
rownum := rownum + 1
calculating rows and placed this in the details section.
Both these fields are suppress in the report so that the user cannot see them.
Now in the Page header i have placed the below formula
if Shared Numbervar rownum < 1
then true
Else
False
This works like a charm...but if there are no records in the second page it show a blank page.Details section keep Together checkbox is enabled.
Let me know how to avoid this.
----------Solution for Blank page ------------ Report Footer doesnt contain any data and I didnt suppress it.Show the blank page was displayed.Now that I suppress it its working fine.
here ends the search for solving the page header suppression when not using Groups.
Thanks.