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.
Environment:
Custom Reports, Phrase Searching
Issue:
I am trying to run a report to get a list of incidents by reference number that contain a specific error message. When I put the problem word in a criteria field, i.e. Summary LIKE "text error", I get no results, yet I know they are there.
Resolution:
If your report is not returning records that you expect to be in the report, review the report configuration. If you can find a record that you think should be in the report, open that record to verify that it meets the search criteria set in the report.
Specifically, review your report for the following conditions which may result in records not being included unexpectedly:
Logical Expression: Review the logical expression used to join multiple filters in your report. If the expression uses and AND join between filters and you expect it to use an OR join between filters, several records will be excluded from your report.
For more information on editing the logical expression, refer to Answer ID 1041: Using the Logical Expression feature in reports.
Join Type Between Tables: By default, tables are joined using an inner join between the tables. This means that the record must be referenced in both tables. For example, if a report uses tables where the incident and staff accounts tables are joined with an inner join, only incidents that are assigned to a staff member are included in the report. Incidents that are not assigned are not referenced in the staff accounts table so those records would be excluded from the report.
Review the data set for the report and determine which join type you need between the tables of your report. For more information on join types, refer to Answer ID 1839: Types of Table Joins Used with Reports and Views.
Text Searches with the LIKE Operator: When creating custom reports, the LIKE operator is designed to match the contents of the Value field exactly. Therefore, you will generally want to include wild cards when searching, i.e. the percent character (%), around the specific word or phrase of interest.
When configuring filters for a report, the Complex Expression operator includes a trailing wildcard in the search. However, if you need to include a preceding wildcard, then you need to include the trailing wildcard as well.
For example, when using the complex expression operator with an incident summary, %error% returns all records that contain error. Using 'error' returns records that begin with "error" because a trailing wildcard is assumed.
By including the % symbol, the report criteria is functionally equivalent to "CONTAINS text error".
Data-type Fields: When working with reports, if you include a date-type field as a run-time selectable filter, be sure to set the operator to "between". This allows you to specify a date range for the value of the field.
If the operator for a date field is set to "equals", then the date associated with the record must match the date and time exactly (to the second) in order for the record to match the report criteria.
For example, if you include the incidents.created field as a run-time filter, if the filter is set to be "incidents.created=05/04/16 12:00 AM", an incident would have to be created exactly at midnight on 5/04/16 to be included in the report.
It is most common to use the "between" operator with date type fields. You can also use the open-ended options including, <, <=, >, or >= as well.