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 the report output in PDF format I have placed 4 fields/items in subhead. I am able to identify individual items and changethe style/color of an item. But not able to add borders to individual item.
Is there any way we can place border for individual items?
For PDF documents, you can create borders in HEADINGs and FOOTINGs if you use GIF files. Create two GIF image files each containing a line - one horizontal and one vertical. The length of the image is not important as you will adjust it in WebFocus. Put the two images in your IMAGE folder. Below is a code sample which creates a box in the HEADING.
TABLE FILE CAR HEADING "" PRINT COUNTRY NOPRINT ON TABLE SET STYLE * UNITS=INCHES, PAGESIZE=LETTER, TOPMARGIN=0.250000, BOTTOMMARGIN=0.250000, LEFTMARGIN=0.250000, RIGHTMARGIN=0.250000, FONT=ARIAL, SIZE=8, SQUEEZE=OFF, ORIENTATION=PORTRAIT,$ $ USE THE FOLLOWING GUIDELINES TO DETEMINE SIZE AND POSITION OF LINES $ POSITION=(DISTANCE FROM LEFTMARGIN - DISTANCE FROM TOPMARGIN), $ SIZE=(WIDTH HEIGHT) $ A BOX TYPE=HEADING, IMAGE=Hline.gif, POSITION=(3.25 4.16666), SIZE=(2.000 0.015),$ TOP OF BOX TYPE=HEADING, IMAGE=Vline.gif, POSITION=(3.25 4.00) , SIZE=(0.015 2.000),$ LEFT SIDE OF BOX TYPE=HEADING, IMAGE=Vline.gif, POSITION=(5.25 4.00) , SIZE=(0.015 2.000),$ RIGHT SIDE OF BOX TYPE=HEADING, IMAGE=Hline.gif, POSITION=(3.25 6.00) , SIZE=(2.000 0.015),$ BOTTOM OF BOX ENDSTYLE ON TABLE SET PAGE NOPAGE ON TABLE SET ONLINE-FMT PDF END