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've got an ON TABLE SUBFOOT section in a FOCEXEC that is giving me nothing but asterisks on my various totals lines.... I can't see actual amounts. I don't know what I'm doing wrong! Here's my subfoot snippet, if anyone wants a quick look:
TABLE FILE S081C&INSTX
-*
HEADING CENTER
-*
"<1 PROGRAM ID: &PRG <58 PAGE <TABPAGENO"
"<50 &DATE &TOD"
"NEED BASED SCHOLARSHIPS AWARD YEAR: &AWDYR <COLLEGE"
" "
-*
SUM
-*
STDCNT NOPRINT
TOT.BUDGET NOPRINT
TOT.TFC NOPRINT
TOT.TOTAID NOPRINT
TOT.TOTUNMET NOPRINT
-*
PRINT
-*
RAP AS 'R,A,P'
BUDGET AS 'BUDGET'
TFC AS 'TOTAL,FC,(EFC)'
TOTAID AS 'TOTAL, AID'
TOTUNMET AS 'TOTAL,UNMET,NEED'
-*
BY COLLEGE NOPRINT REPAGE
BY SNAME/C AS 'NAME' NOSPLIT IN 0
BY STU_ID/C AS 'SSN'
-*
WHERE TOTAID GT 1.00
-*
ON TABLE SUBFOOT
-*
" "
"============================================================"
"------------------------------------------------------------"
"TOTAL STUDENTS : <TOT.STDCNT "
"TOTAL BUDGET AMOUNT: <TOT.BUDGET "
"TOTAL FINANCIAL AID: <TOT.TOTAID "
"TOTAL UNMET NEED : <TOT.TOTUNMET "
"TOTAL AVERAGE AWARD: <AVE.TOTAID "
"------------------------------------------------------------"
"============================================================"
-*
ON TABLE SET SPACES 1
-INCLUDE REPTDEL7
-*
END
-RUN
-INCLUDE RETYPE
-TYPE Run Successfully Completed
-*
Thank you in advance.... looking forward to seeing what I might be doing wrong.This message has been edited. Last edited by: webmeister,
webmeister, Take off your NOPRINTs and see if you also get asterisks within the report. If you do, that means that the total field is too big for the format.
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
Increase the size of the field you are summing. The size of the total field is the same size as the summed field. If the answer is too big, you will get the asterisks. So make the summed field bigger.