Skip to main content

Posts

Showing posts with the label VBCS

Make selection in a table and transfer selected data without using Boolean checkbox component of VBCS.

  Introduction: Generally, to transfer the selected data from one variable to another over selection we will be using Boolean check box. Can we achieve it without that? Let’s see. Main Article: Lets drop a table component to the designer section and assign an SDP to the table. In this case the SDP I’ve used is from the Business object. Make the selection mode as multiple as below: Now let’s create another table in the same page of type ADP which holds the data that is selected from the previous table and let’s have a button action which refresh the ADP table on click action performed over it. Now the web page will look something like this. Logic: Click on the SDP table and select On ‘select Multiple rows event’ and follow the below steps: ·        Call the REST connection using which the data had been populated in the SDP table ·        On success, reset the ADP variable of below table ·        Drop a for each action and iterate over the keys.   ·        Inside the loop use fi

Easy Chatbot/Digital Assistant Creation and Integration into VBCS

  Introduction : In this blog I will be explaining about creating a chatbot and integrating with your VBCS application. Main Article: Chatbots are the coolest things that everyone would love to have in their application. Let’s start by building a basic chatbot which suggests you a place to visit in India based on your food preferences. STEP1 : ·        Go to the skills section of your digital assistant. ·        click on the Add Intent and rename it to ‘suggestPlaces’ and then go to utterances section of and provide your input. ·        Basically, utterances are the initial conversations that would be started by the humans in a chatbot. once you are done with providing your utterances. click on the train with ML at the top of the page and wait till it gets completed.   STEP2 : ·        Go to the entity section and create an entity (type: valuelist), basically this decides the entity/category to which the user input belongs to. ·        Create an entity with name food. ·