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 have an HTML launch page, one of the Fields in the launch page is ID_Number. There are too many IDs to display in the Listbox. So, users can run a report on a particular ID number or multiple IDs by entering them in the EditBox.
I have a Filter in the report for the ID_Number column. What logical relation, compare type and Compare Value should I enter to make it work?
Thanks,This message has been edited. Last edited by: <Kathryn Henning>,
Hi Doug, It could vary from 1 to as many as the user wants. It probably will not be more than 10 but it depends on the user. There are about 10,000 IDs and I don't want a listbox of 10,000 IDs. For example: I want the user to be enter the IDs in the text box in this format:
There are a number of ways that you can do this but it will require some javaScript code. I built a IntelliSence like set of controls that can allow the user to search ids and then save the selection and do another search and save the selection. I have a presentation that I could share with you. Open a tech support case and ask for Barry.
Thanks Barry
WebFOCUS 8103, Windows, App Studio
Posts: 80 | Location: NYC | Registered: November 13, 2008
Assuming that the input is alpha, one can use a bunch of functions to replace the comma with a quote-comma-quote sequence. There shouldn't be any spaces around the commas in the input unless the value has a leading or trailing space!
-* File ccer01.fex
-SET &ECHO = 'ALL';
-*
-DEFAULT &INPUT = 'ENGLAND,FRANCE,W GERMANY,ITALY'
-SET &ILEN=&INPUT.LENGTH;
-SET &STRLEN=ARGLEN(&ILEN,STRIP(&ILEN, &INPUT, ',', 'A&ILEN.EVAL'), 'I3');
-SET &CC=&ILEN - &STRLEN;
-SET &QLEN=&STRLEN + 3 * &CC;
-SET &ITEM_LIST = STRREP(&ILEN, &INPUT, 1, ',', 3, ''',''', &QLEN, 'A&QLEN.EVAL');
-TYPE ITEM_LIST = &ITEM_LIST
-*
TABLE FILE CAR
SUM
DEALER_COST
RETAIL_COST
BY COUNTRY
BY CAR
WHERE COUNTRY IN ('&ITEM_LIST');
END
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
Thank you! This issue is resolved. I was able to speak with Barry and get his solution by using Javascript. It wasn't exactly what I was looking for but it works.