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.
after a few hours of trying I post this message - hope my question is an easy one.
I would like to add to all reports (in the html section) a link to a feedback formular and would like to get the users login name automatically.
As I understood the documentation there should be a cookie WF_USER containing this information - but I can't find this cookie. I have found even the setting to encrypt that one - but still it is not there.
Does anyone know how to get this cookie or is there another way to get the user login in the html section of an report. I was able to add it to the fex - but that does not help me, as I have reports which a) produce no data or b) don't run an fex after opening the report.
Another solution could be to set my own cookie after login - but where can I add this piece of code? I was able to add it onto the logon page but then I do not know if the login which was typed in was ok or not.
Using WF 7.6.6
Thanks TorstenThis message has been edited. Last edited by: Kerry,
Hello If you want to use the variable &IBIMR_user in a .Fex you must add that line IBIMR_user(pass) On you WebFocus Administrator Console Configuration/ Custom Settings
Here's a method to find out what cookies were saved for the server or domain:
1) On the Internet Explorer Links toolbar, add a page (any page) by dragging a URL to the Links toolbar. 2) Right-click and select Properties of the newly created Link. On the Web Document tab, enter the JavaScript code below in the URL textbox and on the General tab, enter "cookies" as the name of the Link. 3) Click OK, also click OK for any warning pop-up messages.
Now, when you click on this Link, a pop-up window will display the cookie values for the server or domain of the current web page.
thanks for the tip - but my problem is not that I don't know how to see the cookie - the cookies is simply not there. Your code told me the same. Btw with Firefox there are easier ways to see your cookies.
My problem is a) that there is no cookie WF_User and/or b) that I do not know how to get the username of the logged in user in the html part of an report and NOT in the fex.
If you are using BID, the WF_USER cookie does not exist (as you have noticed). You have the MR_COOKIE, but as Francis pointed out, you would have to decypt it to use it. I would suggest that if you are changing the WORP_Login.jsp anyway, why not create your own cookie at submission time. The userid is part of the form, so it shouldn't be a problem to create or use.
"There is no limit to what you can achieve ... if you don’t care who gets the credit." Roger Abbott
thanks for all your answers. I hoped there would be another way to use the username without my own cookie. I have now implemented it the way that i create a cookie while click on sign on button and set a cookie with livetime 0 - means get disturbed once browser is closed.