Oracle APEX Interactive Report filter - oracle

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.

Related

What determines default Interactive Report column display in Oracle APEX 5?

I have an Interactive Report page in Oracle APEX 5 that includes a SQL Query with ~15 columns or so.
When I first load the report, the columns are in a certain order, and columns are set to Do Not Display (as seen under Actions-> Select Columns).
All the columns have the property Type as Plain Text and none has a condition defined in the Page Designer, under {Page Name} -> Regions -> Content Body -> {Interactive Report} -> Columns.
My Interactive Report has a dynamic query under a APEX_COLLECTION and the end user doesn't have developer privilegies.
My question is, what determines which columns are set to Do Not Display and those set to Display in Report?
When you first create an Interactive Report, all the columns will be present in the Designer under the Columns list and in the order in which they appear in the SELECT statement. When you run the page, the IR will display all the columns.
If you edit the SQL behind that IR to add columns, any new columns will appear at the end of the Columns list. You will have to run the page, select Actions > Select Columns, and add them to the displayed list of columns to have them display. You'll probably want to then select Actions > Save Report as the primary default report to have them displayed by default for your users.

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.

How can you display option sets within a SSRS report?

I'm new to Stack overflow and new to SSRS report building. I'm currently building a report that needs to display each option from and option set in a different column I also need to pull date a last and next date range for each option it is page grouped by a company name and then further grouped by the employee's full name. any help would be very much appreciated.
Excel mock-up
Report table layout
I need it to out put like the Excel image ideally if possible, I've found the value id's but i'm stumped as to how if I can at all display them in the columns I've labelled.
It looks like you need to use a matrix control in your report. It will display your values in a pivot view like Excel.
Microsoft Documentation

Highlight row on Interactive report permanently APEX

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.

Hyperlink in Oracle Reports (.RDF) Content using Oracle Report Builder

I am not sure if this is the correct forum to ask this question,
I am currently creating an oracle report (.RDF) using Oracle Report Builder and my client wants me to place hyperlinks in the content instead of putting URL in the content.
This report is going to be generated as PDF.
My current sentence looks like
Click here (http://international.usp.ac.fj/?page_id=114) to see USP
member countries.
The URL automatically converts to hyperlink in the above sentence.
What my client wants:
Click here to see USP member countries.
I tried to look for an option where I can use HTML <a> tag.
I would like to know if there is a way to include hyperlinks in Oracle Reports.
Thanks
What you could in order to achieve this is, select property inspector of item you would like to have hyperlink and choose Hyperlink.
Also choose Yes for Contains HTML Tags.
Format for passing dynamic values in URL is
http://www.google.com?pid=&DEPTNO where DEPTNO is the value in report.
Update
This is what I did to achieve your expected output, you could modify based on your requirements
Created sql query for the source
select 'Click here' txt from dual
Select Property Inspector for the field
Added link in Hyperlink property and selected Yes in Contains
HTML Tags
To see the output, generate report as PDF or run report in web
browser.
Hope this helps.

Resources