Search for existing answers to your product and support questions.
Familiarize yourself with our support site and learn best practices in working with our team.
Manage Service Requests, View and update service requests submitted by you and others in your organization.
Submit a new issue to our technical support team.
Oracle B2C Service insights from our Technical Support team subject matter experts
Browse resources to assist you in launching your implementation and ensure a successful go-live.
Access your OCI account.
Find product documentation for supported versions of B2C and documentation libraries for related service solutions.
You will have the tools to improve your customers' experience when you learn about all the things our products can do.
Find links for API documentation, Custom Processes, Customer Portal, and Agent Browser UI Extensibility Framework.
Explore how accelerators are designed to demonstrate how an integration scenario could be built using the public integration and extension capabilities of the Oracle B2C Service.
Prepare for a successful transition by reviewing upcoming release changes and enhancements.
Explore webinars, events, and feature kits to learn about B2C Service features, functionality, and best practices from the technical experts.
Oracle MyLearn offers a portfolio of free and paid subscription-based learning resources to help you gain valuable skills, accelerate cloud adoption, increase productivity, and transform your business.
Empower your team with the skills to implement, configure, manage, and use your applications with Customer Experience Cloud Training.
Our goal is to facilitate a friendly, supportive environment where members can easily collaborate with each other on solutions and best practices.
Ask and answer questions specific to B2C.
This is an exciting resource intended to help with your Oracle Service Cloud Analytics.
Share product improvement ideas and enhancement requests with Oracle Development, while collaborating with other Oracle customers and partners.
Update your phone number, email notification preferences, and severity 1 and severity 2 contact preferences.
View the contact managers within your organization.
Find contact information of the Technical Account Manager (TAM) and Client Success Manager (CSM) for your organization.
How can I customize the display of certain records in a report?
Environment:
Analytics, Data Exceptions Oracle B2C Service, all versions
Resolution:
Data exceptions are used to highlight data that meet specific criteria within the overall report. This allows you to customize how certain records display in the report so that some records display in a different color or font style.
Note: Data exceptions are not used to restrict data included in the report based on certain criteria you specify. That is, run-time and fixed filters are used to determine which data is included in your report. Exceptions are used to affect the display of certain data within your report.
In the report, the data that matches the data exception is flagged in some fashion, such as with an asterisk or with a different color or font. For example, if your report includes all unresolved incidents assigned to a group, you can use a data exception to have all incidents that are assigned to a specific staff member display in a different font, such as bold or italics.
You can define multiple data exceptions to use within a single report. This allows you to highlight multiple kinds of records for your audience.
For more information on creating and editing custom reports, refer to Answer ID 2509: Creating a Basic Custom Report.
Conditional formatting: You can also use conditional formatting to customize the display of cell values in a specific column of your report. For more information on conditional formatting, refer to Answer ID 2532: Conditional Formatting of a Column in a Report.
Each data exception consists of an Expression, Operator, and Value. These define the criteria for the record to match. If a record matches the criteria, that record displays based on how the Tabular and Graphical displays are set (including color and font). The Tabular style applies to records listed as output. The Graphical style applies to data points in a chart or graph.
You must create separate data exceptions for each different color or style. For example, if you want some records to display as red, some as blue, and some as green, you must create three data exceptions -- one for each color and criteria.
To define data exceptions within a report, use the steps below:
Run your report to verify that records meeting your exceptions display as you intend them to.
Basic data exceptions: The most basic data exception involves a single field in the definition. This allows you to define the criteria using an operator and value that relates directly to that field.
For example, if you want to define a data exception that displays all Updated incidents in blue, you can set the criteria to be:
Expression: incidents.status_id Operator: in list Value: Updated
Then, define the tabular display to use blue for the cell color or blue for the font color.
Exceptions based on multiple criteria: You may want to create a data exception based on the values of multiple fields. To do this, you can use an IF statement in the Expression of the exception. Then set the data exception similar to the following:
Expression: if(condition1 & condition2 & condition3,1,0) Operator: equals Value: 1
This means that if condition 1, 2, and 3 are all met, use a value of 1 for the expression, otherwise use 0. Then compare the expression value (1 or 0) to 1. If the expression is 1, then the data exception is met.
Note: To join multiple conditions in the first part of the IF statement, use an ampersand (&) for AND and use a pipe ( | ) for OR.
For example, to create a data exception for incidents that are in an updated status and have been updated more than an hour ago, the data exception is:
Expression: if(incidents.status_id=8 & date_diff(sysdate(),incidents.updated)>3600,1,0) Operator: equals Value: 1
In this case, there are two conditions:
Finally, if both conditions are met, than the entire expression has a value of 1 based on the IF clause. Otherwise, the expression has a value of 0. Only records that meet both conditions match the data exception.