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 am having A3000 length field which needs to be shown in footing .when we have this long dynamic field in footing its not working .But Same long text field is working in TABFOOTING.
-SET &FOOT_TEXT = 'At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, *** soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.';
TABLE FILE CAR
SUM
COMPUTE FOOT_TEXT/A1200 = '&FOOT_TEXT'; NOPRINT
SALES
BY COUNTRY
BY CAR
BY MODEL
FOOTING
" "
"<FOOT_TEXT"
ON TABLE SUBFOOT
" "
"<FOOT_TEXT"
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='Letter',
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
MARKUP=ON,
$
TYPE=REPORT, FONT=ARIAL, SIZE=10, $
TYPE=TABFOOTING, SIZE=8, WRAP=10,COLOR=BLUE , $
TYPE=FOOTING, SIZE=8, WRAP=10,COLOR=RED, $
END
-RUN
WF- 8105 OUTPUT FORMAT- PDFThis message has been edited. Last edited by: FP Mod Chuck,
The WRAP syntax hasn't changed in recent releases so the following link should help you - WRAP Doc
You will learn that there are only certain TYPEs that can contain WRAP syntax.
General rule if you intend to hand code everything and bypass using the GUI - learn from the documentation and check it always when you have an issue to make sure you are following documented syntax.
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
If WRAP is not way to show long dynamic text field in page footing is there any alternative way is there. I know we can chunk long text into multiple lines using substring but this will be fine if the text is static.
Are you using a variable to provide the footing text?
If so then you could use dialogue manager to split the text into separate variables.
The next question would be, are you using the text editor to code or the GUI?
If using the text editor then you could include dialogue manager to add as many lines of footing as you need to include all of the variables that you've split the original into.
Of course, if you're using the GUI to build the report then you cannot have dialogue manager so you are back to square one.
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Actual format of the field is A3000. When I am trying to display that entire content in footing it's not working. Only 100 to 200 characters only displaying in the footing.
If you understood the documentation, FOOTING is not supported with WRAP so you have to do something different.
Time to get the thinking cap on!
You can redefine text input using the PARAG function (look it up!), which will allow you to substitute a delimiter character with one of your choosing in order to split the single line of text into a potential paragraph.
I did think that, maybe, substituting a carriage return and then using LINEBREAK=CR, $ in the style sheet might have worked. But it doesn't for a FOOTING
So I decided to split the text into multiple lines within a temporary FOCUS file and then join that back into the final report.
A couple of things to take into account -
The text might already contain commas ","
The number of columns required in the FOCUS table will need to reflect the number of times the field length can be taken from the total length. E.g. for a Text length of 1200 (per your example) and a field length of 160, there are 7.5 resultant fields (round up to 8 of course ).
So, I replace the existing commas with the tilde character, PARAG the text into chunks up to 160 chars long, feed the result into a FREEFORM MODIFY and change the tildes back to commas on insertion.
Finally I join the temporary FOCUS table into the parent reporting table and add the footing lines to the footer. Interesting exercise to get the grey cells working
-SET &FOOT_TEXT = 'At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, *** soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.';
-SET &FOOT_TEXT = STRREP(&FOOT_TEXT.LENGTH, &FOOT_TEXT.QUOTEDSTRING, 1, ',', 1, '~', 1200, 'A1200');
-SET &TEMPTEXT = 'x,' | PARAG(1200, &FOOT_TEXT.QUOTEDSTRING, ',', 160, 'A160');
EX -LINES * EDAPUT MASTER,TEMPDAT1,C,MEM
FILENAME=TEMPDAT1, SUFFIX=FOC
SEGNAME=SEG01, SEGTYPE=S1
FIELDNAME=DUMMY, ALIAS=DUMMY, USAGE=A1, ACTUAL=A1, FIELDTYPE=I, $
FIELDNAME=FOOT_TEXT01, ALIAS=FOOT_TEXT01, USAGE=A160, ACTUAL=A160, $
FIELDNAME=FOOT_TEXT02, ALIAS=FOOT_TEXT02, USAGE=A160, ACTUAL=A160, $
FIELDNAME=FOOT_TEXT03, ALIAS=FOOT_TEXT03, USAGE=A160, ACTUAL=A160, $
FIELDNAME=FOOT_TEXT04, ALIAS=FOOT_TEXT04, USAGE=A160, ACTUAL=A160, $
FIELDNAME=FOOT_TEXT05, ALIAS=FOOT_TEXT05, USAGE=A160, ACTUAL=A160, $
FIELDNAME=FOOT_TEXT06, ALIAS=FOOT_TEXT06, USAGE=A160, ACTUAL=A160, $
FIELDNAME=FOOT_TEXT07, ALIAS=FOOT_TEXT07, USAGE=A160, ACTUAL=A160, $
FIELDNAME=FOOT_TEXT08, ALIAS=FOOT_TEXT08, USAGE=A160, ACTUAL=A160, $
EDAPUT*
CREATE FILE TEMPDAT1
MODIFY FILE TEMPDAT1
FREEFORM DUMMY FOOT_TEXT01 FOOT_TEXT02 FOOT_TEXT03 FOOT_TEXT04 FOOT_TEXT05 FOOT_TEXT06 FOOT_TEXT07 FOOT_TEXT08
COMPUTE FOOT_TEXT01/A160 = REPLACE(FOOT_TEXT01, '~', ',');
COMPUTE FOOT_TEXT02/A160 = REPLACE(FOOT_TEXT02, '~', ',');
COMPUTE FOOT_TEXT03/A160 = REPLACE(FOOT_TEXT03, '~', ',');
COMPUTE FOOT_TEXT04/A160 = REPLACE(FOOT_TEXT04, '~', ',');
COMPUTE FOOT_TEXT05/A160 = REPLACE(FOOT_TEXT05, '~', ',');
COMPUTE FOOT_TEXT06/A160 = REPLACE(FOOT_TEXT06, '~', ',');
COMPUTE FOOT_TEXT07/A160 = REPLACE(FOOT_TEXT07, '~', ',');
COMPUTE FOOT_TEXT08/A160 = REPLACE(FOOT_TEXT08, '~', ',');
MATCH DUMMY
ON MATCH REJECT
ON NOMATCH INCLUDE
DATA
&TEMPTEXT,$
END
-RUN
JOIN CLEAR *
JOIN DUMMY WITH COUNTRY IN CAR TO DUMMY IN TEMPDAT1 AS J1
DEFINE FILE CAR
DUMMY/A1 WITH COUNTRY = 'x';
END
TABLE FILE CAR
SUM
SALES
BY COUNTRY
BY CAR
BY MODEL
FOOTING
" "
"<FOOT_TEXT01"
"<FOOT_TEXT02"
"<FOOT_TEXT03"
"<FOOT_TEXT04"
"<FOOT_TEXT05"
"<FOOT_TEXT06"
"<FOOT_TEXT07"
"<FOOT_TEXT08"
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='Letter',
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
MARKUP=ON,
$
TYPE=REPORT, FONT=ARIAL, SIZE=10, $
TYPE=FOOTING, SIZE=8, COLOR=RED, $
END
-RUN
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
… and yes, I know that this uses a variable as input and that yours is a data field but the process might feed your inventiveness and help you find a solution that suits your requirements.
Give the man a rod and teach him to fish …
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004