Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Column wrap not happening in Report Assistant (Webfocus 7.6.6)

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Column wrap not happening in Report Assistant (Webfocus 7.6.6)
 Login/Join
 
Member
posted
Hi,

Wrapping a column is not happening in report assistant.I have to display some of 7 columns in the HTML output.One of the column is very lengthy and need to wrap it to fit with in the output page.

Using the following code:
ON TABLE SET STYLE *
TYPE=REPORT,COLUMN=N5,WRAP=4.001,$

But this code is not helping to solve the issue.

Please Help.

Thanks,
Veda

Webfocus version : 7.6.6

This message has been edited. Last edited by: Kerry,


Webfocus 7.6.11
Windows XP
HTML,PDF & EXCEL
 
Posts: 16 | Registered: April 29, 2010Report This Post
Expert
posted Hide Post
Do you have ON TABLE SET HTMLCSS ON ?


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Member
posted Hide Post
Yes ,Its there already.

Thanks,
Veda


Webfocus 7.6.11
Windows XP
HTML,PDF & EXCEL
 
Posts: 16 | Registered: April 29, 2010Report This Post
Expert
posted Hide Post
Can you post the code ?


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Member
posted Hide Post
TABLE FILE XYZ
PRINT
XYZ.XYZ.RESOURCE_NAME AS 'Resource, Name'
XYZ.XYZ.EMP_TYPE_NAME AS 'Resource, Category'
XYZ.XYZ.MANAGER_NAME AS 'Manager, Name'
XYZ.XYZ.RP_NAME AS 'Resource, Pool Name'
XYZ.XYZ.RP_MANAGER_NAME AS 'Resource, Pool Manager Name'
XYZ.XYZ.EXCEPTION_REC AS 'Exception'
WHERE (XYZ.XYZ.LEVEL_1_CODE EQ '&Code1');

HEADING
"Resource ManagerReport"

FOOTING
"Report Created on &DATEMtrDYY @ <TIME"

ON TABLE SET HTMLCSS ON 
ON TABLE SET STYLE *
-INCLUDE IBFS:/CFG/FILE/IBI_HTML_DIR/javaassist/intl/EN/123.sty

[COLOR:RED]TYPE=REPORT,COLUMN=N5,WRAP=4.01,$[/COLOR]

TYPE=REPORT, OBJECT=STATUS-AREA, LINES-PER-PAGE=UNLIMITED, $
TYPE=TITLE, COLUMN=XYZ.XYZ.RESOURCE_NAME,FONT=Tahoma,SIZE=9, $
TYPE=TITLE, COLUMN=XYZ.XYZ.EMP_TYPE_NAME,FONT=Tahoma,SIZE=9, $
TYPE=TITLE, COLUMN=XYZ.XYZ.MANAGER_NAME,FONT=Tahoma,SIZE=9, $
TYPE=TITLE, COLUMN=XYZ.XYZ.RP_NAME,FONT=Tahoma,SIZE=9, $
TYPE=TITLE, COLUMN=XYZ.XYZ.RP_MANAGER_NAME,FONT=Tahoma,SIZE=9, $
TYPE=TITLE, COLUMN=XYZ.XYZ.EXCEPTION_REC,FONT=Tahoma,SIZE=9, $

TYPE=DATA, COLUMN=XYZ.XYZ.RESOURCE_NAME,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.EMP_TYPE_NAME,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.MANAGER_NAME,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.RP_NAME,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.RP_MANAGER_NAME,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.EXCEPTION_REC,FONT=Tahoma,SIZE=9, $
ENDSTYLE
ON TABLE PCHOLD FORMAT AHTML
ON TABLE NOTOTAL
ON TABLE SET EXPANDABLE OFF
END



Webfocus 7.6.11
Windows XP
HTML,PDF & EXCEL
 
Posts: 16 | Registered: April 29, 2010Report This Post
Expert
posted Hide Post
Its an Active Report.

I think that I remember other posts related to this, and it doesn't work.

Have a search of the forum for Active Report WRAP.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Member
posted Hide Post
Thanks for your help .

I'll chk in webfocus forums.

Thanks,
Veda


Webfocus 7.6.11
Windows XP
HTML,PDF & EXCEL
 
Posts: 16 | Registered: April 29, 2010Report This Post
Member
posted Hide Post
 TYPE=REPORT, COLUMN=N3, SQUEEZE=1, WRAP=1, $ 


Include SQEEZE in the style sheet will solve your issue.

example
 TABLE FILE CAR
PRINT COUNTRY CAR MODEL
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET HOLDLIST PRINTONLY
ON TABLE SET EXPANDABLE OFF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, COLUMN=N3, SQUEEZE=1, WRAP=1, $
ENDSTYLE
END 


WebFOCUS 7 6 9
Windows XP
HTML, AHTML, PDF, EXCEL
 
Posts: 24 | Registered: April 24, 2009Report This Post
Member
posted Hide Post
Thanks Senthil.

But its not helping to solve the issue.After using the above code also the column is not wrapping.


Webfocus 7.6.11
Windows XP
HTML,PDF & EXCEL
 
Posts: 16 | Registered: April 29, 2010Report This Post
Member
posted Hide Post
could you post your current code after including SQEEZE and the 123.sty file
send to senvasan@yahoo.com


WebFOCUS 7 6 9
Windows XP
HTML, AHTML, PDF, EXCEL
 
Posts: 24 | Registered: April 24, 2009Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Column wrap not happening in Report Assistant (Webfocus 7.6.6)

Copyright © 1996-2020 Information Builders