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.
"Comment" is a text field.When I try to run this report, I get an error message saying '0 ERROR AT OR NEAR LINE 115 IN PROCEDURE ADHOCRQ FOCEXEC * (FOC687) TEXT FIELDS CANNOT BE PRINTED WITH OVER'.
Is there any way to print the "Comment" field in the next line (even though it is a text field)?
Thanks.
Shravan
7.7.03, Windows 7, SQL Server 2005
Posts: 92 | Location: Carmel, IN | Registered: May 09, 2008
There might be a problem when assigning a text field to an alpha field: it could be larger than the assigned number of bytes. Also you might have to use wrapping.
Another solution would be to put the text field in a subfoot:
-* File text1.fex
DEFINE FILE CAR
TEXT1/TX10='This is a text field to be put in a subfoot';
END
TABLE FILE CAR
BY COUNTRY
ON COUNTRY SUBFOOT
"<TEXT1 "
END
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
Yes, there used to be many problems with text fields in 5. And I shall not recount the horrors we encountered here with right-to-left output...
In 7, most of them have been fixed. Try this example:
-* File text1.fex
DEFINE FILE CAR
TEXT1/TX10='This is a text field to be put in a subfoot';
END
TABLE FILE CAR
BY COUNTRY
BY CAR
ON COUNTRY SUBFOOT
"<TEXT1"
END
Look also what happens if you add:
ON TABLE SET STYLE *
TYPE=SUBFOOT, HEADALIGN=BODY, $
ENDSTYLE
or:
ON TABLE SET STYLE *
TYPE=SUBFOOT, HEADALIGN=BODY, COLSPAN=2, $
ENDSTYLE
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006