How to create a task with dependent script using map/reduce script.

The scheduled or map/reduce script only used as a dependent script. Here we used the saved search to convert the search result as a csv file and stored in the file cabinet. // Specify a file for the search results                let asyncSearchResultItemFile = ‘file path need to give… Continue reading How to create a task with dependent script using map/reduce script.

How to get access token of Third-Party APIs(DocuSign) using POSTMAN

First, login to the DocuSign Account or any account. Then Create an APP and Integration key. It depends on the API you have used. We can directly get the access token. Otherwise, here we showed the steps to create an access token for DocuSign Integration. Using the API and integration key, get the access permissions.… Continue reading How to get access token of Third-Party APIs(DocuSign) using POSTMAN

How to filter the search results using filter function

Create a search to fetch the customers who gave Feedback Response First get the search using search.create. Here we removed the customers who gave more than one response from the search results. // Get the search results                const searchResults = customrecord_sf_responseSearchObj.run().getRange({ start: 0, end: 1000 });   //… Continue reading How to filter the search results using filter function

Why the record page got struck when we validate a field in fieldChanged function?

Here the sample code to check whether the opportunity name already exists, if it exist then it will show an error. However, if you are not added return values, then it struck in the same field and page also not support to enter the next fields.     function fieldChanged(scriptContext) {     try { … Continue reading Why the record page got struck when we validate a field in fieldChanged function?

How to get the button id from the contacts record.

First go to the contact record page. Then right click and select Inspect(Ctrl_shift+i). Go to the elements and select search (Ctrl+f) Then type the button name for example(New Task) then it will redirect to the that word. View the id of the button.