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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Universal Concatenation - 1 SUM Field but Different Formats?

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Universal Concatenation - 1 SUM Field but Different Formats?
 Login/Join
 
Platinum Member
posted
Hey All,

This is just a theory question as I have a work-around.

The challenge is displaying multiple sum values in an across table that have different format types. It'd be nice to display each of the values without having to use FPRINT so that subtotals could be utilized. Subtotals unfortunately don't work with FPRINT in a COMPUTE statement (to my knowledge, happy for someone to prove me wrong).

So here is an example:

 

 TABLE FILE CAR
 SUM
     COMPUTE COLVAL/D12.2 = PaidAmount
 BY Country
 BY TOTAL COMPUTE COLID/I1 = 1;
 ON TABLE HOLD AS 'HOLD_1'
 END

 TABLE FILE CAR
 SUM
     COMPUTE COLVAL/D12C = Number_Sales
 BY Country
 BY TOTAL COMPUTE COLID/I1 = 2;
 ON TABLE HOLD AS 'HOLD_2'
 END
 
 TABLE FILE HOLD_1
 SUM
	COLVAL AS ''
 ACROSS COLID
 BY Country
 MORE HOLD_2
 ENd
 


As this code is written right now, I will get an error since the format in the COLVAL SUM fields between the two hold files are different.

Can anyone think of a way other than using FPRINT in the Compute statement to have different formats in the same field in a Universal Concatenation statement in order to have subtotal functionality in the resulting Concatenated table?

This message has been edited. Last edited by: Brandon Andrathy,


WebFOCUS 8204
 
Posts: 152 | Registered: July 10, 2018Report This Post
Expert
posted Hide Post
Use dynamic formatting -

SET ASNAMES = ON
SET HOLDLIST = PRINTONLY
TABLE FILE CAR
SUM
     COMPUTE COLVAL/D12.2 = RCOST;
	 COMPUTE FORMAT/A8 = 'D12.2';
 BY COUNTRY
 BY TOTAL COMPUTE COLID/I1 = 1;
ON TABLE HOLD AS HOLD_1
END
-RUN

TABLE FILE CAR
SUM
     COMPUTE COLVAL/D12.2 = DCOST;
	 COMPUTE FORMAT/A8 = 'D12C';
 BY COUNTRY
 BY TOTAL COMPUTE COLID/I1 = 2;
ON TABLE HOLD AS HOLD_2
END
-RUN

TABLE FILE HOLD_1
SUM
	COLVAL/FORMAT AS ''
ACROSS COLID
BY COUNTRY
MORE
FILE HOLD_2
END


T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Platinum Member
posted Hide Post
Wow! Genius!

Thank you sir!!


WebFOCUS 8204
 
Posts: 152 | Registered: July 10, 2018Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Universal Concatenation - 1 SUM Field but Different Formats?

Copyright © 1996-2020 Information Builders