Problem displaying data in Crystal Viewer

Hi,
First time posting on here, so apologies if I've got the wrong thread....
Currently developing an application that uses ASP, via a COM+ object to connect to SQL Server 2005 Db.  My problem is that since the users default printer might not be visible on the application server anymore, we have had to use a Crystal viewer on the front end to print.  To do this we have moved some code from the COM+ and placed it in an asp page. 
This page then creates a connection and runs a stored procedure, putting the results of the query into a recordset.  This is then used to populate CrystalRuntime Application, Report and PageEngine objects.  This page #Includes the SmartViewerActiveX.asp file which then in turn calls rptserver.asp.
The viewer is displayed on the screen, but with the fields displaying only the field types, no data from the Db is displayed.  I have no idea why and am at my wits end!!!   Can anyone give any advice or hints that I could investigate.  I've never used Crystal Viewer before and could do with any helpfull advice.   The SmartViewerActiveX.asp and rptserver.asp files have not been ameneded.  Do I need to do anything with the ttx files????
Thanks in advance....
Code of the originating asp page :-
<object runat=server progid = Print.print id=objPrint></object>
<object runat=server progid = com.session id=objSession></object>
<object runat=server progid = com.login id=objLogin></object>
<object runat=server progid = com.request id=objRequest></object>
<!#INCLUDE FILE="gen_funcs.asp">
<!#INCLUDE FILE="adovbs.inc">
<%
     Dim rsSession
     Dim strUserID
     Dim iUserType
     Dim strSalutation1
     Dim strNewRequestASP
     Dim rsDetails     
     Dim varRetValue
     Dim Comm
     Dim Conn
     Dim ADORs
     Dim adoRS1
     Dim adoRS2
     Dim adoRS3
     Dim oApp
     Dim oRpt
     Dim oPageEngine
     strUserID = getWindowsLogIn
     'Retrieve Session Data from session object
     Set rsSession = objSession.GetDetails(strUserID)
     strSalutation = rsSession.Fields("login_data")
     iUserType = rsSession.Fields("user_type")
     Set rsSession = Nothing
     varRetValue = "true"
If IsObject(session("oRpt")) then
     Set session("oRpt") = nothing
End if 
set Comm = Server.CreateObject("ADODB.Command")
set Conn = Server.CreateObject("ADODB.Connection")
set session("AdoRS") = Server.CreateObject("ADODB.Recordset")
Comm.CommandTimeout=60
mStr = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;User ID=sa;Initial Catalog=DEV;Data Source=GBNBS1501;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=GBNBS0500;Use Encryption for Data=False;Tag with column collation when possible=False"
mstr=replace(mstr, "Integrated Security=SSPI;","")
Conn.Open Mstr & ";Trusted_Connection=no", "crystaluser", "crystalpassword"
set Comm.ActiveConnection = Conn
Comm.CommandText = "usp_get_customer_letter"
Comm.CommandType = adCmdStoredProc
Comm.Parameters.Append Comm.CreateParameter("@requestID", adBigInt, adParamInput, 8, Request.QueryString("RequestID"))
set session("AdoRS") = Comm.Execute
If Not IsObject (session("oApp")) Then                             
     set session("oApp") = Server.CreateObject("CrystalRuntime.Application.11")
End If
If IsObject(session("oRpt")) then
     Set session("oRpt") = nothing
