Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

BI Beans in Portlets

Status
Not open for further replies.

boligoma

IS-IT--Management
Feb 11, 2003
31
MX
Hi!

I have a portlet (.jsp) that calls a BI Bean generated from JDeveloper. When I run or debbug this portlet in my computer I have no problem in navigate thru the page items. But when I put it in the Portal, I can't navigate it. I have this .jsp as my portlet for the BI Bean, I don't know what I'm doing wrong:

<%@ taglib uri=" prefix="orabi" %>
<%@page contentType="te
Xóchitl Salazar says:
text/html; charset=windows-1252"
import="oracle.portal.provider.v2.render.PortletRenderRequest"
import="oracle.portal.provider.v2.http.HttpCommonConstants"
%>
<%-- Start synchronization of the BI tags --%>
<% synchronized(session){ %>
<orabi:BIThinSession id="BIThinSession1" configuration="/MetalsaBIBIConfig1.xml">
<orabi resentation id="FDEComparativoMes_Presentation1" location="Flujo de Efectivo de Efectivo/FDEComparativoMes" />
</orabi:BIThinSession>

<%
PortletRenderRequest pReq = (PortletRenderRequest)
request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
%>
<FORM name="BIForm">

<!-- Insert your Business Intelligence tags here -->
<orabi:Render targetId="FDEComparativoMes_Presentation1" parentForm="BIForm" />
<%-- The InsertHiddenFields tag adds state fields to the parent form tag --%>
<orabi:InsertHiddenFields parentForm="BIForm" biThinSessionId="BIThinSession1" />
</FORM>

<% } %>
<%-- End synchronization of the BI tags --%>

Regards,

IM
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top