For partners that build or integrate commercially available applications and service solutions with the Oracle Cloud Platform
For partners that provide implementation or managed services around Oracle Cloud Applications
Thanks Sebastiaan for the inputs. It's unfortunate that we aren't to do achieve it.
I'll head over to the idea lab and upvote it.
But wouldn't that always result in an "existing contact" since by the time the post_incident_create hook code is run, a contact was created and assigned to the Incident already?
Thanks Allan for confirming this. Out of curiosity, would you know how to find a temporary solution for this?
Not sure how I would check that but AD (File->Help->About) reports it as 18C whereas CP Administration section (Framework->Framework versions) lists it as August 2017.
In any case, thanks for your inputs. We have kind of put it on the back burner for the moment. But I'll try the SOAP call for sake of information.
So I tested with a couple of different values for the DoB.
When I was using ROQL in the Connect object explorer, the value of (1) was coming back as 1965-10-23 whereas in case of (2) the value was 1984-10-22. This makes me believe that when the year is greater than or equal to 1970, the value is being offset by 1 day.
The interesting thing is that when viewed in the workspace in AD, the values are coming back as expected in both cases.
I think I know when it's behaving the way it is - not the cause though. Will post my findings as a new comment.
False alarm! It was a "post_incident_create" hook that was the culprit. The hook was trying to update contact details but was getting empty hook data and hence the error.
Thanks Mann. Let me try this out and see how it goes.
Hi Nigel,
It could be possible that one or more widgets in the "chat_landing.php" page is outdated and hence there is a mismatch with the widget's attribute values. You can verify this by making a list of all widgets being used on the page and going through the widget documentation of each in the CP administration section.
How long does it take to resolve on itself? It's been 4 days now since the problem reared its ugly head.
To add to what Luuk posted, all you need to do is add a new attribute to the chat/ChatLaunchButton widget.
This will open up the chat window in a separate window and you will be free to navigate between pages on the portal.
That sounds exciting. Will look forward to it.
Aha! I had to hit "Deploy" after removing them.
Hi JJ,
Not sure about "getting the related IDs", but have you tried
$products = RNCPHP\ConnectAPI::getNamedValues("RightNow\\Connect\\v1_3\\Incident.Product");
foreach($products as $product)
{
echo $product->ID.' --- '.$product->LookupName;
}
$categories = RNCPHP\ConnectAPI::getNamedValues("RightNow\\Connect\\v1_3\\Incident.Category");
foreach($categories as $category)
{
echo $category->ID.' --- '.$category->LookupName;
}
You might get the link/relation inside the "$products/$categories" object too. Might wanna check it out by using "print_r" on those.