Blogs

How to load parent to child record in single post DataRaptor

 Load :-  When we save the record in the database through DataRaptor, it is called load. In this post, we will load an account with related contacts as children in a single DataRaptor.  Step:– 1   “We create a LoadDataRaptor in the DataRaptor section.” /*! elementor – v3.18.0 – 20-12-2023 */ .elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=”.svg”]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block} create new post DataRaptor  Step :–2   “Select an object in the Object Section to determine where the record is being saved..                —   Click on the ‘Add Object‘ button and select ‘Contact.’                —   Click on ‘Add Link‘ and select ‘Account,’ filling in the details as shown in the image below. (To establish a relationship binding the Account with the Contact as a child)”. Link Object Step :–  3   “Here, we map all the fields that we want to load into the database.” field mapping /* Json for input field mapping , if we put this json in preview tab it will map the fieldsto save .*/ { “Name”: “Demo”, “Phone”: “12121”, “Contacts”: { “FirstName”: “Test”, “LastName”: ” Child”, “Phone”: “398432” } }    Step  :–4   “Copy and paste the above JSON into the Preview Section. Click on the Preview tab, then click on ‘Execute.’ You will obtain the ‘Account’ and ‘Contact’ IDs. Check to ensure it works.” on preview tab Salesforce Guide – https://help.salesforce.com/s/articleView?id=sf.os_dataraptor_load_examples.htm&type=5

How to load parent to child record in single post DataRaptor Read More »

How to Remove Data/Card in Flexcard.

 Remove Action – Remove action in FlexCard is use to remove card on FlexCard page .     Example – Here we will create a Flexcard and select a datatype and make it removal or deleteable .Here we learn about how to Remove Data or card in flexcard.   Step :-1  Create a Flexcard and get data from Soql Query Data source.                  Select all queried data on canvas to make it visible on the screen.                  Take an Action on canvas to perform action.                  Select Action type as”Card” .                  Select Type as “Remove” to remove the card. After selecting/ performing all these as above instruction.   Step :-2   Preview the FlexCard .   When you click on the button it will remove the card .

How to Remove Data/Card in Flexcard. Read More »

How To Use Lookup Input in OmniScript .

Create an OmniScript and use lookup input. /*! elementor – v3.18.0 – 20-12-2023 */ .elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=”.svg”]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block} Create New OmniScript First we are Drag & Drop Text Field And Lookup Input In Canvas     Here we will do dynamic Query Without Extract DataRpator using Lookup Inputs. Lookup Query Configuration Here we first select the data source sObject type in Lookup. Here we can bring the data from the database without extracting it  throught the Lookup Input.   Populate Lookup Element with Query Result: Here, we specify what we want to store in the variable using a colon, which is then used in the following path. Let’s preview and check the JSON. Show data in omniscript I hope you understand the use of Lookup Input In OmniScript. Note : The ‘Name’ field is mandatory (required) for the Account, so we must populate it with a value of the ‘Name’ type.

How To Use Lookup Input in OmniScript . Read More »

How To Use SOQL Parent to Child In DataRaptor

How To Use SOQL Parent to Child In DataRaptor Here we see How To SOQL Parent to Child In DataRaptor. — :  “In this post, we will create an Extract DataRaptor to retrieve account and related contact data”. Step :–  1  “We are creating a new Extract DataRaptor.” /*! elementor – v3.18.0 – 20-12-2023 */.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=”.svg”]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block} Create a new DataRaptor Step :– 2 On Extract create mapping as show on below image. Select Object Step :– 3  “Map the output fields as shown in the image below.” In OUTPUT Step :– 4   “In the Preview Tab, click on ‘Execute’.” on preview tabSalesforce Guide =https://help.salesforce.com/s/articleView?id=sf.os_dataraptor_extract_overview.htm&type=5

How To Use SOQL Parent to Child In DataRaptor Read More »

How to Make KeyValue To Array in Transform DR.

First let’s create a DataRaptor Transform. /*! elementor – v3.17.0 – 01-11-2023 */ .elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=”.svg”]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block} Now we go to the Transform Tab and click on the Plus(+) icon. then go to the Output JSON Path and type type Fields|1 . And type Contact:first_name in the Input JSON Path.(to fetch the fields of an object, use : ). Similarly we add more fields of the User(Fields|2) Click on Preview Tab and write down in input json. {  “Contact”: {    “firstName”: “Sumo”,    “lastName”: “Jensen”  }}then CLICK Execute Buttom. So Output results SHOW.(according my input json)

How to Make KeyValue To Array in Transform DR. Read More »

How to AutoPopulate fields in Omniscript

In this blog we create set value and populate the value in the field of omniscript when ever we select an option. Create a Omniscript and drag SetValues.  Click on the setvalues.  Create two values in setvalues, see below image . Drag Select Properties on the canvas. Click Add New Option in select input to make a picklist type value. Fill Value and Label field like below Image. Select two text block poperties to show the result when we click on button / option. Click Text and fill values in %% sign  like below image so we can get the action . Click Preview and Select an Option we will see the value what we pass in setvalues .

How to AutoPopulate fields in Omniscript Read More »

How To Use Messaging Input In OmniScript

Create an Omniscript. Messaging elements can be used to display success, warnings, comments, or requirements based on the validation expression. /*! elementor – v3.18.0 – 20-12-2023 */ .elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=”.svg”]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block} Create A Omniscripts First I am Drag & Drop Text Field in Canvas and Messaging Function. Expression=If Name<> NULL than Show the message “Thanks” . And expression == NULL So display Show “Please Fill The Tab”. Messaging Add to Omniscript Same thing on message display Whichever Condition is given in validate expressions. When the validate  expression is true then it follow true expression and if it is false then it follow false. This validate expression is displayed only when the active checkbox is checked. Note- If requirement is selected in validate expression then navigation is not possible without validating. Lets Preview it See the JSON See The JSON Expression Is True & False To display the message, select the type of message to be displayed when the validation expression returns true or false and add the message to be displayed. I hope you understand the use of messaging function.

How To Use Messaging Input In OmniScript Read More »

How to use Transform DataRaptor in Array to KeyValue.

First let’s create a DataRaptor Transform. /*! elementor – v3.17.0 – 01-11-2023 */ .elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=”.svg”]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block} Now we go to the Transform Tab and click on the Plus (+) icon. then go to the Output JSON Path and type Contact:firstName . (To fetch the fields of an object, use:). And type first_name in the Input JSON Path. Similarly, we add more fields of the User(last_name) Now we can the formula by going to the Formula Tab. type Fields|1 in the formula and type first_name in the output result path. In this way we create another formula. Click on Preview Tab and write down in input json. {“Fields”: [    “Sumo”, “Jensen”]} then CLICK Execute Bottom. So, Output results show according to my input Json)

How to use Transform DataRaptor in Array to KeyValue. Read More »

Scroll to Top