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 am creating a SAVB file that I need to process two different ways in the same procedure (i.e., I need to create "on the fly" and apply two different file descriptions). The first MFD needs to describe the data to take advantage of the OCCURS= and ALIAS=ORDER provisions in WF. Following three TABLE FILEs using this MFD, I need to change the way I'm looking at the data (without the OCCURS=, etc.) and run one more TABLE FILE to complete the requirements for this procedure.
I'm successfully creating the first MFD and am running the three TABLE FILEs; however, I can't seem to get the final TABLE FILE to work using the second MFD.
If someone experienced with this technique could provide some guidance, I'd appreciate it. It's likely that I'm simply not following the right steps.
Thanks!
CraigThis message has been edited. Last edited by: Kerry,
SET HOLDLIST=PRINTONLY
SET HOLDFORMAT=ALPHA
FILEDEF S001A DISK S001.TXT
TABLE FILE CAR
SUM
WEIGHT/D6
HEIGHT/D6
LENGTH/D6
WHEELBASE/D6
BY COUNTRY
ON TABLE SAVE AS S001A
END
-RUN
TABLE FILE S001A
PRINT *
END
FILEDEF S001A CLEAR
FILEDEF S001B DISK S001.TXT
TABLE FILE S001B
PRINT DIMENSION
BY COUNTRY
END