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.
This sounds like a perfect case for a simple MAINTAIN application. You could easily create a MAINTAIN web app to populate an "editable" table for your users.
WF 7.6.10 / WIN-AIX
Posts: 141 | Location: Denver, CO | Registered: December 09, 2005
Kev, David can do it with MODIFY. He doesn't need MAINTAIN. David, you'll probably want to pass the &var for the textarea (say its called &MYANSWER) back to your fex, making sure you've restricted the textarea to 250 chars
and then look at the result field; you'll probably have cr/lf in the response field and you may want to strip them out before you process the data. there are several ways to do that...holler back when you get that far. Now for updating your source db, you can use a MODIFY to change the data value in the database from whatever it was before the user changed it, to whatever it is now. You've used MODIFY before??? or is it just the TEXTAREA fielddtype you had not used before? If you already have a MAINTAIN license, just ignore me and go listen to KevinG.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
We don't have access to MAINTAIN in our environment.
I am ok with the MODIFY commands to update the database.
My questions more have to do with controlling the TEXTAREA HTML control, and responding to my data entry person's actions: - How to limit the data entry person to 250 characters?... - How to strip out cr/lf...
use the html example i gave you go limit the size cols="250" then do a test, read that field in via some text fex and see what the data looks like; see what the cr/lf looks like...what kind of character do you see? at my site, it looks like a little box..and i have a way to handle it..but you might be able to CTRAN it out or STRIP it out, but we have to identify it first.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003