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 am working on an app where I interact with a Mainframe program which in turn calls my WF reports. The mainframe program passes me a connection id which allows me to link back to that screen. My problem is once the program has linked to one of my reports I am unable to pass the connection id along to the next report and so on. I have exceded my 80 byte limit on my link with the other information I am passing. I was thinking there was a way to keep the value hidden in my HTML screens but that doesn't appear to be work. If anyone has any ideas it would be appreciated.
I think if you set the form action to POST instead of GET, the URL length limit does not get applied. Then you can set your connection ID as a form object.
This is the code I have in my form tag in my HTML document: name="WFForm" method="POST" action="/cgi-bin/ibi_cgi/ibiweb.exe" <input type="hidden" name="connectionid" value="!IBI.AMP.CONN;">
Any idea how I use it in my next report. This is what I need to be able to populate in the next WF report I call. I have tried to do a -SET in my .fex but it doesn't appear to be working.
It doesn't appear that it is getting passed at all. It isn't in my list of &variables. Could I get codes samples that should go both in my first html/fex as well as my second html/fex. I must be missing something.