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 trying to concatenate multiple rows of email addresses into one row of data. The row will be variable length since there could be as many as 50 emails to combine. The email field in the database is 50 characters (A50) and will need a semi-colon delimiter added to the end of each email address. The row would also begin with a fixed field in front of the email addresses (ie. �All Group Distribution �).
DEFINE FILE CAR EMAIL_ADDRESS/A50 = COUNTRY || '@CARCOMPANY.COM'; EMAIL_ADDRESS2/A3060 = IF EMAIL_ADDRESS2 EQ '' THEN 'All Group Distribution ' | EMAIL_ADDRESS ELSE SUBSTR(3000, EMAIL_ADDRESS2, 1, 3000, 3000, 'A3000') || ';' || EMAIL_ADDRESS; END
TABLE FILE CAR SUM EMAIL_ADDRESS2 ON TABLE SET PAGE NOLEAD ON TABLE SET STYLESHEET * TYPE=REPORT, GRID=OFF, FONT='VERDANA', SIZE=6, $ ENDSTYLE END
EMAIL_ADDRESS is a field to simulate your email address field.
EMAIL_ADDRESS2 is the concatenation of all the email addresses. The SUBSTR function is used bacause you need to concatenate the previous row's email addresses to the current row's email address.
SUM is used to summarize the input into one output row.