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 have a text file on windows that I need to use as a data source. I am trying to use the iWay adapter to generate the synonym but I get the following error.
FOC1332) CREATE SYNONYM : BASEAPP/BUSPROCESS ERROR / (CBFD09) Open error
Can any one please post their MFD for a windows flat file, so that I can use that as a base line. We are running 5.2.5
Thanks.
Posts: 176 | Location: Desplaines | Registered: August 05, 2004
is your text file fixed format, csv, pipe-delimited, variable number of fields? or what? lots of possibilities. its really easy. here's one for a fixed format file: a line with a bunch of $ in the first few positions is a comment line. FILE=D8232CNV ,SUFFIX=FIX SEGNAME=D8232CNV,SEGTYPE=S01 FIELDNAME =DOOROLD ,E01 ,A05 ,A05 ,$ FIELDNAME =BLANK ,E02 ,A1 ,A01 ,$ FIELDNAME =DOORNEW ,E03 ,A5 ,A05 ,$ $$$ converts marshall field door nums old- new d8232 to m8232 1/16/05 slj Note that the FILE name D8232CNV is totally arbitrary, as is the Segment Name the segtype S01 is important; it tells focus that the file is ordered by the first 1 field, (which doesn't need to be true, necessarily). so just make yours type S01 ok?This message has been edited. Last edited by: susannah,
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
There is no way to generate metadata automaticly from a true flat file because there is no under line engine that contains the format information of the file. you have to manually create it with suffix=FIX. If you have a cobol copy statement and a MainFrame IBI has a tool call FDT File Description Translator that can help in generating a master file that way.