Posts

Showing posts from June, 2022

Vlocity Facts/ Resources

Vlocity Resources: Salesforce Org - Omnistudio: You can use Personal mail also for registering Trailhead | Promo Org Signup Vlocity Org: Need to have company/organization mail [For Partners] Vlocity Demo Org For Practice/ Modules you can register here and refer : Register here with Company Mail [For Partners] For Creating Account: Success.Vlocity For Login:  Success.Vlocity For Youtube videos: 🔸Resources 👇  Link 1  - Vlocity Tutorials By Santosh Link 2  - Salesforce Apex Hours Link 3  - 0to1 Code By Vishnu Kumar Link 4  - Tech Rakesh Link 5  - theTalkingCode Link 6 - Satyam Tiwari Tutorial For Blogs Related to OmniStuido/Vlocity: https://vlocityfactsgowtham.blogspot.com/ https://www.lopau.com/category/get-salesforce-certified/salesforce-certified-omnistudio-certified/ https://riyazusman.medium.com/ https://salesforceforever.com/ Trailhead Modules: OmniStudio - Trailhead Link I f you have any other resources please feel free to share in comments ...

Vlocity Facts #10 | Multi-Language OmniScript - Custom labels

Image
Multi-Language OmniScript Multi - Language OmniScript allows you users to translate solutions and solution categories into the languages supported by Salesforce so that customers and support reps can find answers to inquiries in their preferred language. How to Enable multi-language Enable multi-language OmniScript support by modifying the Vlocity OmniScript object in Salesforce's Setup. From Salesforce's  Setup , Object manager , check for  Vlocity OmniScript  object and  edit the  Language  picklist by add " Multi-Language "  to the list from  Fields and Relationships  section. Now While you are creating new omniScript you can choose language as Multi-Language or you can edit the language of existing omniScript by choosing on omniScript. How to Avoid Error while using Custom Label in Mutli-Language Omniscript If you are converting an OmniScript from single- to multi-language, specify valid custom label names or clear all translatable proper...

Vlocity Facts #09 | Set Errors and Set Values

Image
Set Errors In an OmniScript Using the Set Errors action element, add error or validation messaging to one or more elements in a previous step based on conditions from subsequent steps. You can only set requirements and conditions on elements in the current step when using required fields and Formula/Messaging elements. For example , on an application,  I have 15 fields on first step in that three fields are [ Phone number, Email, Postal Code] and those fields are not required in the  initial intake step, and in a future step, I have a three check box related stating may of communicating with [ Email, Phone, Address] if user choose through phone but user has not given any value to in first step in this case we can use  Set Errors element,  It runs after the step and returns the user to the initial intake step with custom error messages. Note:  File, Image, Messaging, and Formula these elements are not supported by Set Error element. How to configure Set Error ele...

Vlocity Facts #08 | How to launch OmniScripts?

Image
After completion of developing omniscript we need to launch omniscripts to provide access to the users. These are the different ways to launch the omniscript We can  embed the component into any Aura or LWC component.  By using Action, Menu elements in flex cards we can launch the omniscript from flexcards. We can launch the omniscript from community page or lightning record page. By using buttons, links and Actions we can launch launch from object detail page. We can use custom links or URL's for launching omniscript. From Flows also we can launch we can launch omniscript. By using Vlocity actions for launching omniscript.  Note: We can use Visualforce page also for launching OmniScripts with required styles instead of choosing URL's in Custom Button or Links we can choose Visualforce page. Now let see how can we use different options to launch. ========================================================================= Action, Menu elements in flex cards: Create flex car...

Vlocity Facts #07 | OmniScript Elements -1

Image
In this post i will let you know how to use some of Omniscripts elements and Conditional view for those elements with Scenario. Step Password Formula Text Block Messaging  Date  Step: In your OmniScript if you are having 3 pages to collect or display the data like Personal Details, General Information and Account Details, Each "page" of the form should be created using steps . Steps can be navigated through by using the Next and Previous buttons. You can enable field validation for a Step, which means that all required fields on the Step must be filled out before proceeding. Step Properties:  Chart Label : It is used to display the name of your step it will override the Field name what you have mention. Instruction : It is used to add the detail description of the step, you can include Images, Table, Format or Style the test. Button Properties :  Here you can add or remove the Previous, Next , Save for latter or you can change the names of the buttons. Hide Step Cha...