obiee

OBIEE exported csv and when importing to Access I get an error

不羁岁月 提交于 2019-12-14 03:25:06
问题 I have a report on OBIEE, the date field I made it Custom format to MM-DD-YYYY I have also try [FMT:dateShort] . Once I exported to .csv I am Linking the file with MS Access 2007 and the date field I get an error #NUM! why is that ? 回答1: Either one of these could be the problem/solution: The #Num! in Access is telling you the cell contains a mix of data; some digitit, some text, for example: 34G (or your '-') would throw a #Num! You need to go back to the Excel and change the format of any

RCU Installation issues

时间秒杀一切 提交于 2019-12-13 07:26:35
问题 I am trying to install Obiee11g on my windows machine. While running through various tutorials in the web, many of them have suggested to use RCU to create MDS and BIplatform. However when I downloaded RCU and extracted the same. While I am running the rcu.bat in the running directory, it is just opening my OBIEE_HOME folder. I am not able to see the RCU window. Please Help! Cheers, Dwarak 回答1: Create a folder named OBIEE in the drive where you are trying to install OBIEE !! 回答2: In the

OBIEE 12c : Overlapping labels in pie chart

回眸只為那壹抹淺笑 提交于 2019-12-13 03:24:32
问题 I've created 2 pie charts in an analysis and one of them seems to have its labels overlapping while the other has callouts and prevents any overlaps. I have created them in the exact same way and they both have the same properties. Another strange thing is, this doesn't occur all the time. sometimes when I open an analysis/dashboard, both the pie charts look fine and when I refresh the page or come back to it later, then one of the chart has overlapping labels. Can anyone help me fix this.

integration GOOGLE map with OBIEE 12 c

為{幸葍}努か 提交于 2019-12-12 06:54:09
问题 I am working in OBIEE 12C, I want to integrate google maps into OBIEE, I add it in mapViewer server and the map is displayed, but the problem is when I try to add it in BI analytics it displays the following error "MAPVIEWER-09001" Does anyone know this error? 回答1: That's one of the thing you get pre-configured exmaples for in the free ("free beer", gratis) SampleApp virtual machines: http://www.oracle.com/technetwork/middleware/bi-foundation/obiee-samples-167534.html You can just run it,

OBIEE 12c - cannot login to analytics

扶醉桌前 提交于 2019-12-12 05:10:26
问题 Able to access OBIEE Console and EM but unable to login to Analytics . I have already scratched my head over searching for solutions all over. Any suggestion would help here. [Update] - Not using DB Authentication or BISQLProvider. Tying to login with weblogic on a fresh installation of OBIEE Steps I have tried: Checked bi server and admin server - Both running Checked deployments - all running Checked JDBC connection (from EM-> Weblogic Domain -> JDBC Datasources) for biplatform_datasource,

How to Remove Null Values from prompts in OBIEE

荒凉一梦 提交于 2019-12-12 01:59:16
问题 How to remove invalid Null values that are not present in database but showing in prompts in OBIEE. For some of the columns Null Values is valid but for other it is not. So i want to display null value in prompt only if it is valid. 回答1: you will have to got to rpd and modify the column in physical layer; mark it Not Nullable (uncheck the Nullable check-box) 回答2: If you have a limited number of possible values, you could chose Specific column Values under Options in the edit prompt dialog box

Write Back Form in OBIEE

南楼画角 提交于 2019-12-12 01:49:28
问题 I created a write back form that incorporates an XML template. Can somebody please let me know what is wrong with my code? All the write back features have been enabled so I believe my syntax in the form is not valid. <?xml version="1.0" encoding="utf-8" ?> <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1"> <WebMessageTable lang="en-us" system="WriteBack" table="Messages"> <WebMessage name="wb_stg_de_accounts_receivable"> <XML> <writeBack connectionPool="LCS_CP_VAR"> <insert>

adding jasig CAS authentication for OBIEE (Oracle Business Inteligence)11g

雨燕双飞 提交于 2019-12-10 16:35:29
问题 I'm trying to add CAS as an authentication provider for OBIEE 11g. up until now I've added the cas-client-core-3.2.1.jar jar to $MW_HOME/wlserver_10.3/server/lib/consoleapp/webapp/WEB-INF/lib/ and configure $MW_HOME/wlserver_10.3/server/lib/consoleapp/webapp/WEB-INF/web.xml with the the flowing elements: <filter> <filter-name>CAS Authentication Filter</filter-name> <filter-class>org.jasig.cas.client.authentication.AuthenticationFilter</filter-class> <init-param> <param-name>casServerLoginUrl<

How to retrieve the key values of a nested data set in D3

和自甴很熟 提交于 2019-12-02 03:35:11
I am trying to add D3 visualizations to OBIEE and the first graph I need to accomplish is a multi-series line graph. The data is directly obtained from an OBIEE narrative view in this format: var data = [ ]; data.push({category:"Cat1",date:"20130101",suma:9.11}); data.push({category:"Cat2",date:"20130101",suma:2.66}); data.push({category:"Cat3",date:"20130101",suma:18.00}); data.push({category:"Cat4",date:"20130101",suma:32.49}); data.push({category:"Cat5",date:"20130101",suma:37.74}); There are 155 lines like those, for different dates ranging from 2013 to 2015. To separate them by categories