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 report that I have created in document composer that uses multiple reports to produce the output. The current format is PDF, however, the user needs to edit the information after the report is created with special comments. Is there a way to feed the report to a Word document so they can edit it and it will keep the general format of the way the report is set up? Or does anyone know of a way around this? The option of using an excel document and uploading to a Micrsoft Mail merge is not the way I want to go either, to cumbersome in building it that way.
Any ideas? Thanks! AndreaThis message has been edited. Last edited by: Kerry,
WebFOCUS 7.6.11 Developer Studio / Report Painter / MRE Unix / Solaris Outputs: Excel, HTML,PDF
Posts: 13 | Location: New London, CT | Registered: March 26, 2009
Word is not an option, I have tried this some time ago with several options, but the result was not what you should like. Waz suggestion could be the way to go An other one is putting the remarks in a database and recreate the report after they made there remarks. (not easy I know....)
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
I have done Word documents before, but using EXL2K format returning as DOC format, it sort of works, but does not respect pagebreaks.
Here is my try.
DEFINE FILE CAR
PageBreak/A200 = '</FONT></TD></TR></table><span><br clear=all style=''mso-special-character:line-break;page-break-before:always''>'
| '</span><TABLE X:STR BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD>' ;
END
TABLE FILE CAR
HEADING
"DOC Test"
PRINT CAR MODEL BODYTYPE
BY COUNTRY PAGE-BREAK
FOOTING BOTTOM
"<PageBreak"
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=TITLE, STYLE=BOLD, BACKCOLOR=YELLOW, COLOR=BLUE, $
TYPE=DATA, COLUMN=CAR, COLOR=RED, $
TYPE=HEADING, STYLE=BOLD, SIZE=14, COLOR=PURPLE, FONT=ARIAL, $
ENDSTYLE
ON TABLE HOLD AS H_DOC2 FORMAT EXL2K
END
-RUN
SET HTMLFORMTYPE = DOC
-HTMLFORM H_DOC2