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 a simple html page (similar to a form) that takes in few inputs through text fields, dropdowns and other controls. I would like to save that input information as a record in a master file every time I submit the form. Given that, the master file has already been created with all the required input fields. Is this even possible through WebFOCUS? Does anyone know how to accomplish this? Could you also provide an example for it? Thank you for your help.
-RadhikaThis message has been edited. Last edited by: <Emily McAllister>,
I am not sure what you meant by "in what form". I am trying to build a small web application (for my own learning purposes) and am not sure how to do the database connectivity. To give you a clear example -
TABLE FILE CAR PRINT * END
gives you all cars from ENGLAND, JAPAN, ITALY, GERMANY and FRANCE. And let us assume that this car synonym is built using the data in an excel sheet.
Now the user of the web application has the capability to add a new car or a country using a form in a html page and that information from the form should be saved as a new record in the database(in our case the excel sheet with car data should be updated dynamically). The insertion of a record should be done every time the form is submitted(checking uniqueness of the data that is if the give data already exists or not). If the user enters FORD car from USA which previously did not exist, then that information should be updated in the excel sheet so that, when you do a PRINT * on CAR.mas, it gives you all the records including the new records for the country USA.
I am not sure if I made myself clear enough. I would really appreciate if you have any idea on how to accomplish it or have any better suggestions to get it done. Thank you!