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.
The fact that it seems to work for numeric values may be that numbers are by default right-aligned so even if you were trying to style the wrong column you wouldn't notice the effect.
Yes, its the 3rh column. I made sure by also including COLOR=RED and the color of column data changes to red but the text is still left alligned. I also tried doing in GUI and using P3 instead but still didn't work. Also, I have the same problem with all alphanumeric columns in this report and not just the one I indicated. Not sure what's wrong. I will open a case with tech support. Thanks.This message has been edited. Last edited by: texgator,
WebFOCUS 7.6.10 Windows all output (Excel, HTML, PDF)
The output is in AHTML and following is the styling code. Basically its just ignoring all the column justifications I am asking for and just putting them out as default i.e. numbers aligned right and alphanumeric aligned left. Any clues?
ON TABLE SET PAGE-NUM OFF ON TABLE COLUMN-TOTAL AS 'Total' 'GLTRANS.GLTRANS.PSLAMO' 'GLTRANS.GLTRANS.PSAMTR' ON TABLE PCHOLD FORMAT AHTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, SQUEEZE=ON, ORIENTATION=LANDSCAPE, $ TYPE=REPORT, GRID=OFF, FONT='ARIAL', SIZE=9, $ TYPE=DATA, COLUMN=N15, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N14, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N13, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N12, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N11, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N10, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N9, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N7, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N16, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N8, JUSTIFY=RIGHT,
Hmm..interesting. I think its an issue with my version 7.6.10. Below is the response I got from tech support. I tried the code below with HTML output and it works but when I switch to AHTML, it doesn't work. Too bad I need the reports in AHTML format to have sorting, export, and other functions that end users could do.
Tech Support response: "It is a known issue that currently column justification is now working correctly with active report output. I will associate your case with the known issue and you will be contacted with the release number where this issue is fixed."
TABLE FILE car PRINT * ON TABLE SET PAGE-NUM OFF ON TABLE COLUMN-TOTAL AS 'Total' ON TABLE PCHOLD FORMAT AHTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, SQUEEZE=ON, ORIENTATION=LANDSCAPE, $ TYPE=REPORT, GRID=OFF, FONT='ARIAL', SIZE=9, $ TYPE=DATA, COLUMN=N1, JUSTIFY=RIGHT, $ TYPE=TITLE, COLUMN=N1, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N2, JUSTIFY=RIGHT, $ TYPE=TITLE, COLUMN=N2, JUSTIFY=RIGHT, $ TYPE=DATA, COLUMN=N3, JUSTIFY=RIGHT, $ TYPE=TITLE, COLUMN=N3, JUSTIFY=RIGHT, $
ENDSTYLE END
WebFOCUS 7.6.10 Windows all output (Excel, HTML, PDF)