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.
Now, I've inherited code where the coder is doing exactly this. He is making a hold file with the 0 data, and appended it to another table (the table with the non-zero data) via the MORE command. I've tried to use that code as a template, but I'm having problems. I am getting FOC1175 (NO REFERENCE TO FIELD DATA) when I try to create the zero record. This is the code:
TABLEF FILE SYSTABLE
SUM
COMPUTE TESTME/I1 = 0;
WHERE READLIMIT EQ 1
WHERE RECORDLIMIT EQ 1
ON TABLE HOLD AS ZERO1
END
Any tips?
I also wanted to add that this dude seems to have went this way but he never posted the code.
Oh... I'm using SQL ServerThis message has been edited. Last edited by: Shingles,
SET HOLDLIST=PRINTONLY
TABLEF FILE SYSTABLE
SUM NAME NOPRINT
COMPUTE TESTME/I1 = 0;
WHERE READLIMIT EQ 1
WHERE RECORDLIMIT EQ 1
ON TABLE HOLD AS ZERO1
END
WebFOCUS 8.2.06
Posts: 210 | Location: Sterling Heights, Michigan | Registered: October 19, 2010
As a possible alternative, when you are a reporting a set of logical and unchanging categories (like days of the week), you may consider skipping the blank data generation and simply defining your rows or columns explicity:
TABLE FILE CAR
SUM CNT.SEATS
BY SEATS ROWS 1 OVER 2 OVER 3 OVER 4 OVER 5 OVER 6 OVER 7
ON TABLE PCHOLD FORMAT HTML
END
This might be a more elegant solution in some circumstances - useless in others. Best of luck!