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.
Is there a limit on how many columns can expand out? I have a large data set with about 7 by fields that can expand out. When I run this, I receive a java script error stating that there is an error with the script. Thanks for any info you can provide.This message has been edited. Last edited by: Kerry,
SET EXPANDABLE = ON
DEFINE FILE CAR
CTR/I2=CTR + 1;
COLOUR/A10=
IF CTR LE 3 THEN 'BLACK' ELSE
IF CTR LE 5 THEN 'WHITE' ELSE
IF CTR LE 9 THEN 'BLUE' ELSE 'RED';
TRANS/A10=IF CTR LE 10 THEN 'AUTOMATIC' ELSE 'MANUAL';
END
TABLE FILE CAR
SUM
CAR.BODY.SALES
CAR.BODY.DEALER_COST
CAR.BODY.RETAIL_COST
CAR.SPECS.FUEL_CAP
CAR.SPECS.MPG
CAR.SPECS.RPM
CAR.SPECS.BHP
CAR.SPECS.ACCEL
CAR.SPECS.WHEELBASE
BY CAR.ORIGIN.COUNTRY
BY CAR.COMP.CAR
BY CAR.CARREC.MODEL
BY CAR.BODY.BODYTYPE
BY COLOUR
BY TRANS
BY CAR.SPECS.WHEELBASE
BY CAR.BODY.SEATS
BY LOWEST CAR.SPECS.LENGTH
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
END
8 BY fields (7 expandable) and "many" columns although that is a very subjective appreciation.
Could you reproduce your issue using the CAR table or other IBI provided table?