How To Insert Bulk Records in a Single Object within DataRaptor(Salesforce/Vlocity / OmniStudio)

:– In this post we create Bulk record use of dataraptor First, create a DataRaptor for Loading.  Select Sobject, map the Fields and Execute . Create DataReptor and fill the Name & Interface Type Select Sobject which object to load Map Input & Domain Fields Note-While doing Sobject mapping it is necessary to map the …

How To Insert Bulk Records in a Single Object within DataRaptor(Salesforce/Vlocity / OmniStudio) Read More »

How to Call Integration Procedures In FlexCard (Salesforce/Vlocity / OmniStudio)

Show Ip Data In Flex Card First, we Create Integration Procedures  and Activate it To Call in FlexCard Integration Procedures “In Integration Procedures, we create a SetValues to store some data, and then we send it to FlexCard using ResponseAction.”    In FlexCard DATA SOURCE = “Integration Procedures “ Name = Type_SubType (IP)   Ip …

How to Call Integration Procedures In FlexCard (Salesforce/Vlocity / OmniStudio) Read More »

How to Call DataRaptor In FlexCard.(Salesforce/Vlocity / OmniStudio)

Extract DataRaptor in FlexCard FlexCard > Setup > Data Source > DataRaptor   Crate a FlexCard We Create a Extract DataReptor  to Get Account Data  Its Use in FlexCard Extract DataRaptor In Setup Pannel “DATA SOURCE ”  in “Data Source Type ”  select  “DataRaptor”   Interface Name  =  DataRaptor Name In Input Map   Key   = Name of the …

How to Call DataRaptor In FlexCard.(Salesforce/Vlocity / OmniStudio) Read More »

How to use SOQL in FlexCard to Show Data(Salesforce/Vlocity / OmniStudio)

FlexCard > SOQL >Write Query >Fetch > Save >DataTable First we create FlexCard Step 1 Step 2 Write QUERY For Get Account Data Step 3 After Click Next   Click on Fetch Step 4 after Click on  save  Step5 For Show Record In Data Table   — Select Data table From Build Step 6 Select data table …

How to use SOQL in FlexCard to Show Data(Salesforce/Vlocity / OmniStudio) Read More »

How to Call Integration Procedure In Custom LWC Vlocity (Saleforce/Vlocity / OmniStudio)

In Integration Procedure   Type && Subtype  Name Give In JavaScript First we Create a component In visual studio Name like show_IP_Data In JAVASCRIPT — write this line to Call Omniscript import { OmniscriptBaseMixin } from ‘omnistudio/omniscriptBaseMixin’; input — Input we pass input parameter  sClassName – ‘omnistudio.IntegrationProcedureService’ sMethodName – type_SubType (In IP type_SubType Name) options — We …

How to Call Integration Procedure In Custom LWC Vlocity (Saleforce/Vlocity / OmniStudio) Read More »

How To Use Upsert DataRaptor Without Id In Omniscripts.

How To Use Upsert DataRaptor Without Id In Omniscripts. “First, we create an External ID, and the External ID is unique for every record.” “External ID is like a record ID.” Step 1: First, go to Objects > Fields & Relationships. Select “New Field,” choose the field type (Text, Number, Email, Phone), check the “External …

How To Use Upsert DataRaptor Without Id In Omniscripts. Read More »

Call Apex Class Using Integration Procedure within OmniStudio (salesforce / vlocity / OmniStudio)

Call Apex  Class In Integration Procedure  Frist write  Apex Class For Query 5 account Data Apex Code For Call Integration Procedure  In Apex class Create Global and implements Callable   global without sharing class ClassCalledFromIP implements Callable {     public Object call(String action, Map args) {         Map input = (Map) args.get(‘input’);         Map output …

Call Apex Class Using Integration Procedure within OmniStudio (salesforce / vlocity / OmniStudio) Read More »

Scroll to Top