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 created a define within a synonym and am making a PDF report off of it. I need to wrap the text but it isnt working for any of my define fields. It is working for my regular fields... which I thought was odd.
Below is my code. All the RPT_ columns are defines within the synonym and they dont wrap. If I change them to reference fields it does wrap. Let me know if there is a way to get the defines to wrap. Thanks.
TABLE FILE ESTIMATEDTIMEKEEPER_BV SUM ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATEDETAIL.RPT_ESTIMATEDTIMECOMMITMENT BY ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATE.TIMEKEEPERNAME BY ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATEDETAIL.RPT_CLIENTCODE BY ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATEDETAIL.RPT_CLIENT BY ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATEDETAIL.RPT_MATTER BY ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATEDETAIL.RPT_MATTERCODE BY ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATEDETAIL.RPT_SUPERVISINGATTYNAMELIST BY ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATEDETAIL.RPT_MAJORASSIGNMENTS BY ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATEDETAIL.RPT_WORKONHORIZON
ON ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATE.TIMEKEEPERNAME SUBTOTAL AS '*TOTAL' HEADING "Commercial Litigation DC/VA " "Associate Project Workload" "WHERE ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATE.RequiresDetail; WHERE ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATE.CurrentEstimateEndDate; WHERE ESTIMATEDTIMEKEEPER_BV.TIMEKEEPERESTIMATE.PGPrompt; ON TABLE SET PAGE-NUM NOLEAD ON TABLE SET ASNAMES ON ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT PDF ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * INCLUDE = IBFS:/WFC/Repository/Reat_Time_TKPR_Estimates/Hidden_Content/TKPREstimatesReport.sty, $ PAGESIZE='Letter', LEFTMARGIN=0.250000, RIGHTMARGIN=0.000000, TOPMARGIN=0.500000, BOTTOMMARGIN=0.500000, ORIENTATION=LANDSCAPE, $ TYPE=REPORT, LINES-PER-PAGE=20, $ TYPE=TITLE, COLUMN=N1, COLOR='WHITE', BACKCOLOR=RGB(66 112 194), $ TYPE=TITLE, COLUMN=N2, COLOR='WHITE', BACKCOLOR=RGB(66 112 194), $ TYPE=TITLE, COLUMN=N3, COLOR='WHITE', BACKCOLOR=RGB(66 112 194), $ TYPE=TITLE, COLUMN=N4, COLOR='WHITE', BACKCOLOR=RGB(66 112 194), $ TYPE=TITLE, COLUMN=N5, COLOR='WHITE', BACKCOLOR=RGB(66 112 194), $ TYPE=TITLE, COLUMN=N6, COLOR='WHITE', BACKCOLOR=RGB(66 112 194), $ TYPE=TITLE, COLUMN=N7, COLOR='WHITE', BACKCOLOR=RGB(66 112 194), $ TYPE=TITLE, COLUMN=N8, COLOR='WHITE', BACKCOLOR=RGB(66 112 194), $ TYPE=TITLE, COLUMN=N9, COLOR='WHITE', BACKCOLOR=RGB(66 112 194), $ TYPE=HEADING, LINE=1, JUSTIFY=CENTER, $ TYPE=HEADING, LINE=1, OBJECT=TEXT, ITEM=1, SIZE=14, $ TYPE=HEADING, LINE=2, JUSTIFY=CENTER, $ TYPE=HEADING, LINE=2, OBJECT=TEXT, ITEM=1, SIZE=14, $ TYPE=HEADING, LINE=3, JUSTIFY=CENTER, $ TYPE=HEADING, LINE=3, OBJECT=TEXT, ITEM=1, SIZE=14, BACKCOLOR='WHITE', $ TYPE=HEADING, LINE=3, OBJECT=TEXT, ITEM=2, SIZE=14, $ TYPE=HEADING, LINE=3, OBJECT=FIELD, ITEM=1, SIZE=14, BACKCOLOR='WHITE', $ TYPE=HEADING, LINE=3, OBJECT=FIELD, ITEM=2, SIZE=14, BACKCOLOR='WHITE', $ TYPE=REPORT, COLUMN=N1, WRAP=0.930556, $ TYPE=REPORT, COLUMN=N2, WRAP=0.402778, $ TYPE=REPORT, COLUMN=N3, WRAP=0.930556, $ TYPE=REPORT, COLUMN=N4, WRAP=0.930556, $ TYPE=REPORT, COLUMN=N5, WRAP=0.430556, $ TYPE=REPORT, COLUMN=N6, WRAP=1.180556, $ TYPE=REPORT, COLUMN=N7, WRAP=1.388889, $ TYPE=DATA, COLUMN=RPT_WORKONHORIZON, WRAP=1.375000, $ TYPE=REPORT, COLUMN=N9, WRAP=0.805556, $ ENDSTYLE ENDThis message has been edited. Last edited by: FP Mod Chuck,
By default, WRAP is set to ON for HTML output, allowing each individual browser to define the width of each column
in the report. For PDF, PS, DHTML, PPT, and PPTX output, WRAP is set OFF by default. For these positioned output
formats in which the location of each item in the report is explicitly defined, WRAP = ON is not a valid value,
except when specified for ACROSSVALUE. For other elements of the report, such as headers, footers, titles, or data,
define the width of wrapped lines by using a numerical value, as in WRAP = n.
Syntax you need is something like this:
TYPE=REPORT, SQUEEZE=ON, WRAP=1.5,$
This message has been edited. Last edited by: BabakNYC,
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015