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.
Run the following code and note that as you resize your IE window (click 'restore' button and drag edges of window), the 'LONG' column resizes, and you always see the entire contents:
APP PREPENDPATH IBISAMP
DEFINE FILE GGSALES
LONG/A250 = '333 3333 3333333333 33333333333 33 333 333 222 333 2222 111111111 11 1 1 333333 333 333333333333';
END
TABLE FILE GGSALES
PRINT ST
REGION
LONG
IF RECORDLIMIT EQ 3
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET LINES 10
ON TABLE SET STYLE *
TYPE=REPORT, SQUEEZE=ON,
$
END
Change the OUTPUT format to AHTML, and you will see that the 'LONG' column does NOT resize, as you change the size of the window:
APP PREPENDPATH IBISAMP
DEFINE FILE GGSALES
LONG/A250 = '333 3333 3333333333 33333333333 33 333 333 222 333 2222 111111111 11 1 1 333333 333 333333333333';
END
TABLE FILE GGSALES
PRINT ST
REGION
LONG
IF RECORDLIMIT EQ 3
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET HTMLCSS ON
ON TABLE SET LINES 10
ON TABLE SET STYLE *
TYPE=REPORT, SQUEEZE=ON,
$
END
I'm using WF 8.0.07 & IE 9.This message has been edited. Last edited by: <Kathryn Henning>,
Hi David, You can try fiddling around with WRAP and as per below with AHTML format I got interesting results !! Not quite what you were hoping for I expect.... Ian
TYPE=REPORT, SQUEEZE=ON,WRAP=ON,
_______________________ *** WebFOCUS 8.1.05M ***
Posts: 196 | Location: London, UK | Registered: December 06, 2005