Highlight row on Interactive report permanently APEX - oracle

I want to highlight specific rows on Interactive reports in APEX I go to format > Highlight then set the criteria needed for Highlighting desired rows. My problem is that this is a temporary solution. I need these configurations to be set as default so that any user try to use this report results appear highlighted as in criteria set before.any Help?

This is given in documentation read http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/ir_using.htm#CHDDDBCG
and accordingly save your highlighed report as a default report which is permenent one.

As a developer, you can save standard reports which will be shown to users by default.
To do this, first generate the report you want to show as default, with all your filtering and highlighting etc.
Then from the Actions menu, select Save Report. Then select As Default Report Settings from the Save select box.
This option is only available if you are logged into the builder at the same time.

Related

Edit button gone in Interactive Report Oracle APEX

so im trying to create an interactive report using apex. Usually, it will automatically create CRUD operation in the report. But somehow, the edit button (pencil and paper icon) in my interactive report is gone and i don't know how to fix nor adding them manually. Before it was gone, I changed my IR to Classical report since after i upload the table, APEX doesn't show all the columns (only 8 out of 9 column showed). And after that, I return the table into IR since all the column showed, but this is where the problem started.
Any thoughts?
go to report's Attributes properties tab (on the right hand side of the Page Designer screen)
set the Link property to "Link to Custom target"
target will be "page in this application"
choose it from list of values (or type it manually, if you know its number)
as you'll want to pass item(s) value(s) from the report to form page, set items
That's all.

Oracle APEX Interactive Report filter

I have an interactive report with a column that displays an icon using HTML. The icon is a check mark to indicate if the specific fund is a scholarship or not. When filtering on that column to show only rows with the check mark the filter status shows "Sholarship = HTML CODE" instead of "Scholarship = CHECKMARK"
Is there any way to fix this?
Try writing your own SQL query in the filter section of the Particular Column.

adding filters to an analysis in obiee

I am using Oracle Business Intelligence. For my analysis, I want to add a filter to it so that user can type in textfield and then the data related to input in textfield is displayed. Table prompts only suggest drop-down list, while column prompts do what I want but they appear before I see the analysis. I want to filter when I have the analysis on the screen.
While we did that kind of work in BI publisher using data models and reports, it was possible to run the report and give the parameters to get the desired data. How can I do this in the analysis? Is there something similar to parameters or list of values that are in BI Publisher?
Sure. That's normal prompt functionality. Just click on the column prompt options and choose to display the prompt as a free text field and allow user to enter their own values instead of choosing from the dropdown.

Birt report set table page break in script on basis of report format

I am using BIRT 4.5. and the eclipse report design perspective
I have some reports which have tables in them.The output format of the reports is XLSX, PDF, and HTML.
Currently the page break for the tables is set to 50 and repeat header is checked.
However for only the XLSX format I want to set page break 0 and repeat header to false.
How can I do this conditionally where and what condition do I exactly need to put.Please suggest.Thanks.
I have found the answer for this.
In the report design perspective in eclipse click on the table in the Layout view then click on the script tab and select the onPrepare event.
Put the following script here:
if(reportContext.getOutputFormat()=="xlsx")
{
reportContext.getDesignHandle().findElement("report_data_table").setIntProperty("pageBreakInterval",0);
reportContext.getDesignHandle().findElement("report_data_table").setIntProperty("repeatHeader",false);
}
Replace the "report_data_table" with your table name.Hope it helps if anybody else face this issue.

Oracle APEX Interactive Grid - Can I Create default Control Break view?

Does anyone know if it's possible for me to create a Control Break view as the default view when a user views the page?
What i mean is, instead of viewing all 1000 rows of a report, I would like it defaulted to Control Break display it by a certain column.
Perhaps see the image of the default view that i require.
http://prntscr.com/hgm6bw
Yes. Put your control break on and then click Actions > Save Report then save as default report settings > primary report.

Resources