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.
Can some one help me with html composer to get this?
my manager wants an adhoc form. i had all controls, list boxes etc. but he needs one control which shows all available fields that report has and user needs to select what fields he want in the report.
i tried using double list control but it outputs the strings with quotes and OR in between.
is there any way to achieve this without much coding and with GUI?
Thank you..This message has been edited. Last edited by: Kerry,
Thanks Alan. I am working on same for now. Can you provide any sample code to remove OR using those functions?
And I dont think sort order is a problem. User can sort the fields using those arrows in double list control. so it quotes and OR are remvoed it table request should print the fields in that sort order.
STRREP does not like a blank replacement character.
You could try the following:
-SET &C2 = 'MODEL OR CAR OR COUNTRY';
-SET &C3 = STRREP(&C2.LENGTH, &C2, 2, 'OR', 0, 'X', 100, 'A100');
-TYPE &C3
Between each value is ' OR '. Since you're only replacing the 'OR' there will be two blanks between each value, so the replacement string can have a length of zero, with the X as a dummy character that is not used.
Beware of using STRREP to replace 'OR' - this will mess up a value such as 'OREGON'.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server