Display Maximum rows Selector not working in OBIEE - obiee

I have created a dashboard in OBIEE 11g, the result have some 10k results but in my dashboard for performance purpose I have selected default 25 rows per page but when I click on Next Rows or display maximuk rows both are not working but if I export the analysis am able to see all the data, could you help me what could be the issue?

You can change it in instanceconfig.xml file.
Path should be like :
ORACLE_INSTANCE\config\OracleBIPresentationServicesComponent\coreapplication_obipsn
NOTE: take your files backup before changing it .
You ll see tags there :
<MaxCells>10000</MaxCells>
<MaxPagesToRollOutInDelivery>1000</MaxPagesToRollOutInDelivery>
<MaxVisiblePages>1000</MaxVisiblePages>
<MaxVisibleRows>500</MaxVisibleRows>
<MaxVisibleSections>25</MaxVisibleSections>
<DefaultRowsDisplayed>30</DefaultRowsDisplayed>
<DefaultRowsDisplayedInDelivery>250</DefaultRowsDisplayedInDelivery>
<DefaultRowsDisplayedInDownload>65000</DefaultRowsDisplayedInDownload>
You can change it according to your needs. After saved , restart your weblogic and opmnctl services to make it available .

Related

It is possible to modify already existing report within Splunk dashboard?

I have already created report in Splunk: "splunk_report".
I want to use it in Splunk dashboard.
I have already add new panel -> new from report, but now it shows me a table (as it was defined in saved report)
I would like to get the total number of rows in this table. It is possible to make count of current report?
eg. "splunk_report" | stats count(system)
I do not want to copy whole search query, because when search in report change in the future, I have to change it in 2 places.
Unless you add the report as an inline search (or the report generates a lookup via outputlookup), what you're describing isn't possible.
If you add it as an inline search, you're back to your initial problem of needing to update it each inline search use as well as the original report
I often make use of scheduled reports to create lookup tables, though (for performance reasons). If you do that, then you can just reference the lookup table on your dashboard, and do with it whatever you want like any other lookup table:
| inputlookup mylookup.csv
| stats count
Or
| inputlookup mylookup.csv
| stats count by system
Etc
If you want to add summary data to the stats table on the dashboard, format the visualization and add totals:
I have found another solution: create saved search and refer to existing report:
<search id="save_search" ref="splunk_report">
And in second saved search add base search:
<search id="save_search2" base="save_search">
<query>| stats count(system)</query>

i've created a interactive report in oracle apex and i want to connect different links to different rows of the same column

this is my oracle apex report page i'm having a problem in. It has a interactive report which has 2 columns but both the rows of the same column refer to the same page in the application or for the matter to same url. i want to give different link to different rows of the same column.
You'll have to create links manually for each row. For example (taken from one of my IRs):
SELECT
'f?p=&APP_ID.:' || case when r.id_obr = 6 then 217
when r.id_obr = 7 then 221
end ||
':&APP_SESSION.::NO::' || case when r.id_obr = 6 then 'P217_ID_OBR6'
when r.id_obr = 7 then 'P221_ID_OBR7'
end ||
':' || r.id_obr67
as link, ...
Created in such a way, it'll take you wherever you want, passing any values you want to any page you want.
We dont know what version of apex you are on, but I will just give you the answer that works for me.
Create the links on each column and then create hidden page items on the page you are linking to, then using the links, have them set a value to those page items based on what was clicked.
Then you can just use those page items in your SQL query on the page you are linking to.
Or you could even use those items to create filters, but those a pain in the ass to set up, so I would suggest adding the items to your query for simplicity.

Obiee How to bring metrics in rows in report?

I want to build an OBIEE report related to support where I can bring the columns to rows and have its value beside it. Like,
Previous Year Current Year
No. of open cases 123 345
Attached is image for reference. Sample
Regards,
Harshita.
Use the pivot table view and pull the measures into the rows section. Done.

How to add a link two report in Oracle Apex

I have the following tables (and their structures).
airplane (airplane_id,type,total_seats,start A ,end A,start B,end B,startC,endC)
flight_schedule (flight_id,departure_dt,source,destination,arrival_dt)
pk10 1-12-15 pew kar 2-12-15
flight_seating_detail (flight_id,departure_dt,seat_no,class,fare,status)
I have created a form and reports on these two tables, and I want to add a link to flight_id, when click on that I want to start filling in flight_seating_detail table as (pk10, 1-12-15, 1, 'a', 20000, open) up to limited rows with a change in seat_no.
I have a code for this but how can I use this in apex column link. Please do help me!
are you running apex 5 or 4?
on apex 5, under the report that has been created find the column you wanted to link, there is a link property that lets you set the target page together with what value you want to pass in order for you to fetch the data you wanted to show

How do I delete or change the date on a project data measurement?

I ran an old copy of the code to have a baseline to compare to. Then accidentally ran the new code also set to back-dated. Can I change the date on the 2nd sample? can I delete the 2nd sample to do it over? I've gotten as far as using ij to connect to the derby db, but the output formatting looks bad, and I have no idea how to select top 10 * from table in derby to search for what table I should look at.
Log in
Click project that contains the snapshot you want to delete.
History Deletion link on the left
Click the button that corresponds with the correct snapshot row.

Resources