Skip to main content

Trigger PCS Application from Digital Assistant/Chatbot

Introduction

In this article I will be explaining about triggering the PCS application from the chatbot.

Main article

Many of us might have known about triggering the PCS integrations from the OICS or VBCS.

Have you ever done it from chatbots?

Let’s build a dummy process application in first place which we want to trigger from the chatbot.

The main purpose of this would be to notify the user over the mail with the details that he had filled in the form.

In this case I have created a message-based process and named it as chatbot.

Create a basic form with two fields UserID and IntegrationName.



Now create a new message-based process:

For the message action at the begin providing the details as below:



Select the form in the User Task (Submit) action:



Now Follow the below steps to get the integration configured in chatbot environment:

1.       Go to the settings section and select API services.


Provide the details as below :


Once done go to the authentication section and select basic authentication from the drop-down list:

Provide your OIC/PCS credentials.

Now in the methods section, provide the input payload for the integration call.

{

    "processDefId": "oracleinternalpcs~chatbot!1.4~ChatbotProcess",

    "serviceName": "ChatbotProcess.service",

    "operation": "postUserInput",

    "action": "Submit",

    "params": {

        "userId": "John",

        "intName": "hcfsdrvh"

    }

}

Click on test the request and save the response:



Now please refer to my previous blog on building the basic chatbot:
https://oracletechshares.blogspot.com/2022/07/easy-chatbotdigital-assistant.html

following the above steps build the utterances of your own choice.

In this case, my utterance is ‘I want to raise a ticket.’

Now go to the flow section of the ODA and drop the rest service section and drop action call REST service and select the endpoint from the dropdown. Once done you should be able to see the complete details of the endpoint you have provided in the configuration step.

Let’s test the Chatbot we had built so far.




As you could see the chatbot replied with message saying process request has been raised along with the ID.

 

Now, if we check our process tasks, we would be able to see our request as below:



I you are wondering how I’ve designed the chat with replies.

Please check these blogs of mine:

https://oracletechshares.blogspot.com/2022/07/easy-chatbotdigital-assistant.html

https://oracletechshares.blogspot.com/2022/09/trigger-oic-from-digital.html

 

Hope you all liked the article and learnt something new for the day.


- PREETHAM KONJETI 







Comments

Popular posts from this blog

Convert App based Integration to Scheduled Integration without wrapper in OICS

we all know that converting a scheduler integration to REST is quite easy , where as the reverse is not possible and the only way to achieve it is through creating a wrapper scheduler integration and invoking the trigger one as child from there. But there is another way through which we can achieve the direct conversion. For that please refer to below example. Note : Every step mentioned has to be done very carefully Create Scheduler Integration. I’ve created a base one in which it invokes a SOAP service.  I’ve created a small trigger integration which I’m going to change to scheduler without any wrapper. Please follow the below steps to convert rest based to scheduler:     1)    Export the integration.     2) Rename the iar file to zip.     3) Now unzip the file.     4)    Compare the properties files of both scheduler and rest based integration and make the changes to rest based as per the scheduler integration After ...

ChatGpt X Oracle Digital Assistant Integration

  Introduction In this article I will be explaining about integrating the ChatGpt with Oracle Digital Assistant. NOTE : This is not a suggestion to have ChatGPT in your ODA, this article is just to showcase the flexibility of the ODA to easily integrate with anything. Main article ChatGPT ChatGPT is an AI language model developed by OpenAI, capable of processing natural language input from users and generating coherent and relevant responses. It has been trained on an enormous corpus of text data using unsupervised learning, allowing it to generate responses that are not just grammatically correct, but also contextually appropriate and engaging. ChatGPT is particularly useful in scenarios where there is a need for rapid and accurate responses to user queries, such as in customer service or personal assistants. However, it may struggle to generate appropriate responses in certain situations and may not be suitable for scenarios requiring a high degree of personalization or...

Wait for Synchronous Integration in OICS

   Introduction: Wait is the most common thing we use to slow down the process at any given point of time, but this wait action is by default disabled for synchronous integrations. Main Article: Create a JavaScript ( syncWait  let  ) with the below Code: function syncWait(waitTimeinmillisec) {   const begin = Date.now();   while ((Date.now() - begin) < waitTimeinmillisec){   }   return waitTimeinmillisec; } now call this JavaScript in your synchronous Integration with the seconds you want to halt your integration * 1000. Call this JavaScript in places you need in your synchronous Integration. That's it you had overcome the synchronous Integration Limitation. Example: -Preetham Konjeti.