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:
Analytics Oracle B2C Service
Resolution:
When creating reports that include a custom menu field, the specific menu item is restricted to be 40 characters. If you wish to customize the value displayed in your report, you can use the decode function or use embedded IF statements. In general, the decode statement looks like the following:
decode(table.c$menu_field_name), #, 'Custom Text 1', #2, 'Custom Text 2', #3, 'Custom Text 3', etc.)
You can also embed multiple IF statements, similar to the following format:
if(table.c$menu_field_name=#, ‘Menu Item 1’, (if(table.c$menu_field_name=#2, ‘Menu Item 2’, (if(table.c$menu_field_name=#3, 'Menu Item 3,')))))
Note: To determine the # values in the statements, open the custom field for editing and hover over the menu item. The value that displays in the ID pop-up is the database value to use in the statement.
For example, if you have a custom menu field named Severity that you use with incidents, you might have four different menu options to set: Level 1 through Level 4. Within the database, though, these four options correspond to specific menu ID values such as:
6 - Level 1 7 - Level 2 8 - Level 3 9 - Level 4
As a result, if you include the Severity custom field (incidents.c$severity) in the output of your report, you can customize the values that display in your report that correspond to the menu ID values 6, 7, 8, and 9.
You can use a decode statement for the output column similar to the one below.
decode(incidents.c$severity, 6, '1: Site Down', 7, '2: Severe', 8, '3: Moderate', 9, '4: Minor')
The decode statement maps the numerical database values to the text strings you define within the single quotes for each item.
The default return value is given if there is no comparison value provided as shown on the syntax line below. This is useful if the field is nullable since decode doesn't accept NULL as a comparison value. Syntax: decode(expression , compare_value, return_value [,compare, return_value] ... [,default_return_value] )
For additional information, refer to the 'Creating Basic Reports' section in the Online Help User Guide documentation. To access Oracle B2C Service manuals and documentation online, refer to the Documentation for Oracle B2C Service Products.