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.
I placed a (non-sorting)display field between two sort fields. How do I get the display field to show repetitive entries only on the first line. I would like for the word sales in the example below to show up only once if repetitive and only show when the Account is different. I guess I'd like for it to behave as a sort field. Is there a way to do this?
placed a (non-sorting)display field between two sort fields. How do I get the display field to show repetitive entries only on the first line. I would like for the word sales in the example below to show up only once if repetitive and only show when the Account is different. I guess I'd like for it to behave as a sort field. Is there a way to do this?
Is the field a computed field or a defined field?
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
How about using compute instead. Silly Car example TABLE FILE CAR SUM COMPUTE FAKEIT/A7 = IF COUNTRY EQ LAST COUNTRY THEN ' ' ELSE 'FAKEIT'; BY COUNTRY PRINT CAR SALES DEALER_COST BY COUNTRY END
Assumption is on the else, you know what you want to plug in, of course you might have to do a bit more testing if the description is not constant.
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
I'm probably not interpreting you problem precisely but here is an example using the car file. This sorts by country and model with the car in between.
Good Luck.
TABLE FILE CAR PRINT COMPUTE CAR1/A16= IF COUNTRY EQ LAST COUNTRY AND CAR EQ LAST CAR THEN ' ' ELSE CAR; MODEL BY COUNTRY BY MODEL NOPRINT END
FOCUS 7.6 MVS PDF,HTML,EXCEL
Posts: 115 | Location: Chicago, IL | Registered: May 28, 2004