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.
Now I am getting another error I am doing INPUT type=hidden name="IBIC_server" value="!IBI.AMP.IBIC_server;" INPUT type=hidden name="IBIAPP_app" value="!IBI.AMP.IBIAPP_app;" INPUT type=hidden name="IBIF_ex" value="run"
(I have removed the '<' and '>') and in javascript on click of save
function execute_fex(param) { if (param == run) { url="/ibi_apps/WFServlet?"+"&"+"IBIC_server=EDASERVE"+"&"+"IBIF_ex="+"RUN"; document.getElementById("iframe1").src = url; } else { put the same code with the other fex name. } }
This is just an example cant say it will work or not but this is one of the alternate method. Regards AdeshThis message has been edited. Last edited by: <Adesh>,
CD Have you got more than 1 form on the page? The forms[0] refers to the first form on the page, forms[1] would be the second, etc. The error you are getting suggests that js cannot find IBIF_ex in the first form, FORMS[0].
My preferred method is to utilise unique ids on each element and use the getElementById method, which avoids these issues. So Francis's code would become: