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 text output file for one of my downstream systems to read. There are only 2 columns. The data in the columns is not of fixed width. I have tried output formats TABT and WP. WP works well for my needs, but the first 2 rows and left column are always empty which is making the downstream system to reject the file even though it has data. The TABT output doesn't work well because the data is not of fixed width. Below is a sample code.
SET LINES=999999
FILEDEF lmmclient DISK C:\\WSS.txt -RUN
TABLE FILE CLIENT PRINT CLIENT.CLIENT.ID CLIENT.CLIENT.NAME -*ON TABLE SAVE AS lmmclient FORMAT WP NOCC ON TABLE SAVE AS lmmclient FORMAT TABT END
Can someone suggest how the data can always start at left most column and first row? Thanks in advance for the help.This message has been edited. Last edited by: FP Mod Chuck,
WebFOCUS 7.7.02Windows Output Formats: Excel, HTML, PDF
Thanks for the reply Martin. Formatted by comma unfortunately does not suite the requirements as my downstream system reads multiple feeds in the same format. I have to match the other feeds.
WebFOCUS 7.7.02Windows Output Formats: Excel, HTML, PDF
The output expectation is a text file. When I try format ALPHA, the spacing issue is gone. However its counting and printing the number characters before the actual data. e.g: 000009A-BR-0158 The output should just be A-BR-0158
WebFOCUS 7.7.02Windows Output Formats: Excel, HTML, PDF