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.
There is no IBIMR parameter that I am aware of. If the e-mail address is stored in your AD/LDAP directory you can use the LDAP Adapter (It is a free adapter) to look it up. It is a bit tricky setting up the ldap adapter as you have to have the right pointers (OU=) to where this information can be found in the configuration.
Hope this helps,
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005
My two cents: I'm not sure why the email address is not exposed in an IBI MR parameter, it seems to make sense that it would be. It shouldn't be up to the customer to ask for it and then wait years for it to be deployed - this is the kind of thing that should be there out of the box.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
Meanwhile, I would just write a utility program that I would include wherever needed. It would read the appropriate WebFOCUS Repository table, uoa_users:
-SET &ECHO='ALL';
SET SQLENGINE = MYSQL
SQL SET DEFAULT_CONNECTION webfocus8
-RUN
SQL
select
email 'EMAIL_ADDRESS'
from uoa_users
where name = '&IBIMR_user';
TABLE ON TABLE HOLD AS HOLD_EMAIL
END
-RUN
-SET &EMAIL_ADDRESS = '';
-READFILE HOLD_EMAIL
-TYPE &EMAIL_ADDRESS
You can either create metadata for the Repository table(s) and then use TABLE FILE, or use SQL passthru.
You can make the utility program more useful by also retrieving other user attributes, like Name, etc.
Note: Depending on your set up, you may have to include the schema name as prefix to the table name.
All this works only if the information was added to the WebFOCUS Security Center.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server