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
CX version February 2012 with Email, Knowledge base, Knowledge Foundation API
Resolution
To set privileged answer access in Knowledge Foundation API, the minimum amount of information you have to pass in is one of the following:
Note: You do not have to pass all of them, just one out of the list.
If the SLA is tied directly to the contact record, you need to pass in enough information to identify the contact. That can be ID OR Name (full name) OR both.
If the SLA is tied directly to the organization record, you need to passin enough to identify the contact (like above) OR the Org. To uniquely identify the Org, you can use ID OR Name OR both.
You can pass in all the data if you want (just ID, ID + Name, Org + Contact, etc).
If a contact does NOT have and Org., it has to have an SLA instance to get access to answers with an access level that the SLA gives them access to. If the contact does have an Org., any contact level SLA instances are ignored and the organization level SLAs are used.
Examples of C# .NET code:
Calling SearchContent for a contact (by ID) who has an SLA for priviledged answer access:
RightNowKnowledgePortClient client = new RightNowKnowledgePortClient(); client.ClientCredentials.UserName.UserName = "user"; client.ClientCredentials.UserName.Password = "AReallyComplicatedPassword";
ClientInfoHeader header = new ClientInfoHeader(); header.AppID = "42";
string interactionID = client.StartInteraction(header, "KFAPITester", "192.168.1.1", null, "KF API Client");
ContentSecurityOptions security = new ContentSecurityOptions(); security.Contact = new NamedID(); security.Contact.ID = new ID(); security.Contact.ID.id = 1; security.Contact.ID.idSpecified = true; SearchResponse searchResponse = client.SearchContent(header, interactionID, "test", null, false, false, 10, null, security, null, 0); if (searchResponse.SummaryContents != null) foreach (SummaryContent summaryContent in searchResponse.SummaryContents) System.Console.WriteLine("Title: " + summaryContent.Title);
ContentSecurityOptions security = new ContentSecurityOptions(); security.Contact = new NamedID(); security.Contact.ID = new ID(); security.Contact.ID.id = 1; security.Contact.ID.idSpecified = true;
SearchResponse searchResponse = client.SearchContent(header, interactionID, "test", null, false, false, 10, null, security, null, 0);
if (searchResponse.SummaryContents != null) foreach (SummaryContent summaryContent in searchResponse.SummaryContents) System.Console.WriteLine("Title: " + summaryContent.Title);
Calling SearchContent for an organization (by ID) who has an SLA for privileged answer access:
ContentSecurityOptions security = new ContentSecurityOptions(); security.Organization = new NamedID(); security.Organization.ID = new ID(); security.Organization.ID.id = 1; security.Organization.ID.idSpecified = true;
if (searchResponse.SummaryContents != null) foreach (SummaryContent summaryContent in searchResponse.SummaryContents) System.Console.WriteLine("Title: " + summaryContent.Title
Calling SearchContent for an organization (by Name) who has an SLA for privileged answer access:
ContentSecurityOptions security = new ContentSecurityOptions(); security.Organization = new NamedID(); security.Organization.Name = "org with sla";
Learn more about Service Level Agreements SLAs and how to set them up:
Applying SLAs to an organization or contact
Setting up service level agreements (SLAs)