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.
New TIBCO Community Coming Soon
In early summer, TIBCO plans to launch a new community—with a new user experience, enhanced search, and expanded capabilities for member engagement with answers and discussions! In advance of that, the current myibi community will be retired on April 30. We will continue to provide updates here on both the retirement of myibi and the new community launch.
What You Need to Know about Our New Community
We value the wealth of knowledge and engagement shared by community members and hope the new community will continue cultivating networking, knowledge sharing, and discussion.
During the transition period, from April 20th until the new community is launched this summer, myibi users should access the TIBCO WebFOCUS page to engage.
In this closed discussion... http://forums.informationbuild...331%2Fm%2F4997091226 ...there's the following code, whoich I have tried running (v.8006) and I get the error "Cannot include resource specified FIELDS". Has something changed? I'm still fairly new to this webfocus world so apologies if the answer is staring me in the face.
Thanks
TABLE FILE CAR PRINT SALES RETAIL_COST DEALER_COST BY COUNTRY ON TABLE HOLD AS CARHOLD END -* CHECK FILE CARHOLD HOLD -* TABLE FILE HOLD PRINT FIELDNAME WHERE FIELDNAME NE 'COUNTRY'; ON TABLE SAVE AS FIELDS END -RUN -* TABLE FILE CARHOLD SUM -INCLUDE FIELDS BY COUNTRY ENDThis message has been edited. Last edited by: amdev,
The files will go as soon as the report is displayed, so do issue the command SET TEMPERASE=OFF (ON is the default) in the beginning. Also, the files will go into subdirectory to edatemp called ts999999, where the 999999 corresponds to the number of your agent, eg. ts000001.
Have you considered using the SYSCOLUM table to get a list of fields? I prefer this to using checkfile because it respects the security of the system (DBA, RS etc). Try this:
TABLE FILE SYSCOLUM
PRINT NAME AS FIELDNAME
SEGNAME
IF TBNAME EQ 'CAR'
END
There is a lot more information that you can get from the Syscolum table like field types, descriptions etc. But if all you are looking for is a list of field names, this will work.
quote:
I get the error "Cannot include resource specified FIELDS". Has something changed?
I don't know if this is the case for what you are doing here since I dont generally use the -include like you are using it, but the -INCLUDE syntax did change in V8 (one of the biggest impacts I had in my conversion). This could be why you are getting that error. You now need to have the absolute path for the INCLUDE file. If you wanted to adjust what you have for that, you most likely would want to save you file to foccache and then specify the path to the file.
-INCLUDE IBFS:/EDA/EDASERVE/foccache/FIELDS.ftm
This message has been edited. Last edited by: eric.woerle,
Eric Woerle 8.1.05M Gen 913- Reporting Server Unix 8.1.05 Client Unix Oracle 11.2.0.2
Posts: 750 | Location: Warrenville, IL | Registered: January 08, 2013
TABLE FILE HOLD PRINT FIELDNAME WHERE FIELDNAME NE 'COUNTRY'; ON TABLE SAVE AS FIELDS END -RUN -* TABLE FILE CARHOLD SUM -INCLUDE FIELDS BY COUNTRY END
It all depends in what environment you are running. If it is within the portal then yes, you should use the full path as Eric writes. If not, then I would code:
FILEDEF FIELDS DISK FIELDS.FEX
-RUN
TABLE FILE HOLD
PRINT FIELDNAME
WHERE FIELDNAME NE 'COUNTRY';
ON TABLE SAVE AS FIELDS
END
-RUN
-*
TABLE FILE CARHOLD
SUM
-INCLUDE FIELDS
BY COUNTRY
END
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