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.
Hi To access the flat file from the webfocs . I manually created the Master Files . I put both Master Files and Data files in the ApPlication folder . When i run the report i am getting the bewlow error
(FOC03601) ERROR AT OR NEAR LINE 3 IN PROCEDURE FTP (FOC1822) WARNING. INVALID SYMBOL: >áá< vv áá FIELD=Field1,A02,A02,$ (FOC03601) ERROR AT OR NEAR LINE 4 IN PROCEDURE FTP (FOC1822) WARNING. INVALID SYMBOL: >áá< vv áá FIELD=Field2,A02,A02,$ (FOC03601) ERROR AT OR NEAR LINE 5 IN PROCEDURE FTP (FOC1822) WARNING. INVALID SYMBOL: >áá< vv áá FIELD=Field3,A02,A02,$ BYPASSING TO END OF COMMAND *****************************************************************
Please find my Master File FILE=FLAT,SUFFIX=FIX SEGNAME=FLAT,SEGTYPE=S03 FIELD=Field1,A02,A02,$ FIELD=Field2,A02,A02,$ FIELD=Field3,A02,A02,$ ------------------------------- Data File : aabbcc ddeeff gghhii ------------------------------- Program Fex :
APP FI ftp dev/ftp.txt TABLE FILE ftp PRINT Field1 Field2 Field3 END -----------------------------------------
Please resolve the issue ASAP.This message has been edited. Last edited by: Kerry,
Gobinath, just to make sure that you haven't got any odd characters in your file, you can do an octal dump of the file. I don't know if the command is the same on Linux as on AIX but you can give it a try. If not, maybe you can research on Google and see if there is another command.
od -Ad -cx filename
A space is an ascii 20. A line feed is an octal 12, decimal 10. A carriage return is an octal 15, decimal 13.