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.
TABLE FILE CAR
PRINT
COUNTRY
CAR
MODEL
BODYTYPE
SEATS
DEALER_COST
RETAIL_COST
HEADING
" <+0>OPCON Status<+0> <+0>Crew Availability<+0>"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS OFF
ON TABLE SET STYLE *
INCLUDE = endeflt,$
UNITS=IN, PAGESIZE='Letter', SQUEEZE=ON, ORIENTATION=PORTRAIT,$
TYPE=REPORT, FONT='ARIAL', SIZE=8, COLOR='BLACK', BACKCOLOR='NONE', $
TYPE=HEADING, HEADALIGN=BODY, $
TYPE=HEADING, SIZE=8,BORDER=LIGHT,BORDER-COLOR=RGB(0 0 0), COLOR=WHITE, $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=2, JUSTIFY=CENTER, COLSPAN=2, BACKCOLOR=RGB(70 70 70), $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=4, JUSTIFY=CENTER, COLSPAN=3, BACKCOLOR=RGB(70 70 70), $
TYPE=TITLE,BACKCOLOR=RGB(70 70 70),$
ENDSTYLE
END
This does exactly what I need. Now I want to add a line after every record. So I added this line to the code TYPE=DATA, COLUMN=N1, BORDER-BOTTOM=LIGHT, $
This does not show border as HTMLCSS is OFF. If its ON, other formatting is lost Please suggest a way to get this
ThanksThis message has been edited. Last edited by: Enigma006,
I know the below solution and that is what I mentioned in my post. I don't want to turn HTMLCSS ON because it creates a line gap between column titles and grouping titles that are provided in the HEADING.
I am looking for alternate way to get line for each row.
quote:
Originally posted by Ram Prasad E: Try below code.
APP PATH IBISAMP
TABLE FILE CAR
PRINT
COUNTRY
CAR
MODEL
BODYTYPE
SEATS
DEALER_COST
RETAIL_COST
HEADING
" <+0>OPCON Status<+0> <+0>Crew Availability<+0>"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,$
UNITS=IN, PAGESIZE='Letter', SQUEEZE=ON, ORIENTATION=PORTRAIT,$
TYPE=REPORT, FONT='ARIAL', SIZE=8, COLOR='BLACK', BACKCOLOR='NONE', $
TYPE=HEADING, HEADALIGN=BODY, $
TYPE=HEADING, SIZE=8,BORDER=LIGHT, BORDER-COLOR=RGB(255 255 255), COLOR=WHITE, $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=2, JUSTIFY=CENTER, COLSPAN=2, BACKCOLOR=RGB(70 70 70), BORDER-COLOR=RGB(0 0 0), $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=4, JUSTIFY=CENTER, COLSPAN=3, BACKCOLOR=RGB(70 70 70), BORDER-COLOR=RGB(0 0 0), $
TYPE=TITLE,BACKCOLOR=RGB(70 70 70),$
TYPE=DATA, COLUMN=N1, BORDER-BOTTOM=LIGHT, $
ENDSTYLE
END