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.
can't find a reference to FILEF. TABLE FILE CAR PRINT CAR MODEL SEATS BY COUNTRY END works. This difference may be a result of code-tightening which often occurs with new releases. HTH
jimster06 DevStu WF 7.6.11 W7 HTML, PDF, EXL2K
Posts: 252 | Location: USA | Registered: April 15, 2003
I can confirm that in 7.6.1 that worked but in 7.7.03 it does not. I have both verions. But what is FILEF? I see no documentaion for it's use? I would agree with jimster, it's code tightening.
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005
Thers's no such thing as FILEF, It's TABLEF, which means, bring the data in exactly as SORTed the step before, or, on initial extract as stored in the table.
Code tightening...
FYI, If you use TABLEF with a BY statement, it becomes TABLE. TABLEF is used "without" a BY statement, per the manual...
I have another question. The table is having master file and access file CREATED BY ME, when i retrieving the data getting an error in 7.7.03 but not in 7.6.11. tablename & segmentname are same.
TABLE FILE EMPLOYEE SUM 'DST.EMPLOYEE.EMPLOYEE.DEPARTMENT' AS 'DST,EMPLOYEE.EMPLOYEE.DEPARTMENT' BY 'EMPLOYEE.EMPLOYEE.DEPARTMENT' END
FYI, If you use TABLEF with a BY statement, it becomes TABLE. TABLEF is used "without" a BY statement, per the manual...
This is incorrect. The manual states:
"Any BY phrases must be compatible with the logical sequence of the data source. BY phrases are used only to establish control breaks, not to change the order of the records."
As far as I know it has worked this forever and I started using FOCUS in 1985.
There is a SET setting, SQLTOPTTF (options are ON and OFF and ON is the default) that will cause TABLE to become TABLEF when possible when accessing SQL data sources. But TABLEF never become TABLE.
In FOCUS since 1985. Prod WF 8.0.08 (z90/Suse Linux) DB (Oracle 11g), Self Serv, Report Caster, WebServer Intel/Linux.
Posts: 975 | Location: Oklahoma City | Registered: October 27, 2006
For those long term hand coders out there (using char based FOCUS), this should bring back a few (haunting) memories?
SET PAGE = NOLEAD
TABLE FILE CAR
BY HIGHEST COUNTRY
END
TABLEF FILE CAR
BY HIGHEST COUNTRY
END
LET TABLEF = TABLE
TABLEF FILE CAR
BY HIGHEST COUNTRY
END
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, 2004
Yes indeed, but who remembers the countless LET statements that were being used?
LET TFC = TABLE FILE CAR SUM RCOST DCOST BY COUNTRY BY CAR BY MODEL
TFC
END
BTW, I wouldn't suggest anyone who is not au-fait with using LET actually use it to any degree! It could cause you more grief than joy!!! You have been warned!
TThis message has been edited. Last edited by: Tony A,
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, 2004