Focal Point
Hide title row

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/1661029971

August 11, 2006, 12:54 PM
Aaron M. Reiff
Hide title row
I'm sure this is an easy one but . . .

I want to turn off (or hide) the entire title row for a grid. How is this accomplished? Thanks!

A


Aaron M Reiff
Prod - WebFocus 7.66
Prod - ReportCaster 5
Win Server 2K/ISAPI/MSSQL Server 2K
--------------------
Test - WebFocus 7.66
Win Server 2003/TomCat/MSSQL Server 2K
--------------------
Dev - WebFocus 7.66
Win Server 2003/TomCat/MSSQL Server 2K
August 11, 2006, 01:11 PM
Kamesh
Hope this is what you are looking.

TABLE FILE CAR
PRINT CAR AS ''
BODYTYPE AS ''
BY COUNTRY
END
-EXIT


WFConsultant

WF 8105M on Win7/Tomcat
August 21, 2006, 07:39 AM
Aaron M. Reiff
Kamesh

This did the trick. Thanks!

A


Aaron M Reiff
Prod - WebFocus 7.66
Prod - ReportCaster 5
Win Server 2K/ISAPI/MSSQL Server 2K
--------------------
Test - WebFocus 7.66
Win Server 2003/TomCat/MSSQL Server 2K
--------------------
Dev - WebFocus 7.66
Win Server 2003/TomCat/MSSQL Server 2K
July 10, 2013, 05:54 AM
Sivakumaran Elangovan
I have a excel report in which displays rows and subhead when detailed view is selected by the user. But now when user is unchecking the detailed view, I wish to print the column title and subhead alone and the row contents has to be hidden. Is there any way to achieve this thro webfocus query language in dev studio? HIDING ROWS CONTENT AND DISPLAYING ONLY SUBHEAD AND COLUMN TITLE? Any Idea?


Webfocus 7.6
Excel, HTML, PDF
July 10, 2013, 08:29 AM
j.gross
If you impose an impossible condition (like "WHERE COUNTRY NE COUNTRY;"),
and SET EMPTYREPORT = ON (or ANSI),
you will get columns titles but no rows of data.

But I am not sure what you mean by printing the "subhead". There will be no sort-break SUBHEAD if there are no rows of data in the output.
July 10, 2013, 10:16 AM
Francis Mariani
Detail report:
TABLE FILE CAR
SUM
SALES
BY COUNTRY NOPRINT
ON COUNTRY SUBHEAD
"COUNTRY: <COUNTRY"
END

Subheading-only report:
TABLE FILE CAR
SUM
SALES NOPRINT
BY COUNTRY NOPRINT
ON COUNTRY SUBHEAD
"COUNTRY: <COUNTRY"
END



Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server