End if
'This "While/Wend" loop is used to determine the physical path (eg: C:\) to the
'Crystal Report file by translating the URL virtual path (eg: http://Domain/Dir) 
dim path
Path = Request.ServerVariables("PATH_TRANSLATED")                    
While (Right(Path, 1) <> "\" And Len(Path) <> 0)                     
iLen = Len(Path) - 1                                                 
Path = Left(Path, iLen)                                              
Wend                                                                               
path=path + "Reports\"
set session("oRpt") = session("oApp").OpenReport(path & "Letter.rpt", 1) 
session("oRpt").MorePrintEngineErrorMessages = False
session("oRpt").EnableParameterPrompting = False
session("oRpt").DiscardSavedData
Set crDatabase = session("oRpt").Database
Set crTables = crDatabase.Tables
Set crTable = crTables.Item(1)
crTable.SetPrivateData 3, session("AdoRS")
on error resume next
     adoRS1 = objPrint.GetSubReportSuccessful(Request.QueryString("RequestID"))
     adoRS2 = objPrint.GetSubReportUnsuccessful(Request.QueryString("RequestID"))
        'This section adds subreport data for successful traces to the letter
     If adoRS1.EOF = False Then
             Set crSections = session("oRpt").Sections
              For x = 1 To crSections.Count
                  Set crSection = crSections(x)
                  Set crReportObjs = crSection.ReportObjects
                      For y = 1 To crReportObjs.Count
                          If crReportObjs.Item(y).Kind = crSubreportObject Then
                              Set crSubreportObj = crReportObjs.Item(y)
                              If crSubreportObj.Name = "Schemes" Or crSubreportObj.Name = "WelshSchemes" Then
                                  Set crSubreport = session("oRpt").OpenSubreport(crReportObjs(y).Name)
                                  crSubreport.DiscardSavedData
                                  Set crDatabase = crSubreport.Database
                                  Set crTables = crDatabase.Tables
                                  Set crTable = crTables.Item(1)
                                  crTable.SetPrivateData 3, adoRS1
                              End If
                          End If
                      Next
              Next
          End If
        'This section adds subreport data for unsuccessful traces to the letter
           If adoRS2.EOF = False Then
             Set crSections = session("oRpt").Sections
              For x = 1 To crSections.Count
                  Set crSection = crSections(x)
                  Set crReportObjs = crSection.ReportObjects
                      For y = 1 To crReportObjs.Count
                         If crReportObjs.Item(y).Kind = crSubreportObject Then
                              Set crSubreportObj = crReportObjs.Item(y)
                              If crSubreportObj.Name = "Unsuccessful_traces" Then
                                  Set crSubreport = oRpt.OpenSubreport(crReportObjs(y).Name)
                                  crSubreport.DiscardSavedData
                                  Set crDatabase = crSubreport.Database
                                  Set crTables = crDatabase.Tables
                                  Set crTable = crTables.Item(1)
                                  crTable.SetPrivateData 3, adoRS2
                              End If
                          End If
                      Next
              Next
          End If
session("oRpt").ReadRecords
If IsObject(session("oPageEngine")) Then                             
     set session("oPageEngine") = nothing
End If
set session("oPageEngine") = session("oRpt").PageEngine
set Conn = nothing
set Comm = nothing
%>
<!-- #include file="SmartViewerActiveX.asp" -->
<%

Here's the code...
<object runat=server progid = Print.print id=objPrint></object>
<object runat=server progid = com.session id=objSession></object>
<object runat=server progid = com.login id=objLogin></object>
<object runat=server progid = com.request id=objRequest></object>
<!#INCLUDE FILE="gen_funcs.asp">
<!#INCLUDE FILE="adovbs.inc">
<%
     Dim rsSession
     Dim strUserID
     Dim iUserType
     Dim strSalutation1
     Dim strNewRequestASP
     Dim rsDetails     
     Dim varRetValue
     Dim Comm
     Dim Conn
     Dim ADORs
     Dim adoRS1
     Dim adoRS2
     Dim adoRS3
     Dim oApp
     Dim oRpt
     Dim oPageEngine
     strUserID = getWindowsLogIn
     'Retrieve Session Data from session object
     Set rsSession = objSession.GetDetails(strUserID)
     strSalutation = rsSession.Fields("login_data")
     iUserType = rsSession.Fields("user_type")
     Set rsSession = Nothing
     varRetValue = "true"
If IsObject(session("oRpt")) then
     Set session("oRpt") = nothing
End if 
set Comm = Server.CreateObject("ADODB.Command")
set Conn = Server.CreateObject("ADODB.Connection")
set session("AdoRS") = Server.CreateObject("ADODB.Recordset")
Comm.CommandTimeout=60
mStr = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;User ID=sa;Initial Catalog=DEV;Data Source=GBNBS1501;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=GBNBS0500;Use Encryption for Data=False;Tag with column collation when possible=False"
mstr=replace(mstr, "Integrated Security=SSPI;","")
Conn.Open Mstr & ";Trusted_Connection=no", "crystaluser", "crystalpassword"
set Comm.ActiveConnection = Conn
Comm.CommandText = "usp_get_customer_letter"
Comm.CommandType = adCmdStoredProc
Comm.Parameters.Append Comm.CreateParameter("@requestID", adBigInt, adParamInput, 8, Request.QueryString("RequestID"))
set session("AdoRS") = Comm.Execute
If Not IsObject (session("oApp")) Then                             
     set session("oApp") = Server.CreateObject("CrystalRuntime.Application.11")
End If
If IsObject(session("oRpt")) then
     Set session("oRpt") = nothing
End if
'This "While/Wend" loop is used to determine the physical path (eg: C:\) to the
'Crystal Report file by translating the URL virtual path (eg: http://Domain/Dir) 
dim path
Path = Request.ServerVariables("PATH_TRANSLATED")                    
While (Right(Path, 1) <> "\" And Len(Path) <> 0)                     
iLen = Len(Path) - 1                                                 
Path = Left(Path, iLen)                                              
Wend                                                                               
path=path + "Reports\"
set session("oRpt") = session("oApp").OpenReport(path & "Letter.rpt", 1) 
session("oRpt").MorePrintEngineErrorMessages = False
session("oRpt").EnableParameterPrompting = False
session("oRpt").DiscardSavedData
Set crDatabase = session("oRpt").Database
Set crTables = crDatabase.Tables
Set crTable = crTables.Item(1)
crTable.SetPrivateData 3, session("AdoRS")
on error resume next
     adoRS1 = objPrint.GetSubReportSuccessful(Request.QueryString("RequestID"))
     adoRS2 = objPrint.GetSubReportUnsuccessful(Request.QueryString("RequestID"))
        'This section adds subreport data for successful traces to the letter
        If adoRS1.EOF = False Then
             Set crSections = session("oRpt").Sections
              For x = 1 To crSections.Count
                  Set crSection = crSections(x)
                  Set crReportObjs = crSection.ReportObjects
                      For y = 1 To crReportObjs.Count
                          If crReportObjs.Item(y).Kind = crSubreportObject Then
                              Set crSubreportObj = crReportObjs.Item(y)
                              If crSubreportObj.Name = "Schemes" Or crSubreportObj.Name = "WelshSchemes" Then
                                  Set crSubreport = session("oRpt").OpenSubreport(crReportObjs(y).Name)
                                  crSubreport.DiscardSavedData
                                  Set crDatabase = crSubreport.Database
                                  Set crTables = crDatabase.Tables
                                  Set crTable = crTables.Item(1)
                                  crTable.SetPrivateData 3, adoRS1
                              End If
                          End If
                      Next
              Next
          End If
        'This section adds subreport data for unsuccessful traces to the letter
           If adoRS2.EOF = False Then
             Set crSections = session("oRpt").Sections
              For x = 1 To crSections.Count
                  Set crSection = crSections(x)
                  Set crReportObjs = crSection.ReportObjects
                      For y = 1 To crReportObjs.Count
                         If crReportObjs.Item(y).Kind = crSubreportObject Then
                              Set crSubreportObj = crReportObjs.Item(y)
                              If crSubreportObj.Name = "Unsuccessful_traces" Then
                                  Set crSubreport = oRpt.OpenSubreport(crReportObjs(y).Name)
                                  crSubreport.DiscardSavedData
                                  Set crDatabase = crSubreport.Database
                                  Set crTables = crDatabase.Tables
                                  Set crTable = crTables.Item(1)
                                  crTable.SetPrivateData 3, adoRS2
                              End If
                          End If
                      Next
              Next
          End If
session("oRpt").ReadRecords
If IsObject(session("oPageEngine")) Then                             
     set session("oPageEngine") = nothing
End If
set session("oPageEngine") = session("oRpt").PageEngine
set Conn = nothing
set Comm = nothing
%>
<!-- #include file="SmartViewerActiveX.asp" -->
<%

Similar Messages

  • Stored Procedure for displaying data in Crystal Reports

    Hi I am new to Oracle & Crystal Reports,so can any one please give me sample stored procedure to display data in Crystal report from Oracle by passing rwo input values.

    from site:-
    Crystal Reports will only support the return of a single refcursor from Oracle. Even the latest and greatest version 10 doesn't allow you to return more than one recordset at a time. You could add one more step to your procedure that would join up the output of the multiple refcursors into a PL/SQL table and then fetch the result set out through a single refcursor. That way you are using temporary space that will be cleaned up as soon as the connection is terminated and will only be returning a single refcursor

  • Problem Displaying data from oracle in JTable

    Please can any one help me? I have a problem displaying the data fetched from oracle database(ResultSet) in JTables. Can any one provide me with any possible way out(and any alternative).

    User,
    As suggested in the other post - Google/Books/find a mentor is the best option.

  • Problems Displaying data from RFC on Adobe Forms

    Hi,
    I have some Problems with creating an Adobe Form and hope, someone can help me or give me some hinds to some tutorials, which can help me.
    I'm developing an webdynpro-application which get data from a R/3 via RFC-Call.
    Context-Binding and so on is done and works. I created also an interactive form and can display some datas on it.
    Here my questions:
    I have an field 'unit' which shoulb be displayed on several positions onto the form. My problem is, i can display it only once. If i copy the field, there is no output in it. What can i do, to solve the problem?
    From the RFC i get a table with several rows of data, i want to display on the form.
    With drag&drop i can place the fields onto the form but they are displayed only once. I want one line for every row from the table.
    What do i have to do? Are there tutorials which show the steps?
    When I am not using a form, i can display the data from RFC in a table with no problems (i create a table ui and choose create binding from context menue). Are the nescessary steps for displaying the data on an interactive form the same.
    I read something about creating a dynamic form design. Do i have to create it? What are the steps i have to do.
    Many questions, but i hope that someone can give me some helpful hints.
    Many thanks
    Mathias Lange

    Hi Mathias,
    If I caught you correctly, you want to display data in Adobe forms in form of tabel, right?
    So, follow the steps:
    1. Insert one sub form on your adobe form.
    2. Set its type as "flow content" in object->subform property.
    3. Set flow direction as "Table".
    4. Insert another subform inside this subform.
    5. set its type as "flow content" and flow direction as "Table row".
    6. Now, choose binding tab, and there check "repeat subform for each Data item check box" and specify min. count for your rows.
    7. Now, insert your column fields inside this sub form once.
    8. Format its look and feel as you want.
    When you run this application, it will show you multiple data as table on Adobe form.
    Regards,
    Bhavik

  • Problem displaying data in Excel with Jsp

    HI,
    For some reason when i save data from jsp to excel, my Excel dont display data.This code was working fine from past 3 years all of sudden it starts givin this problem.
    However When i open my .xls file in notepad i see data there. The problem is because of XML declaration (<?xml version="1.0" encoding="UTF-8"?> which parsed generate. If i remove this it works fine.
    Out put in file looks like this
    <?xml version="1.0" encoding="UTF-8"?>
    <table border=1 width="100%">
    <tr>
    <TH>Name</TH>
    <TH>Last Name</TH>
    <TH>state</TH>
    <TH>Country</TH>
    <TH>Currency</TH>
    </tr>
    <tr>
    <TD class="odd">John</TD>
    <TD class="odd">Hayden</TD>
    <TD class="odd">IL</TD>
    <TD class="odd">USA</TD>
    <TD class="odd">USD</TD>
    </tr>
    <tr>
    <tr>
    <TD class="odd">Ricky</TD>
    <TD class="odd">Ponting</TD>
    <TD class="odd">IL</TD>
    <TD class="odd">USA</TD>
    <TD class="odd">EUR</TD>
    </tr>
    </tr>
    </table>
    Jsp Code
    String rptHTML = (String)session.getAttribute("ReportStrHTML");
         System.out.println(rptHTML);
         response.setHeader("Content-Disposition","attachment;filename=Test.xls");
         response.setContentType("application/vnd.ms-excel");
    Thanks

    In Excel, Tools > Macro > security > medicum and Trusted tab check To access VB.

  • Problem displaying date

    Hi,
    I am trying to display date, the source code is:
    code]import java.lang.*;
    import java.text.*;
    import java.util.*;
    class Date {
    public static void main(String args[]) {
    Date date = new Date();
    System.out.println("the date is:" + date.toString());
    The output is: the date is:Date@187c6c7
    I'm using Sun Java Studio Enterprise 8.1
    Any guess? where i'm going wrong..

    Hi,
    I am trying to display date, the source code is:
    e]import java.lang.*;
    import java.text.*;
    mport java.util.*;
    class Date {
    public static void main(String args[]) {
    Date date = new Date();
    ystem.out.println("the date is:" + date.toString());
    ode]
    The output is: the date is:Date@187c6c7
    I'm using Sun Java Studio Enterprise 8.1
    Any guess? where i'm going wrong..You ought not create a class with the same name as a class in the standard library (Date), and you need to provide a toString method that outputs what you want to output.
    Good Luck
    Lee

  • Problem in Data transfer from view to Model

    Hi
    I am displaying MARC data in  BSP by taking Matnr as input on view.I am fetching the data in MODEL.
    But, when I enter the value for MATNR in view , it is not getting transferd to MODEL. So, data is not coming as MATNR value is empty in model.
    But, I hav done the DAta binding and I hav set the attributes in Controler by using SET_ATTRIBUTES method.
    So,can you please tell me , what might be the  reason for this.
    CODE :
    In View :
    <htmlb:inputField id       = "v_matnr"
                            value    = "//material/v_matnr" />
    In cotroler(do_request) :
    view->set_attribute( name = 'material' value = me->material ).
    Note : material is model instance here.
    In model :
    select  matnr ersda mtart mbrsh matkl meins
        from  mara
       into   corresponding fields of table it_matgendata
       where  matnr = v_matnr.
    Regards
    Sandeep REddy

    There are two things to consider.
    1.
    First you need to read the value from Formfields, then only you can able to send the value. then move the v_matnr value to model material->v_matnr.
    read the form fields with the id v_matnr and get the value, and move it to model attribute.
    2. Make the application Statefull.
    Check it once and getback.

  • Problem displaying data and Smart data debugging pl/sql

    I'm using JDev 9.0.5.1 build 1065, when i debug a PL/SQL function from the connections navigator, it allows me to stop at a breakpoint, but it doesn't display anything in the data or smart data panes. Do i need to change a config setting somewhere ? The PL/SQL is in an Oracle 8i database, does it need to be 10g for this functionality to work ?
    Thanks
    Alistair

    Are you trying to debug ASP.NET or a windows app or direct debugging?
    If a windows app or direct debugging, follow these steps:
    http://cshay.blogspot.com/2006/07/plsql-debugger-in-visual-studio.html
    If ASP.NET, follow part of the steps above to configure, but then use these steps for External App debugging:
    Debugging PL/SQL from .Net 2003

  • BI accelerator: problem displaying Data Load Status

    I have installed BI accelarator following the note : 934848.
    The problem is when I try to monitor Data Load Status , I've this error on the portal : "Error reading the data of InfoProvider 0TCT_VC12, There is still no data source assigned to VirtualProvider 0TCT_VC12" but  I've activated direct access for this virtual info prorvide  to the correct source system as it is mentionned(step 5) and it is assigned to a data source (0TCT_DS12).
    any help would be grateful,rewarded
    thomas
    Message was edited by:
            Thomas Bailleul

    You're absolutely right Rajani , it's about BI Cokpit Administration.
    In fact, I really activate direct access, I  added the right source system in the  Source System for InfoSource 3x window.
    but it 's still not working. Thanks for your Hekp.

  • Problem displaying fonts in Messages view box

    Hi
    I am running JDeveloper9i and when i compile code everything that comes in the messages view box comes corrupted, can u please help.
    p.s It does work changing fonts in Tools->Preferences :(

    Any updates?
    Regards
    Imran

  • Error in displaying date time value in Thai Windows OS browser.

    Hi,
    I have a problem displaying date time in the browser which is installed with Thai Windows OS. The time portion (the subset of datetime) does seemed to show correctly. Initially i am suspecting the virtual machine problem but i tried on bith java and microsoft vm, the result seemed the same. I tried to look in the source of the page and the character is just the same as the incorrect character displayed in the browser. The html source is -->
    <tr class="TableData">
         <td width="76">14/01/04 12:17:06 H-@5H"</td>
    the time is displaying incorrectly. I am not sure its due to any setting in the BEA weblogic server. FYI i am now using WLS6.1(SP2) version. Hope and appreaciate a prompt reply. Thanks a zillion in advance.
    Regards,
    Sunny

    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=noclassdeffounderrorIWDAbstractTableColumn&adv=false&sortby=cm_rnd_rankvalue
    java.lang.NoClassDefFoundError
    Error while binding node attribute to a  UI  element (table)
    Problem with NWDS 7
    class def error?

  • SQL Developer tool sometimes does not display data with date type

    run the following query using the sql developer tool -
    select effective_date from table1 where id = 123;
    (the effective_date is stored in the database as date.)
    one record is returned with no date in the filed.
    However, if I change the query to
    select to_char(effective_date, 'mm/dd/yyyy') from table1 where id = 123;
    one record is returned with effective date.
    Why?
    Thanks for your help.

    First off, there is a dedicated SQL Developer forum where lots of the developers hang out. Those folks are way more knowledgable that we are about the tool.
    That said, I have no problem displaying dates. Do you just have a problem with this particular query/ field/ table? Or does it affect all dates? What version of SQL Developer are you using? 1.1 is out now.
    Justin

  • ActiveX print window is not opening from crystal viewer

    Hi ,
    I'm facing problem on Printing from Crystal viewer .
    I have launched the crystal report from an ASPX application.  For the print icon , I have added code for opening the ActiveX print window instead of usual crystal print window.
    Issue is  , print window is not opening in the client machines whereas window is opening properly in the server machine where the crystal report is installed.
    We have implemented RDC type of reporting and not the RAS .
    Product Name  : Crystal Report X1 Release 2 
    Version : 11.5.3700.0
    Evaluation Copy
    Thanks !
    Regards
    Varun

    See if the blog [Problems installing Crystal Reports 2008 Print Control(ActiveX)|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417500)ID1617741650DB11112347389125823727End?blog=/pub/wlg/14395] helps.
    The blog was written for CR 2008, but all applies to CR XI r2 with the following differences;
    crystalreportviewers12 = crystalreportviewers115
    "Crystal Reports 2008 .NT SDK Developer Guide" = [XIR2 SDK Documentation|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm]
    Ludek
    Edited by: Ludek Uher on Oct 22, 2009 6:50 AM

  • Maintenance view problem "No data maintenance Authorization; Display only"

    Maintenance view problem
    <b>Question 1>>>></b>
    > I have created a table with Display/maintenance allowed and technical setting Data class - APPL0 (master data, transparent tables).
    >> Then I have created a maintenance view thought utilities->table maintenance generator where i have specified the Authorization group as &NC& (w/o auth. group)
    ->and also created a function group and specified in the maintenance screen-> I have selected maintenance type as one step-> i have given the overview screen number->and in Recording routine i have selected - no, or user ,recording routine.
    >>> Now when i go to transaction SM30  and put the table name and press on maintain button I get a information box saying "<b>No data maintenance Authorization; Display only"....</b> and it only displays the data.
    my problem is I want to enter data through maintenance view (SM30).
    <b>2nd Question >>>></b> once i create a function group for maintenance view how can i assign a transaction for this. <i>(as if i do it as we do for a module pool program it gives me error)</i>Thank you.
    kailash

    SE93.  Enter a transaction name.  Create.  In the pop up enter a title and select 'Transaction with parameters'.
    Next screen fill the following;
    Transaction 'SM30'
    Check 'Skip first screen'
    In the table control at the bottom of the screen
    Name of screen field 'VIEWNAME'
    Value <your table name>
    Name of screen field 'SHOW'
    Value 'X'
    Save.
    Job done.

  • Objects not visible in Map Viewer Display Data with Mouse Moveover

    Hi All,
    On version 11.1.1.5.2 OBIEE with Map Viewer a customer has the following problem. Data objects are not displayed as expected on the map when the visibility check box is disabled on a dashboard. However the data about the object is incorrectly displayed on the map when the mouse is placed over the location of the hidden object.
    The customer's screen shots show a map with a panel which has a list of assets with a check box controlling if the asset is displayed. When the check box is off then the asset image is correctly not displayed but when the mouse is placed over the hidden asset’s location then incorrectly a pop window shows the hidden asset's Tooltip data.
    I was unable to reproduce this in-house with an OBIEE dashboard connected to Google Maps.
    In the MapViewer User Guide there is a reference to a MapViewer JavaBean method “setSVGShowInfo” which appears to be related to this:
    http://docs.oracle.com/cd/E14571_01/web.1111/e10145/vis_beanapi.htm#i1023460
    What approach should be taken to troubleshoot the problem?
    Aidan
    Edited by: user817045 on 21-Feb-2013 02:08
    Edited by: user817045 on 21-Feb-2013 02:32

    This is likely a bug.
    Is there an SR filed on this?
    Anyway, the Mapviewer javascript API is being used in OBIEE (not the java bean one).
    Is it a standard obiee map view which has this issue?
    Try the OBIEE Sample App (available on OTN)
    Try Dashboard page 3.3. SF Metrics. There are two layers that can be shown on the map (Revenue and Billed Quantity, and Establishment Revenue).
    Enable both and on hover the Rev & Billed qty info is shown. Uncheck Rev & Billed Qty and only the info for Establishment Revenue is shown on hover or when clicked on.

Maybe you are looking for

  • Can i pay iCloud storage by voucher

    I have a USA iTunes account but do not have a USA CC. Can i use apple vouchers to pay for iCloud storage?

  • My itouch has froze with a white screen

    my itouch has froze with a white screen

  • Localhost polluting ?WSDL for simple service

    Hello, I have created a simple service based on the Buelow tutorial. I run JDeveloper on Windows, the server on Linux. However, the generated WSDL has "localhost" as the location of the "<abstractWSDL>". I'm not even sure why we need that abstractWSD

  • Struts combo box

    I have a combo box defined in JSP. So when I submit the page with multiple values selected in thsi combo box, I get "argument type mismatch exception" for the setter method defined in actionForm for this combo box. This method has a return type "Coll

  • Spotlight after TM restore (snow leopard)

    Hi guys, I restored my Mac with TM. Im booting Snow Leopard. After the restoration spotlight isnt working. Someone can help? Thnx