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.
Let's say that I want to rearrange the DCOST and RCOST columns in the following code via a "rearrange" command in the stylesheet. What is that command? Note that this is only a sample. I know that I can reverse the field names in the TABLE FILE request. But, this is just to illustrate a point. I know that there is a "rearrange" command, probably by some other name/syntax, but it's out there somewhere... So, would someone please be kind enogh to remind me what it is?
TABLE FILE CAR
SUM DCOST RCOST BY COUNTRY BY CAR BY MODEL
ON TABLE SET STYLE *
TYPE=DATA, COLUMN=DCOST, COLOR=BLUE,$
TYPE=DATA, COLUMN=RCOST, COLOR=GREEN,$
ENDSTYLE
END
This message has been edited. Last edited by: Doug,
In FOCUS Since 1983 ~ from FOCUS to WebFOCUS. Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
SET PAGE = OFF
TABLE FILE CAR
PRINT COMPUTE PROFIT/D12 = RCOST-DCOST; COUNTRY CAR MODEL DCOST RCOST WHERE COUNTRY EQ 'ENGLAND'
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
GRID=OFF, BORDER=LIGHT,$
TYPE=REPORT, COLUMN=PROFIT, COLOR=RED,$
TYPE=DATA, COLUMN=DCOST, COLOR=BLUE,$
TYPE=DATA, COLUMN=RCOST, COLOR=GREEN,$
ENDSTYLE
END
TABLE FILE CAR
PRINT COMPUTE PROFIT/D12 = RCOST-DCOST; COUNTRY CAR MODEL DCOST RCOST WHERE COUNTRY EQ 'ENGLAND'
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
GRID=OFF, BORDER=LIGHT,$
TYPE=REPORT, COLUMN=PROFIT, COLOR=RED, SEQUENCE=4,$
TYPE=DATA, COLUMN=DCOST, COLOR=BLUE,$
TYPE=DATA, COLUMN=RCOST, COLOR=GREEN,$
ENDSTYLE
END
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
SET PAGE = OFF TABLE FILE CAR PRINT COMPUTE PROFIT/D12 = RCOST-DCOST; COUNTRY CAR MODEL DCOST RCOST WHERE COUNTRY EQ 'ENGLAND' ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * GRID=OFF, BORDER=LIGHT,$ TYPE=REPORT, COLUMN=PROFIT, COLOR=RED,$ TYPE=DATA, COLUMN=DCOST, COLOR=BLUE,$ TYPE=DATA, COLUMN=RCOST, COLOR=GREEN,$ ENDSTYLE END TABLE FILE CAR PRINT COMPUTE PROFIT/D12 = RCOST-DCOST; COUNTRY CAR MODEL DCOST RCOST WHERE COUNTRY EQ 'ENGLAND' ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * GRID=OFF, BORDER=LIGHT,$ TYPE=REPORT, COLUMN=PROFIT, COLOR=RED, SEQUENCE=4,$ TYPE=DATA, COLUMN=DCOST, COLOR=BLUE,$ TYPE=DATA, COLUMN=RCOST, COLOR=GREEN,$ ENDSTYLE END