The question of integration OBIEE & MapViewer

Hi all

A few days I tried to integrate OBIEE with mapviewer by some different method. After a lot of configuration process, like you created new schema on db, imported data space sample inside and has defined a new source of data, in mapviewer administration console, I have a main issue at this time.

I just tested whether mapviewer was executed, and he was seen ok in the url, http://host_name:9704 / mapviewer

So, how can I embed this map on page obiee analytical?

When I tried to import map layers/images in OBIEE 11 g Analytics / administration/management map data page, I get an error like this "cannot communicate with Oracle FMW Server mapviewer.

I hope someone could help me.

Thank you

Hello

1. with IE, it sometimes gives this kind of question, please use latest Mozilla.

Try first with step 1 only.

2. If in Mozilla, it also gives the same message - you need some instanceconfig.xml entries.

Under item Marketing add this

/MapViewer

600

Please go back to that one has solved your problem and your points please.

Kind regards

Krish

Tags: Fusion Middleware

Similar Questions

  • ADF / integration OBIEE: unable to connect to the presentation BI server

    Hello
    Using JDeveloper 11.1.1.6, I created an ADF application to test its integration with OBIEE 11.1.1.6. The request contains the jsf page that holds the OBIEE dashboard. Next, OBIEE, I created impersonate user. When I run this application on Weblogic Server built-in, it shows dashboard OBIEE perfectly. But when I deploy the application on weblogic OBIEE server, deployed with success but shows following error when we try to access the application via a URL.

    Unable to connect to the presentation BI server. Please ensure that it is running, configured correctly, and that the details of the connection in this application is accurate. Please check the log file for more details.

    (Http) connection works very well when check it out us inside the app. Can you please help how to solve this problem?

    Hello
    Bad news.

    How did you create the connection? In the resource Palette?

    I noticed that I have to drag the connection in the connections of Application resources (if it is not present), I have to uncheck in the properties/deployment of applications 'Powers' and cancel the deployment of the application and redeploy with JDEV (or em)

    This connection is really not clear in my mind

  • The question of the integration of Services!

    Guys,

    I have a few questions about Integration Services x 9.
    Can we keep the catalogue of metadata in a SQL Server and extract the data to another SQL Server. Another is: what is the best way to migrate catalog metadata for EIS 7 x to 9 x.

    Any King info is appreciated.

    See you soon
    HYPUser

    As long as the ODBC connections to work, it should not be a problem

  • Oracle - the question of the integration of MS Access

    Guys,

    Yesterday I asked the question of the integration of Oracle and Access, and I got the answer through oracle heterogeneous services, you can connect to ms access to insert/update of the data.

    I had another thought on direct vs. indirect integration method.

    1. with the help of XML to send and receive data between oracle and MS. Access.
    Have a specified location where oracle will generate xml file and within the specified time interval ms access checks the file and the process
    This file. Even reverse access can generate an XML and oracle can process this file with working hours.

    2. using heterogeneous services - seems to be a free service as I could find MS Access driver online

    If immediate information is required in the two system then I have no choice but to use heterogeneous services? * *

    If information can wait for labor scheduling, I intend to propose the approach 1 (generate/process xml file). If both systems are not really dependent on each other

    Everything I need to examine or missing / or one is better than another?

    Another approach would be a JDBC connection: load in the BDD Oracle JDBC driver, then opening the link to MS Access using JDBC. The disadvantage of this solution is that you all on your own code.

    While a 'real-time' ready-to-use application, DG4ODBC (HSODBC product tracking) is the right choice.

    As MS Access can also get data via ODBC, why not link tables Oracle in MS Access and loading of XML content in MS Accesss using a scheduled task, you can trigger then just selects and inserts. For this approach, you just need to have an ODBC Oracle driver installed where your MDB file.

  • Issue of OBIEE Mapviewer integration

    Hi guys!

    I joined MapViewer map with OBI EE. Everything works fine, but there is also an annoying thing. Card only works if the report has two columns... If I add a column more it suddenly crashes... I don't know much about javascript, but there are 2 columns in the file jsp hard...

    Here's the jsp file
    <%@ page language="java" session="true" isThreadSafe="true" contentType="text/html; charset=UTF-8" %>
    
    <%@ page import="javax.xml.parsers.*"%>
    <%@ page import="java.net.*"%>
    <%@ page import="java.io.*"%>
    <%@ page import="org.w3c.dom.*"%>
    
    <%
    //set the character encoding to UTF-8 prior to accessing
    //data in the request
    request.setCharacterEncoding("UTF-8");
    %>
    
    <%
        // RETRIEVE THE QUERY STRING PARAMETERS
    
        String userName = request.getParameter("uid");
        String userPassword = request.getParameter("password");
        String thesid = request.getParameter("sid");
        String nq_id = request.getParameter("nqid");
    
        if (userName == null) {
             userName = "Administrator";
        }
        if (userPassword == null) {
             userPassword = "Administrator";
        }
    
           Document domDoc = null;
           
           String fieldName = null;     
    
           String urlString = "http://" + request.getRemoteHost() + ":9704/analytics/saw.dll?Go&searchid=" + thesid + "&format=xml&NQId=" + nq_id;
           
           if (thesid != null) {
    
              DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
              DocumentBuilder db = dbf.newDocumentBuilder();
              
              URL url = new URL(urlString);
           
              URLConnection URLconnection = url.openConnection();
              HttpURLConnection httpConnection = (HttpURLConnection)URLconnection;
               
              int responseCode = httpConnection.getResponseCode();
    
              if ( responseCode == HttpURLConnection.HTTP_OK) {
                    InputStream in = httpConnection.getInputStream();
                    System.out.println("thesid= " + thesid);
                    System.out.println("nq_id=" + nq_id);
                    System.out.println("server host=" + request.getRemoteHost());
                    System.out.println("server addr=" + request.getRemoteAddr());
              domDoc = db.parse(in);
                 } else {
                  System.out.println( "HTTP connection response != HTTP_OK" );
                 }
    
            out.println("<nsdp_xml>");
            out.println("<table>");
    
            //Iterate through metadata object and create the ndsp_xml header
            NodeList rowDef = domDoc.getElementsByTagName("element");
            
            out.println("<tr>");
            out.println("<th>Column 1</th><th>Column 2</th>");
            out.println("</tr>");
            
            //Iterate through rows & items and create the ndsp_xml body
            NodeList rows = domDoc.getElementsByTagName("R");
                    
              if (rows != null) {
                   for (int i = 0; i < rows.getLength(); i++) {
                        out.println("<tr>");
                        
                        Node row = rows.item(i);
                        if (row == null || row.getNodeType() == Node.TEXT_NODE) {
                             continue;
                        }
                        NodeList items = row.getChildNodes();
                        if (items == null) {
                             continue;
                        }
                        
                        for (int y = 0; y < 5; y++) {
                             Node item = items.item(y);
                             if (item == null || item.getChildNodes() == null)
                                  continue;
                             if (item.getChildNodes() == null
                                       || item.getChildNodes().item(0) == null
                                       || item.getNodeType() == Node.TEXT_NODE)
                                  continue;
                                  
                             out.println("<td>" + item.getChildNodes().item(0).getNodeValue() + "</td>");
    
                        }
                        out.println("</tr>");
                   }
              } else {
                   out.println("No rows.");
              }
            
         out.println("</table>");
         out.println("</nsdp_xml>");
    
         }
    %>
    This jsp file created from this:
    <RS>
    −
    <xsd:schema targetNamespace="urn:schemas-microsoft-com:xml-analysis:rowset">
    −
    <xsd:complexType name="R">
    −
    <xsd:sequence>
    <xsd:element name="C0" type="xsd:string" minOccurs="1" maxOccurs="1" saw-sql:type="varchar" saw-sql:displayFormula=""Customers"."Cust State Province"" saw-sql:aggregationRule="none" saw-sql:aggregationType="nonAgg" saw-sql:tableHeading="Customers" saw-sql:columnHeading="Cust State Province"/>
    <xsd:element name="C1" type="xsd:double" minOccurs="0" maxOccurs="1" saw-sql:type="double" saw-sql:displayFormula=""Sales Facts"."Unit Cost" / 10" saw-sql:aggregationRule="complex" saw-sql:aggregationType="agg" saw-sql:tableHeading="Sales Facts" saw-sql:columnHeading="Unit Cost"/>
    <xsd:element name="C2" type="xsd:double" minOccurs="0" maxOccurs="1" saw-sql:type="double" saw-sql:displayFormula=""Sales Facts"."Amount Sold"" saw-sql:aggregationRule="sum" saw-sql:aggregationType="agg" saw-sql:tableHeading="Sales Facts" saw-sql:columnHeading="Amount Sold"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    −
    <R>
    <C0>Gdansk</C0>
    <C1>54.976</C1>
    <C2>638.81</C2>
    </R>
    −
    <R>
    <C0>Katowice</C0>
    <C1>151.19</C1>
    <C2>1801.02</C2>
    </R>
    −
    <R>
    <C0>Szczecin</C0>
    <C1>124.251</C1>
    <C2>1451.73</C2>
    </R>
    −
    <R>
    <C0>Wroclaw</C0>
    <C1>327.581</C1>
    <C2>4251.68</C2>
    </R>
    </RS>
    who:

    Column 1 column 2
    Gdansk 54.976 638.81
    Katowice 151,19 1801.02
    124.251 Szczecin 1451.73
    Wroclaw 327.581 4251.68

    I have seen that in the tutorials that people have more than two columns... but in the annex, there are exactly the same jsp script? So hot I wonder it is possible?

    Help... :))

    With respect,

    PsmakR

    Simply because in a dashboard, you can have several answers.

    In response to the integration of mapviewer, you need two columns
    and you can create another answer (three columns you want) that you place next to the map.

    In the dashboard display only static text of the card and to cache others views.

    See you soon
    Nico

  • A few questions about integration between POET and EBS

    Hi you
    I am a new bie BIEE. In those days, have a look at the POET architecture and BIEE components. In the next project, there is some work on the development of POET based on request of the EBS. I have a few questions about integration:

    (1) generally, the POET application and database server is decentralized with application and database EBS? Both BIEE 10g and 11g version can be integrated with EBS R12?

    (2) in the POET administration tool, the first step is to create arrays of physics. If the source application is EBS, is it still necessary to create the physical tables?

    (3) if the physical creation of tables is needed, how to transfer data from the source of BSE BIEE physical tables tables? What ETL tool is preferred for most of developers? generator for warehouse or Oracle data integration?

    (4) during the data transfer phase, there are many many large data to transfer, how to keep the entire? for example, it must transfer 1 million lines of source to physical tables BIEE database, when 50% is completed, users try to open the POET report, they can see the new data of 50% on the reports? is there some transaction in phase control ETL?

    could someone give some pointers for me? I am very appreciated if you can also provide any other information.

    Thanks in advance.

    (1) generally, the POET application and database server is decentralized with application and database EBS? Both BIEE 10g and 11g version can be integrated with EBS R12?

    You shud look at OBI request here that uses OBIEE as a tool for reporting with pre-built modules. 10g & 11g comes with different versions of the applications of BI that supports sources such as Siebel CRM, EBS, Peoplesoft, JD Edwards, etc...

    (2) in the POET administration tool, the first step is to create arrays of physics. If the source application is EBS, is it still necessary to create the physical tables?

    His independent of any source. It comes to OBIEE modeling to create the RPD with all the layers. If you build from scratch, then you will need to create all layers else if BI Apps is used so you can get pre-built RPD and other pre-designed components.

    (3) if the physical creation of tables is needed, how to transfer data from the source of BSE BIEE physical tables tables? What ETL tool is preferred for most of developers? generator for warehouse or Oracle data integration?

    BI apps comes with ETL pre-built mapping to use with the tools majorly with Informatica. Only applications BI 7.9.5.2 comes with ODI, but oracle has the intention of having only ODI for any other versions.

    (4) during the data transfer phase, there are many many large data to transfer, how to keep the entire? for example, it must transfer 1 million lines of source to physical tables BIEE database, when 50% is completed, users try to open the POET report, they can see the new data of 50% on the reports? is there some transaction in phase control ETL?

    User will see still old data because its good enable Cache and serving it after each load.

    See http://www.oracle.com/us/solutions/ent-performance-bi/bi-applications-066544.html...
    and a lot more docs on google

    Hope this helps

  • Why do help answers address the question

    My cursor by default is the upper left corner and I want to its default value of the upper right
    When I ask the question how to change that, the answers have NOTHING to do with the sliders and not come close to answering the question
    How can I change the default cursor position?

    Hi ilikefree09, when you click on a link in a web page, when the new page opens, the cursor normally is not placed in a particular place in the page. Instead, the 'focus' is on the body of the entire page. So, if you press the arrow key down, the page should scroll; If you press Ctrl + a, the content of the body must be selected.

    Sites can change this basic behavior by using a script to set the focus to a particular item. For example, Google moves the focus to the search box.

    I don't know of any integrated setting to change this.

  • Qosmio F60 - L10 - how to set up the tv with integrated antenna tuner?

    Good evening
    I have a toshiba qosmio f60, I read your answer about tv tuner.
    My question is: how to set up the tv with integrated antenna tuner? Thank you

    The tuner is already configured!
    You must use Windows Media Center.
    Here, you have to choose the tuner and need to look for available DVB - T channels.

    Notes; Signals DVB - T depends on the country and region.
    In my area I needed an external antenna because the signal is too weak.

  • Is it possible to export the Windows native/integrated printer driver 7 32 bit?

    Is it possible to export the printer native/integrated Windows 7 32 driver - bit as package that could be used to install it in Windows 2008 server?

    Hi PML.

    Thank you for your response.

    I found

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/1695e4d7-2566-40F7-82c5-089a4026a8ac/need-to-export-Windows-7-x64-builtin-printer-driver-to-a-x86-print-server

    half an hour later, after my question... it's maybe just information that I searched.

    Also

    http://willpeters.com/2011/01/manually-export-printer-drivers-to-install-on-a-Terminal-Server/

    contains useful information (in fact the same as in the previous article).

    Others could not help me...

    Good day

    Jozo

  • Address the content slide; back to the question; then continue on--using Captivate 8

    Using Captivate 8, I'm trying to fix a question slide to a slide content, then back to the issue of KC to check for retry and then continue from there.  On my trial, it works very well.  However, the problems began on the second instance and continue on each instance, subsequently. Settings on the issue of KC slides are all the same except that drag each jumps for sanitation.  I don't understand why it works the first time, but does not work after that. On the second instance, the issue returns to the content slide, but then passes any subsequent slide.   Someone at - he had a similar experience?  Know of a workaround or solution could I hurt?

    FYI, I have he delivers E-Learning discovered Adobe Captivate 8 Elkins, Pinder and Slade uses as a reference, and it describes clearly how to page 183, "sanitation back to content slides - if student gets a question wrong, you can branch to one or several slides, where the content has been taught and then return them to the quiz to try the question again.»  To add connections to sanitation: 1) in the last field of attempt on the issue, put a jump from slide to slide first with content.  (2) on the last slide with the content, add a return to the Quiz competition on the next slide button.  On slide content, the button next, with the return to competition of Quiz performs an action continues in normal circumstances, but returns for the quiz students if it is from whence they came. »

    Please see the map content below:

    Content
    Mapping:

    Slide 1-content

    Slide 2 - content

    Slide 3 - content

    Slide 4 - content

    Slide 5 - content

    Slide 6 - content

    Slide 7 - content

    Slide 8-content

    Slide 9 - Question to check knowledge - converts back to slide 5 If the user forgets two attempts to answer; slide 5 returns the user to slide 9 for one last try in question, then move on to slide 10 (works perfectly)

    Slide 11 - content (Here's the first problem; on click, slide 11 jumps to the Question to check knowledge on slide 13, jumping slide 12)

    Slide 12 - content

    Slide 13 - Question to check knowledge that converts the back to slide 11 if the user forgets about 2 attempts to answer. slide 11 should return user here for one last try in question, then switch to Slide 14

    Slide14 - content

    Slide 15 - content (Here's the second problem; on click, slide 15 jumps to the Question to check knowledge on slide 19, jumping sliding 16, 17 and 18)

    Slide 16 - content

    Slide 17 - content

    Slide 18 - content

    Erik, sanitation is integrated since version 6. The next button can have a double feature: coming from a normal slide acts as then, when they come from a question slide she come back on this question with the mentioned order slide.  It's been a while since I tested this out, but it worked. I don't know what's not in your project.

  • Captivate 7 - hide / disable the button 'next' until the question is answered

    We try to make mandatory to answer a question before moving on to the next slide.

    Ideally, we want to hide / remove the following navigation button until the answer to the question.

    Any help would be appreciated

    P.S. I have check the Adobe forums and he suggested to put the next button under the clear key - that works... but not if you go to the slide - you can then go forward

    Thank you very much

    Al

    You found my suggestion to the next button, which is designed as a "Skip" button during Quiz, under the Clear button, which also has the advantage that it can be a confusion between the transmission and the next button indeed and it was certainly also mentioned that it is supposed to not allow movement back and hide the playback bar in this case.

    http://blog.lilybiri.com/question-question-slides-in-Captivate

    The buttons on question slides cannot be controlled as the other buttons. They are integrated into the question slide. If you want total control, you must create question slides personalized (lots of work).

    Another approach with the default question slides is to check the required "Answer All" option in Quiz preferences, settings. Or you can use submit all, allowing movement to the rear and a warning appears if all the questions are answered, but you alow to present even in this case.

    And you could try, if you feel uncomfortable with stocks advanced, to create a conditional action on enter for each slide, which displays a form button that will be back next movement button...

    Lilybiri

  • How to use the wait flag integrated at the level of the element during the AJAX call

    Hello
    I would like to use the integrated waiting indicator that appears next to the selection in cascade and textfields autocomplete lists in my own AJAX call. But I don't know how to attach to the question that I'm updating.
    Can someone help me in the right direction?

    In my case, I'm running the database to update the value of an elements to the screen. My Javascript looks like this
    function MY_FUNCTION
     (p_get_item1
     ,p_get_item2
     ,p_get_item3)
    {
      //create the AJAX call refering to the APEX application process
      var ajaxRequest = new htmldb_Get(null, $v('pFlowId'), 'APPLICATION_PROCESS=AP_NAME', $v('pFlowStepId'));    
      
      //put values on screen into APEX PL/SQL variables
      ajaxRequest.addParam('x01',$v(p_get_item1));
      ajaxRequest.addParam('x02',$v(p_get_item2));    
      ajaxRequest.addParam('x03',$v(p_get_item3));    
    
      //do the actual AJAX call 
      var ajaxResponse = ajaxRequest.get();   
      //and set the items on screen based on the JSON text returning  
      json_SetItems(ajaxResponse);  
    }
    Thanks in advance

    You must use jquery instead of htmldb_get to make real asynchronous, and then add the rotation like this icon

    I used the jquery post method to call the process of request here

    function MY_FUNCTION
    (p_get_item1, p_get_item2, p_get_item3) {
         //show indicator
         $('#YOUR_ITEM_NAME').after('');
    
         $.post('wwv_flow.show', {
              "p_request" : 'APPLICATION_PROCESS=AP_NAME',
              "p_flow_id" : $v('pFlowId'),
              "p_flow_step_id" : $v('pFlowStepId'),
              "p_instance" : $v('pInstance'),
              "x01" : $v(p_get_item1),
              "x02" : $v(p_get_item2),
              "x03" : $v(p_get_item3)
         },
              function (data) {
              //and set the items on screen based on the JSON text returning
              json_SetItems(ajaxResponse);
              //remove indicator
              $('#YOUR_ITEM_NAME').next(".loading-indicator").remove();
         });
    }
     
    
  • Licenses implicitly when the recipients don't OBIEE named users?

    Hi people

    I wonder if anyone can clarify if send reports of OBIEE 11 g through Agents of which the recipient is not a user named system is a violation of the license agreement? Or in other words... we are allowed to send emails to someone through a proxy and do not have to worry about whether they are an authorized user of the system?

    I'll try a clarify the question with a representative of Oracle, but maybe someone here has already encountered this?

    See you soon,.
    Paul

    Hi Paul,.

    I had a meeting the week last with people talking about Oracle licenses and it was on the table. When sending alerts, you can include anyone on the mailing list because they have access to the information of the company and is not the software itself. Now if you want users to be able to use OBIEE as a tool, they must be approved, or use a valid license. But for the purposes of data analysis, you're good.

    I hope this helps.

    J. -.

  • If you ask the question and then choose a solution, the thread will be closed or still can you ask more details?

    If you ask the question and then choose a solution, the thread will be closed or still can you ask more details?
    (sometimes, someone answers my question, and I want to mark it as the solution and am not yet quite ready for the thread be closed...)

    If you still experience this issue, you can return to this thread.
    But, you must clear the flag solved .

  • How can I FIND the question I asked before to see if there is an answer

    Where is that I should go to locate the question I posed and answers available, as appropriate.

    I've seen this question asked in a generally similar manner and the author of the question was directed to go to the location of their question to show all responses that might have been given - but there's nothing telling us how they came to this place. How do you get there?

    Suggestion: A user having to log-in to ask a question, then once a user logs in, it would be great if they could see a list of the questions they asked, and maybe a link that will lead to the location of this question and the answers that could have been provided by the community.

    A friend showed me how to locate my question (s). Thank you.

Maybe you are looking for