obiee

table function as physical table in Oracle BI EE

ぐ巨炮叔叔 提交于 2021-01-28 05:12:30
问题 how do I import oracle table function as physical table in Oracle BI EE ? Let's say it is select * from scheme.table_function1(adate) What is correct syntaxis for setting it as BI physical table? How do I specify input parameter (adate)? 回答1: Create a new physical table manually in the repository, set the table type to "Select" and include your sql query. Are you using a repository variable as input parameter? Assuming ADATE is a repository string variable, the syntax would be select * from

Using table function in OBIEE RPD (physical layer) and pass parameter from dashboard prompt to it

我怕爱的太早我们不能终老 提交于 2020-06-17 02:52:07
问题 I have a almost serious problem. Of course there have been some questions in the same concept of mine, but without any result for me, so I am forced to ask again in different words. (like: Passing parameters to stored procedure in OBIEE 12c rpd from OBIEE 12c dashboard or table function as physical table in Oracle BI EE ) To provide a report, I am supposed to use table function(means select * from table(valueof(NQ_SESSION.var .....)) in OBIEE physical layer, then pass value through dashboard

Passing parameters to stored procedure in OBIEE 12c rpd from OBIEE 12c dashboard

大憨熊 提交于 2020-05-30 04:24:21
问题 I am trying to create an OBIEE report using stored procedures. I have created a function in SQL Developer which takes a parameter and returns refCursor as output. I, then, set the following query as default initialization string in physical layer of rpd: Select * from table(pipelined_emp(HR_DATA.GETCURSORS(parameter))) GETCURSORS(parameter) is my function. For now, in place of parameter , I am passing a constant value. While, I wish to pass a value from the OBIEE dashboard, similar to a

OBIEE Merge two queries (join)

泪湿孤枕 提交于 2020-01-16 19:30:09
问题 I need help. I am new to obiee (recently moved from business objects and re-creating all reports in obiee). Here is an example I need help with. I have created an analysis where I am listing all orders with their target delivery dates and number of products in each order. Order Id......Target Delivery Date...No of products Abc....1/1/2016.....5 I want to add to a column next to No of products called "No of prods delivered on time". I want to compare delivery date of each product within a

Can I create a new Group by column in OBIEE analytic Report?

半腔热情 提交于 2020-01-05 05:57:14
问题 Here I have a report: ProductID Price LCD1 12 LCD2 11 LCD3 10 TV 100 GAME 50 I hope to add a new column on this report in OBIEE and the result should be like below: ProductID Price New_ProductID_Grouped LCD1 12 LCD LCD2 11 LCD LCD3 10 LCD TV 100 TV GAME 50 GAME I hope to show LCD* products as LCD in the New_ProductID_Grouped field. Is it possible in OBIEE? I hope to create the column and then do hierarchy later. Thanks in advance. 回答1: Do you want to add this column only for that analysis? It

Can I create a new Group by column in OBIEE analytic Report?

孤街醉人 提交于 2020-01-05 05:57:12
问题 Here I have a report: ProductID Price LCD1 12 LCD2 11 LCD3 10 TV 100 GAME 50 I hope to add a new column on this report in OBIEE and the result should be like below: ProductID Price New_ProductID_Grouped LCD1 12 LCD LCD2 11 LCD LCD3 10 LCD TV 100 TV GAME 50 GAME I hope to show LCD* products as LCD in the New_ProductID_Grouped field. Is it possible in OBIEE? I hope to create the column and then do hierarchy later. Thanks in advance. 回答1: Do you want to add this column only for that analysis? It

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

核能气质少年 提交于 2019-12-31 03:23:06
问题 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

OBIEE 11G writeback Insert XML [duplicate]

安稳与你 提交于 2019-12-25 13:59:12
问题 This question already has an answer here : Write Back Form in OBIEE (1 answer) Closed 4 years ago . I am creating an XML for inserting values into a table using the writeback feature in OBIEE 11g. Here is my XML coding and I am getting an error message that says...."The system is unable to read the Write Back Template 'STG_DE_ACCOUNTS_RECEIVABLE_insert'. Please contact your system administrator." <?xml version="1.0" encoding="utf-8" ?> <WebMessageTables xmlns:sawm="com.siebel.analytics.web

How to achieve the below goal in obiee dashboard

拟墨画扇 提交于 2019-12-24 15:46:12
问题 I have a table like below: id name role1 role2 role3 ------------------------- 1 John y n y 2 Pete n y y 3 Den n y y 4 Mat y n n After I filter the table by using role1='Y' , I lost Pete and Den. How can I use the analysis to build a table like below: Count (Y) Role1 3 Role2 2 Role3 3 I tried everything. Please help Thanks 回答1: If your database is Oracle 11g or later you can use the unpivot clause SELECT usr_role, COUNT(*) role_count FROM (SELECT * FROM table_name UNPIVOT (hasRole FOR usr

OBIEE Moving Average (Mavg) for 4 weeks on Pivot Table

戏子无情 提交于 2019-12-24 13:28:45
问题 Is it possible to calculate the moving average for 4 weeks in a separate column within the pivot shown here. This is what I have: http://i58.tinypic.com/2rraweo.jpg Needs to have additional columns like: http://i59.tinypic.com/30ti8ok.jpg Side note: This is a union report and the "Total # of Submitted SRs" column is a sum measure from a fact table. 回答1: The answer was the function MAVG("column", 4) as long as the rows are defined by each week's count of "Total # of Submitted SRs". 来源: https:/