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 regular row column report that works fine, and I've been asked to take that data and create a 'worksheet' output. This task is essentially taking all fields for a single record and creating a 2 column list of the field and it's data value.
In the past, I've used the subfoot/subhead commands to accomplish this, but I now require distinct columns in the output (the request asks for 3 additional columns that will have a column heading, but will contain no report data.
I've gone through on-line help, but placeholders <+0> and positionmarkers don't create the columns the way I expected (blank spaces seem to disappear and I can't even get column headings to line up)
ex: "last name : "first name : "address :
Is there an easier way to accomplish this task?This message has been edited. Last edited by: <Kathryn Henning>,
WebFOCUS 7.6.9 Windows all output (Excel, HTML, PDF)
Make a dummy column with how many spaces you need. DEFINE FILE WHATEVER SP/A1 = HEXBYT(160, 'A1'); SP02/A5 = SP|SP|SP|SP|SP; LNAME/A5 = SP02; FNAME/A5 = SP02; ADD/A5 = SP02; END
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005
Here is an easy way. It may not be what you are looking for, but it allows you by using an &variable to output a row or column report.
-* File AL01.fex
-REPEAT #AL FOR &I FROM 1 TO 2;
-SET &OP=DECODE &I(1 AND 2 OVER);
LET OP=&OP
TABLE FILE CAR
PRINT
COUNTRY OP
CAR OP
BODYTYPE OP
SALES
END
-#AL
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