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.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Multiple Columns?
 Login/Join
 
Gold member
posted
Hi all, Does anyone have any documentation on how to get the columns to go twice on the same page?


For instance this code below
SUM 
     TOTAL1 AS 'Total'
BY ACTION_DESC AS 'Action Description'  


this code would generate a report as such.

'Action Description' 'Total'

I need the report to generate output as such, since i have so much room left over on the right hand side of the report.

'Action Description' 'Total' 'Action Description' Total

Any documentation links or help would be greatly appreciated, thanks all!


WF 7.1.7- Windows XP
 
Posts: 63 | Registered: August 28, 2007Report This Post
Expert
posted Hide Post
Here's an idea.

First, hold the output of the request you show.
Then in a define for the hold file, create a toggle switch for each row, i.e.

TOGSW/I1=IF TOGSW EQ 1 THEN 2 ELSE 1;
ROWSW/I4=ROWSW+1;

Then, in the report part do an ACROSS on TOGSW.

TABLE FILE HOLD
SUM ACTDESC TOTAL
BY ROWSW NOPRINT 
ACROSS TOGSW AS ''
END  


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
 
Posts: 2723 | Location: Ann Arbor, MI | Registered: April 05, 2006Report This Post
Virtuoso
posted Hide Post
I call that the phone book report, now if just had my example. Kind of depends, what Ginny says is if good you are looking for is just two columns on the page. It's the equivalent to a label technique almost.


Leah
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Expert
posted Hide Post
quote:
ROWSW/I4=ROWSW+1;

Actually there is an error in the statement above. It should read:
ROWSW/I4=IF TAGSW EQ 1 THEN ROWSW+1 ELSE ROWSW;
  


You can also do label-type stuff in the report painter now.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
 
Posts: 2723 | Location: Ann Arbor, MI | Registered: April 05, 2006Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders