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:
Answer Phrase Searching
Resolution:
Oracle B2C Service indexes complex strings differently depending on the nature of the string itself. With such a wide variety of combinations of alphabetic, numeric, and special characters in a string, it is best to test how the application indexes your specific string so that you can determine how your site visitors can search on the string of interest, such as a part number, business code, or document number.
Note: If you are working with an answer that is not yet published, you can search your answers from the administrative side using the same search options that are allowed on your end-user pages. Set up a view or report that includes the same search options as your end-user pages. This allows you to replicate the search behavior that your end-users experience when you publish the answer.
To determine how the string is indexed: When a complex string is indexed, Oracle B2C Service indexes either the entire string or it will index each component of the string separately.
For example, abc_def is indexed as a whole, but abc(def) is indexed as "abc" and "def".
Therefore, to determine how the string gets indexed, use the following approach:
Indexing parts of the overall string: You can add each individual component to the Keywords field for the answer. So, in cases where searching on "abc" should return answers that contain "abc_def", you can include "abc" in the Keywords field of the answer.
You can use the aliases.txt file to define aliases for components that you search on. For example, you could add the following line to the aliases.txt file to allow the user to search on "abc" to return answers with "abc_def" and "abc123":
ABC,ABC_DEF,ABC123
With this line added to the aliases file, when a user searches on "abc", answers that have "abc_def" or "abc123" are returned in the results. For more information on keywords and aliases, refer to Answer ID 1660: Adding Synonyms for Searching.
When a word that begins or ends with a special character is indexed into the phrases table of the database (from which all searches find keywords), all punctuation characters are removed from the word. As a result, when "~tabletop" or "tabletop~" is indexed, it is entered as "tabletop".
When a phrase (or similar phrase) search is performed on "~tabletop~", the search ignores the leading and trailing characters and searches on "tabletop", which will find all incidents with "tabletop" in them. This search will pull up more answers than you are searching for since it removes any initial special characters.
With the exception of periods, when a special character (such as a dash or underscore) is within an alphanumeric string, the entire string is typically indexed to include the special character and word stemming is applied to the end of the word. For strings that include parentheses and brackets, in general, each component is indexed and the entire string is not indexed. In other words, parentheses and brackets make no difference.
Important! The search functionality on your site may work differently due to the addition of keywords to individual answers or due to aliasing that may be configured for your specific application. In addition, specific combinations and special characters may behave differently. Be sure to use the approach above to determine how your specific string is indexed.
The most common characters are provided below with specific descriptions:
Dash or hyphen: Example: abc-123. The components before and after the hyphen are indexed separately because the dash is treated as a space. This applies only to alpha-numeric phrases. All alphabetic phrases (i.e. meta-answers), the whole string is indexed and word stemming is applied. However, when there is a space before a dash, it acts as an exclude function. For example, if you search on "meta -answers" it will return only answers with "meta" in them, but not "answers".
In February 2010 and later releases, the trailing word has to start with a letter to be kept with the previous word and the first word needs to start with a letter as well.
HTML Brackets < and >: Words and components within HTML brackets < and > are not indexed. So in the case of abc<def>, the "abc" component is indexed, but the "def" component is not.