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.
When I try to convert from webfocus to flat file.It is automatically put quotes around the field.I need to remove quotes for some of the fields ,not all of them. If it null value , i want show as blank not quotes For example:"A", "B", "c","",... I want my output like this "A","B",c,,.....
I have the following 3 rows. For the "Accept" row and "Tran" row, I need to remove quote for the last field. The header row,I need to remove double quotes(""). i want show only comma(,). Examples: "Accept","100","170240","168607","CHEM","141","Prin Gen & Inorgan Chem","","4.00","","," "Header","100","170240","168607","","","","","","","," "Tran","100","170240","168607","CEM","121","General & Inorganic Chemistry","4.00","","",","
I want my output look like this: "Accept","100","170240","168607","CHEM","141","Prin Gen & Inorgan Chem","","4.00","",, "Header","100","170240","168607",,,,,,,, "Tran","100","170240","168607","CEM","121","General & Inorganic Chemistry","4.00","","",,
Suggestions from internal expert: here is a more flexible way of doing it.
DEFINE FILE EMPDATA
-* USE THIS FOR NUMERIC FIELDS
ASAL/A17=LJUST(17,FTOA(SALARY,'(D12.2)','A17'),'A17');
-* BRING THEM ALL TOGETHER WITH STRONG CONCATENATION
LINE1/A227=PIN|| ','||LN||','||FN||','||DEPT||','||
DEPT||','||TITLE||','||ASAL||',' ;
END
TABLE FILE EMPDATA
PRINT
LINE1 AS ''
-*ON TABLE SAVE Use this to save the data file
END