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.
My application currently takes in upto 270~ job id's on a text field (the limitation is because the text area can only have 4095 characters). The job id's are seperated by comma. I'd like to enhance the future so that users are able to import in a csv file full of job id's instead of having to type them on the text box. Keep in mind, multiple users can run this report simultaneously and may overwrite each others file if storing the imported file on the server. Logic needs to be built in for that. Also, I have no way of knowing who is currently running the report because we run all our reports using a generic id.
I saw an import future for version 767+, where users are able to import in a excel file, but that seems to work only with reporting objects. All our reports run from the server, nothing from MRE. We are in version 768 here. Any suggestions would be greatly appreciated.
Thanks, SayedThis message has been edited. Last edited by: Kerry,
WF 8.x and 7.7.x Win/UNIX/AS400, MRE/Portal/Self-Service, IIS/Tomcat, WebSphere, IWA, Realmdriver, Active Directory, Oracle, SQLServer, DB2, MySQL, JD Edwards, E-BIZ, SAP BW, R/3, ECC, ESSBASE
Posts: 285 | Location: Texas | Registered: June 27, 2006
On your job ID input page, you could request user initials or some other identification that would be unique to each user. Then use that information to create a uniquely named CVS (or other type) file in a special APP folder on your server.
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
No need to get the user to input their initials, just use AJAX to get their userid - especially as the user has already had to login using their credentials. Use the URL http://[your server]/ibi_apps/WFServlet?IBIMR_action=MR_GET_DOMAINS&IBIMR_returntype=xml and then use a pattern of //CURRENT_USER to get the user id. Finally pass the value to a hidden variable so that it is included in the form execution URL.
Please note: I just know that some of you are going to cut and paste the above URL (with the server changed) to test it. This may give you an error code of 1032 because you're not logged into MRE.
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
For example, writing the variable to a file, Reading it with a TABLE connad and preparing the where clause or building a file that can be used in a JOIN.
Users are not logging into MRE. All reports are run from the server. Users will log into our website but that credential do not get passed to WebFOCUS. WF client passes a generic userid/passd to Reporting server to run all reports.
Thanks, Sayed
WF 8.x and 7.7.x Win/UNIX/AS400, MRE/Portal/Self-Service, IIS/Tomcat, WebSphere, IWA, Realmdriver, Active Directory, Oracle, SQLServer, DB2, MySQL, JD Edwards, E-BIZ, SAP BW, R/3, ECC, ESSBASE
Posts: 285 | Location: Texas | Registered: June 27, 2006
WF client passes a generic userid/passd to Reporting server to run all reports
Well that explains why you wont be able to use that then! How about capturing their IP address - unless you have dynamic IP addressing and they shut down inbetween entry and usage!
If you get the data entry into a file that you could use in MATCH -
MATCH FILE [user data file]
BY JOBID
RUN
FILE [your data file]
PRINT/SUM etc. ......
BY JOBID
AFTER MATCH HOLD AS ..... OLD
END
... should allow you to have a large number of JOBID entries by your end user.
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Seems like too much work to me. Push the stuff up to the foccache diretory to avoid file contention, and to retain it for subsequent requests. Then invoke something like: