Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
ferrygun18
Contributor
In this tutorial, we’ll learn how to create an SAP Analytics Cloud chatbot with SAP Conversational AI, and SAP Analytics Cloud (SAC) Custom Widget.

The goal of this tutorial is to enable the users to interact and add the chatbot interface in SAP Analytics Cloud (SAC), Analytics Application. The bot will reply with the answer by updating the Analytics Application UI elements like a chart, widget, table, etc. For our case, we’ll design the bot to update the table based on the user’s question.

Flow Diagram


Here, figure 1 shows the bot architecture flow diagram.

Flow-Diagram

The Custom Widget in SAC Analytics Application connects to the Bot server and gets the unique chat ID (or socket ID). The chat ID will be shown in the UI5 dialog box. A user will enter the chat ID in order to start the conversation. The chat ID is a unique identifier and acts like a password. If the user starts chatting without the chat ID, the Bot server will reply with “Please enter the chat ID”.

The Bot intents and entities are built with SAP Conversational AI. If the user says the intent that matches the question, it will call a WebHook (HTTP call to external service) to communicates with the Bot server. The Bot server will retrieve and parse the information from the WebHook body which provides the conversation states. If the information related to the questions is confirmed, the Bot server will reply to the user with “Here is the information”.

And then it sends the parsed data to Custom Widget via a Web Socket connection. The Custom Widget will listen to incoming data, process it, and triggers the custom event to update the table (or other UI elements) in SAC, Analytics Application via scripting.

There are four components we’ll build:

  • Step 1 – SAP Analytics Cloud Custom Widget
    Written in JavaScript that uses Web Components, SAPUI5 component, a Socket.IO client for communication to Bot Server.

  • Step 2 – SAP Conversational AI Bot Building
    We will build intents and entities and connect to the Bot server via a WebHook.

  • Step 3 – Bot Server
    The Bot server is written in NodeJS that exposed to SAP CONVERSATIONAL AI via a WebHook connection. It uses Socket.IO to have bi-directional communication between Bot server and Custom Widget.

  • Step 4 – SAP Analytics Cloud, Analytics Application
    We will create a simple table based on the Best Run Juice model and add scripting to listen to the custom event to update the UI element like a table, chart, etc.


Step 1 – SAP Analytics Cloud Custom Widget


The SAC Custom Widget comprises of the following files:

  • SAP Conversational AI.json
    The JSON file that defines the Custom Widget with id, name, web components, properties, methods, and events objects.

  • SAP Conversational AI.js
    Implements the custom element of the Custom Widget (Web Component).

  • aps_SAP Conversational AI.js
    Implements the custom element of the Styling Panel of the Custom Widget.

  • io.js
    The Socket.IO JavaScript file.


1.1 Web Component JavaScript


The Web Component JavaScript file, which defines and registers a custom element and implements the following custom element’s JavaScript functions:

A Socket.IO client that always connected to the Bot server.
Socket client listens for a ‘connect’ and ‘disconnect’ event and it will update the SAPUI5 suite.ui.commons.MicroProcessFlow element with the chat ID information. If the connection is established, you will get the green icon with a random chat ID as shown below.


chat-id

Figure 2




If the connection is broken, you will get the error message as shown below.


chat-id-broken

Figure 3




The below code shows the ‘connect’ and ‘disconnect’ event and calls the UI5() function to create the UI5 MicroProcessFlow dialog box above.



Figure 4




 



Figure 5




It also listens for the ‘req’ event to receive data from the Bot Server. The data consists of the parsed information from the user’s question. And then triggers the custom event onStart() to execute the SAC Analytics Application scripts.



Figure 6




The SAP Conversational AI Web Chat.

The SAP Conversational AI Web Chat creates the webchat dialog. The value of data-channel-iddata-tokendata-expander-preferences for the Web Chat is obtained from the Styling Panel in SAC Analytics Application.



Figure 7




1.2 Styling Panel


The user can set property values of the custom widget in Custom Widget Additional Properties under the Styling tab of the Designer panel.



Figure 8




The custom widget properties in the Styling Panel lets you enter the following properties:

  • Socket URL
    The address of the Bot Server with port 3000: http://<BOT_SERVER_IP_ADDRESS>:3000.

  • Channel ID
    Channel ID uniquely identifies the channel your bot is connected to.

  • Token
    Token ID uniquely identifies the channel your bot is connected to.

  • Preferences
    Object containing some settings.


You can find Channel ID and Token ID when creating a webchat channel in the Bot Connector which we’ll discuss later.

The following code creates a template HTML element that lets the user enter the Socket URL, Channel ID, Token, and Preferences.



Figure 9




The following code shows the JavaScript implementation of Getter and Setter functions.



Figure 10




The setter functions place a text representation of the new value of the respective item (i.e., SocketURL) into the input field of the Styling Panel. The getter function returns the text of the input field of the respective item of the Styling Panel.

Step 2 – SAP Conversational AI Bot Development


We’ll start by building the intents and entities in SAP Conversational AI. Logon to https://cai.tools.sap/ and create a new bot.



Figure 11




2.1 Create Intents


Create intents called getstarteduid and question.



Figure 12




Select @getstarted intent and add an expression “Start the conversation”. This intent lets the user start a conversation with the bot. An expression is a sentence that your bot can understand.

Select @UID intent and add expressions “chat id” follow with random string as shown below. This intent let user to reply with chat id.



Figure 14




Select @question intent and add an expression as shown in the screenshot below. This intent lets the bot understand the user’s question.



Figure 15




2.2 Create Entities


An entity is a keyword that is extracted from an expression.

Create entities DATEGETSTARTPRODUCTCATEGORYPRODUCTNAMESESSIONIDUID as shown below.



Figure 16




Select entity #DATE and add entity values as shown below.



Figure 17




Select entity #GETSTART and add value “start the conversation” as shown below.



Figure 18




Select entity #PRODUCTCATEGORY and add values “alcohol”, “carbonated drinks”, “energy drinks” and “juices” as shown below.



Figure 19




Select entity #PRODUCTNAME and add values “apple juice”, “dark beer”, “ginger ale”, “low-calorie beer”, “mango juice”, “mixed drinks”, “monster” and “orange crush” as shown below.



Figure 20




Select entity #SESSIONID and add random string values as shown below.



Figure 21




Select entity #UID and add value “chat id” as shown below.



Figure 22




2.3 Build Skill


Go to the Build tab and select greetings.



Figure 23




Select Triggers and add the trigger conditions as shown below.



Figure 24




Select Actions tab and click Add New Message Group. Set the condition for @UID@question@getstarted. For each condition, connect to a WebHook URL of the Bot server. You can use Ngrok or other HTTP calls for the WebHook.



Figure 25




If you are using Ngrok, type this command: ngrok http 3000 and copy the HTTPS Forwarding URL into the Webhook Configuration in SAP Conversational AI.



Figure 26




Select Connect tab and click SAP Conversational AI Web Client.

Click New SAP Conversational AI Web Client, fill in the information and click Create.

Make a note of the data-channel-iddata-token, and preferences. We will insert this information in the Styling Panel custom widget.



Figure 27




Step 3 – Bot Server


We will be using Socket.IO to facilitate real-time connection between Bot server and clients which are the custom widgets. Every time the widget (client) is connected to the Bot server, it receives the unique session ID,  which is a unique identifier for the Bot server to differentiate each client.



Figure 28




Bot server is a chatbot engine that comprises of the following logics:

  • It always checks for the user’s session ID or chat ID. The chat ID is like a password for the user to start the conversation. If there is no chat ID, the bot will reply with “Please enter the chat ID”.

  • Once the bot server gets the chat ID from the client, it knows which client it is connected to and then saves the chat ID in its memory.





Figure 29




If the question intents are available and the Bot holds the memory of the client, it will parse the data from the intents and send the data to the respective client (Custom Widget) via a web socket connection.



Figure 30




We need to change the variables mentioned in the below screenshot. See below bullet items on how to get the information.



Figure 31




Click Settings and under Bot Settings click Tokens to get token from Developer token and botSlug from Your user slug. The botSlug is your bot’s name (for my case is SAP Conversational AI-3).

Click Bot Settings and Versions, to get version.



Figure 33




Run the Bot Server with command node server.js



Figure 34




Step 4 – SAP Analytics Cloud, Analytics Application


Now is time to write a script in Analytics Application to process the incoming data from the Custom Widget’s event and update the table.

  1. Create Analytics Application and add the Custom Widget that we had created earlier.

  2. Insert a table for the Best Run model.





Figure 35




Right-click on the Custom Widget. Insert the following code in onStart() function and save it.



Figure 36




Step 5 – Usage


We have built and set up all the required components and now it’s time to run and test the bot!

  • Make sure you the Bot Server is up and running.

  • Make sure you have configured the WebHook setting in SAP Conversational AI and it is connected to the Bot Server.

  • Make sure you have deployed the Custom Widget and added the script in SAC Analytics Application.

  • Fill in the properties of Socket URLChannel IDToken, and Preferences in the Styling Panel. Click Run Analytics Application.

  • Check if the Custom Widget is connected to the Bot Server. The SAPUI5 icon status shows a green status with the chat ID. Copy that chat Id.

  • Click “Click on me” and enter/paste the chat Id.

  • Click Let’s get started.





Figure 37




Reply with the question:

“show me date 201309 with product category name Carbonated Drinks, product name Orange Crush, sales manager name Nancy Miller and state name California” or
“show me date 201307 with product category name Alcohol, product name Low Calorie Beer, sales manager name John Minker and state name California”.



Figure 38




If there is no error, the table will be updated with the relevant information as per the user’s question.

Congratulations, we’ve built a chatbot with SAP Conversational AI connected to SAP Analytics Cloud able to update the UI elements of the Analytics Application!

Demo Video







References







For more information about SAP Conversational AI:


2 Comments
Labels in this area