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.
2222 XYZ SUPPLY HERRIN IL 09/10/2007 4050 30000341 abc-material
I tried using 'FOLD-LINE' and 'OVER'. I am not able to use the FOLD-LINE for more than one line and using OVER I am not able to combine it with 'BY' field. I need to print the results by order-date and OVER wouldn't work using BY field.
Any suggestions/ideas would be apreciated.
Thanks, DR.
Prod: WebFOCUS 8.1.05 on Win 10 Test: WebFOCUS 8.1.05 on Win 10
APP PREPENDPATH IBISAMP IBINCCEN
TABLE FILE GGORDER
SUM ORDER_DATE/DMYY AS ''
OVER PRODUCT_ID AS ''
PRODUCT_DESCRIPTION AS ''
PACKAGE_TYPE AS ''
MAX.SIZE AS ''
MAX.UNIT_PRICE AS ''
BY VENDOR_CODE NOPRINT
BY VENDOR_NAME NOPRINT
BY ORDER_DATE NOPRINT
ON VENDOR_NAME SUBHEAD
"</1 Vendor: <VENDOR_CODE <VENDOR_NAME"
ON TABLE SET HTMLCSS ON
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET STYLE *
UNITS=IN, PAGESIZE='A4', LEFTMARGIN=0.194444, RIGHTMARGIN=0.194444,
GRID=OFF, TOPMARGIN=0.200000, BOTTOMMARGIN=0.100000,
SQUEEZE=ON, ORIENTATION=LANDSCAPE, $
TYPE=REPORT, FONT='ARIAL', SIZE=8, COLOR=RGB(102 102 102),
BACKCOLOR='NONE', STYLE=NORMAL, WRAP=OFF, $
ENDSTYLE
END
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Tony's solution is great and will work. I lately found an other solution. If you have more than one field you can first combine the fields you want per line into one field. Then create an extra field for the line number and then print these lines. It was a lot more work but worth the effort.
Something like
DEFINE FILE CAR
STRING/A100=COUNTRY||' '||MODEL;
LINENUMBER=1;
END
TABLE FILE CAR
PRINT STRING
BY LINENUMBER
BY COUNTRY
ON TABLE HOLD AS H_ONE
END
DEFINE FILE CAR
STRING/A100=TYPE||' '||DESCRIPTION||' '||EDIT(SEATS);
LINENUMBER=2;
END
TABLE FILE CAR
PRINT STRING
BY LINENUMBER
BY COUNTRY
ON TABLE HOLD AS H_TWO
END
TABLE FILE H_ONE
PRINT *
ON TABLE HOLD AS HTOTAL
MORE
FILE H_TWO
END
Now from that hold file you can print the lines by line number, but you can not change the color, character style etc per element on that line.
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006