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 speak from my ignorence... but if you're asking about if you can through Access to do some report without coding in WebFOCUS, i.e SQL... I suppose you can do this, if you have installed the proper ODBC in your machine.
In my home, I have WebFOCUS 7.1 and I remember, this version particularly had come installed with odbc which can be installed insiden Control Panel/Administrative Tools/Data Source.
Once installed, you could do a test from Access and see if you can access data...
No more info can't give
Hope it helps a little.
____________________________________________ Ruben Rueda Consultant Information Builders Iberica
You have an app in Access, and you want torugh a button or label, that clicking it, open and explorer instance wich loads a fex?
Something like that in VB?
Private Sub BtnRuben_Click()
' New instance
Set OBJ = CreateObject("InternetExplorer.Application")
OBJ.Visible = True
'Load a WebPage!
OBJ.navigate "/ibi_apps/WFServlet?IBIF_ex=OneFex&Par1=1&Par2=2"
End Sub
Hope it helps!!
Regards...
Time to go home here in Spain!! :P
____________________________________________ Ruben Rueda Consultant Information Builders Iberica
Thanks. The hyperlink works but then when the report comes up in a separate window it asks for the login. Its like it looses its cookie. Hope that makes sense.
When a user logs into the Dashboard a session is set up with a unique session Id and then the cookie is written (basically). Are you trying to use a hyperlink from Access when the User is logged into Dashboard? To do this you would need to include the session details in the URL and that would be nigh on impossible (someone will prove me wrong).
If you just want to run a report from a hyperlink then you could use the self service approach and pass IBIC_user and IBIC_pass etc. but you would have to prompt for them and then include them in your hyperlink.
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
If I would like to do something like O'brien, I can give a direct call like /ibi_apps/WFServlet?IBIF_ex=somefex&IBIC_user=username&IBIC_pass=somepass ??
____________________________________________ Ruben Rueda Consultant Information Builders Iberica
The parameter bit is yes, but the JSP code would have to deal with it and I'm not sure that WORP_Views.jsp actually does.
The WORP (aka Dashboard) uses different Userid and Password variables than EDA so IBIC_user and pass are unlikely to provide any function within the JSP.
Search the tech support site for Dashboard Login or the like and have a look at the WORP_loginsi.jsp code etc. to see if you can get some ideas.
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
maynot have done it correctly but it still dropped the cookie. What I eneded up doing was when I clicked the display button on my report I brought my report up in the same window. this way it kept the cookie but if I opened the reprot in a new window it asked you to login. Hope this makes sense