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 want to create a file that has to be read by a cobol program. The record of the file is: 1 field: aaa alphanumeric 1. 2 field: bbb packed (cobol 9(17) comp -3) ..... I have already tried using SAVB but the lenght the first field is changed in 4 byte (three bytes blanck on the right). thanks for any help
You should use SAVB FORMAT ALPHA to retain column lengths but you must use something like PCKOUT for your numeric value. Have a look in the Dev Studio help searching for PCKOUT in the index.
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Why would you want to do that? the C is generally for positive numbers with D being for negative. I'm sure I remember the F from my mainframe days but can't remember the significance.
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
"F" is ussed when the number is without sign. There is the problem because the field is the key in the file. When the cobol program read the file does not found the record. I can't change the cobol program. Thank