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.
Here is the one interesting code below: I am using this below code as part of report. ################################# SUM COMP_RATECD AS 'Rate Code' CURRENCY_CD AS 'Currency Type' COMP_RATE/D18.2 AS 'Amount' BY TGT_BUSINESS_NAME NOPRINT BY EMPLID NOPRINT
ACROSS TGT_COMPRATE_TYPE NOPRINT COLUMNS 'Allowance #1' AND 'Allowance #2' AND 'Allowance #3' AND 'Allowance #4' AND 'Allowance #5' AND 'Allowance #6' AND 'Allowance #7' AND 'Allowance #8' AND 'Allowance #9' AND 'Allowance #10' AND 'Allowance #11'
#################################
Explaination: Right now report is displaying values for 'Rate Code', 'Currency Type', and 'Amount' with repetition of 11 times because of the database values given with ACROSS VALUES from 'Allowance #1' to 'Allowance #11'. Here these 3 titles are repeating with same names in 11 times. (Data is coming correctly for each Allowance)
But, the requirement of Titles display on HTML report must be same as mentioned below:
Hari, First you need to hold the table with ACROSS. So the hold file will contain 2+(3 x 11) = 35 columns, with alias name E01,E02,... till E35.
This you can Print in HTML output in the subsequent TABLE FILE request by directly refering to these 35 columns. Or you can use Looping to get this in case if ACROSS Values are dynamic.