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     ROW-TOTAL RECAPS IN FRL(EMR)

Read-Only Read-Only Topic
Go
Search
Notify
Tools
ROW-TOTAL RECAPS IN FRL(EMR)
 Login/Join
 
Member
posted
For 10+ years we've provided standard income statements and balance sheets using FRL, computing rounded values as follows:

SUM COMPUTE ROUND/P9C=AMOUNT/1000; ROW-TOTAL
ACROSS TYPE
FOR ACCOUNT XXX ,etc.
RECAP TOTAL= LABEL1+LABEL2 etc.

We're migrating from VMS to UNIX 69.2 and the RECAP Row-total isn't working -- it's picking up the row-total of the next account line instead.

If I remove the COMPUTE, it works fine. I tried Computing a total = C1+C2, etc. but the total was off. If I round the data records in advance, the rounded totals aren't accurate enough for financial statements.

This seems a significant bug but the HOTLINE hasn't been able to provide a solution. Help!
 
Posts: 2 | Registered: April 17, 2006Report This Post
Expert
posted Hide Post
wdtrumbo,

When ever you are coding for financial reports, stick with the double precision format over the packed decimal (in this case use D9C instead of P9C). This is because of the way the data is held internally and the effect it has over any calculations being performed.

Another possibility (that I would not suggest you follow Smiler) is using the ROUND/D9C in a DEFINE instead. The downside is that you will perform the define against every single data item being read in rather than just for each output row. This not only increases I/O but could degrade the accuracy further.

Try these samples and see the difference in the row totals of the first two reports, and then compare what it should be against the third report. You will see that the second report (using D9C) is more accurate.

TABLE FILE GGSALES
SUM COMPUTE ROUND/P9C = DOLLARS / 1000; AS 'Rounded' ROW-TOTAL
 ACROSS REGION
WHERE ST LE 'FL'
FOR PRODUCT
'Biscotti'       LABEL LAB01 OVER
'Capuccino'      LABEL LAB02 OVER
'Coffee Grinder' LABEL LAB03 OVER
'Coffee Pot'     LABEL LAB04 OVER
'Croissant'      LABEL LAB05 OVER
'Espresso'       LABEL LAB06 OVER
'Latte'          LABEL LAB07 OVER
'Mug'            LABEL LAB08 OVER
'Scone'          LABEL LAB09 OVER
'Thermos'        LABEL LAB10
END
TABLE FILE GGSALES
SUM COMPUTE ROUND/D9C = DOLLARS / 1000; AS 'Rounded' ROW-TOTAL
 ACROSS REGION
WHERE ST LE 'FL'
FOR PRODUCT
'Biscotti'       LABEL LAB01 OVER
'Capuccino'      LABEL LAB02 OVER
'Coffee Grinder' LABEL LAB03 OVER
'Coffee Pot'     LABEL LAB04 OVER
'Croissant'      LABEL LAB05 OVER
'Espresso'       LABEL LAB06 OVER
'Latte'          LABEL LAB07 OVER
'Mug'            LABEL LAB08 OVER
'Scone'          LABEL LAB09 OVER
'Thermos'        LABEL LAB10
END
TABLE FILE GGSALES
SUM DOLLARS AS 'Rounded' ROW-TOTAL
 ACROSS REGION
WHERE ST LE 'FL'
FOR PRODUCT
'Biscotti'       LABEL LAB01 OVER
'Capuccino'      LABEL LAB02 OVER
'Coffee Grinder' LABEL LAB03 OVER
'Coffee Pot'     LABEL LAB04 OVER
'Croissant'      LABEL LAB05 OVER
'Espresso'       LABEL LAB06 OVER
'Latte'          LABEL LAB07 OVER
'Mug'            LABEL LAB08 OVER
'Scone'          LABEL LAB09 OVER
'Thermos'        LABEL LAB10
END


Enjoy

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
Member
posted Hide Post
Thanks Tony. I've tried defines in every format but it's not accurate. This is a Balance Sheet and the sum of Assets must equal the sum of Liabilities & Equity. When you round and then sum, it doesn't work.

HOTLINE just advised that this is a BUG in UNIX FOCUS so hopefully can be fixed.

Bill Trumbo
 
Posts: 2 | Registered: April 17, 2006Report This Post
Expert
posted Hide Post
Hi Bill,

A workaround could be to preprocess the data so that you summate AMOUNT BY TYPE and then HOLD. When you produce the FML report from your HOLD file you can then divide by 1000 to get your 'thousands' values to display. This should lessen the inaccuracy for you, although the extra processing pass might not be preferable depending upon the amount of data you have.

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
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     ROW-TOTAL RECAPS IN FRL(EMR)

Copyright © 1996-2020 Information Builders