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 input file which contains Input File (3 fields): 1A2 1B3 1D4 2A6 2B7 2D8
I need output as below X A B C D 1 2 3 0 5 2 5 6 7 8
First column in output file is first column in input file, A B C D are second column in input file, 2, 3, 5, 6, 7, 8 are third column in input file. If any of the row doesn't contain A, B, C, D then 0 need to be generated (like the 4th column in output file).
Could any one help me in doing above.
WebFOCUS 7.6.4, Mainframe Focus Windows XP, All Output Formats
TABLE FILE input_file
SUM third_column
BY first_column
ACROSS second_column
END
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
I have mentioned only 3 fields above, there are other fields which i need to display in my report along with them. Two fields should be hardcoded and 2 fields are date and time. So i was facing problem when i consolidate all the fields.
WebFOCUS 7.6.4, Mainframe Focus Windows XP, All Output Formats
Here is a small example of what might be good for you:
-* File vinay01.fex
EX -LINES 7 EDAPUT MASTER,VINAY,C,MEM
FILENAME=VINAY , SUFFIX=FIX
SEGMENT=VINAY, SEGTYPE=S0
FIELDNAME=NN, ALIAS=NN, USAGE=A1, ACTUAL=A1, $
FIELDNAME=LL, ALIAS=LL, USAGE=A1, ACTUAL=A1, $
FIELDNAME=VV, ALIAS=VV, USAGE=A1, ACTUAL=A1, $
FIELDNAME=WW, ALIAS=WW, USAGE=A1, ACTUAL=A1, $
-RUN
FILEDEF VINAY DISK VINAY.FTM
-RUN
-WRITE VINAY 1A2Q
-WRITE VINAY 1B3W
-WRITE VINAY 1D4E
-WRITE VINAY 1F5Z
-WRITE VINAY 2A6R
-WRITE VINAY 2B7T
-WRITE VINAY 2D8Y
-WRITE VINAY 2C9U
-RUN
SET NODATA=0
TABLE FILE VINAY
SUM VV AS '' WW AS ''
BY NN AS X
ACROSS LL AS ''
END
Explanations: The EX -LINES allows you to write a MASTER in memory. You can look up the syntax in the Forum. The -WRITE creates your data file. Notice that I put 4 fields instead of your 3. The TABLE command creates the output.
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006