Anuj
IndividualForum Replies Created
-
An Apex callout enables you to tightly integrate your Apex with an external service by making a call to an external Web service or sending a HTTP request from Apex code and then receiving the response. Apex provides integration with Web services that utilize SOAP and WSDL, or HTTP services (RESTful services).
-
Anuj
MemberOctober 28, 2020 at 2:11 pm in reply to: Schedule hidden classes in managed packages programmatically in Salesforce ?Hi,
you can schedule the hidden class of managed package same as normal class -
Create or Edit a Big Object
- From Setup, enter Big Objects in the Quick Find box, then select Big Objects.
- Click New or click an existing big object.
- Add or edit details about the big object.
- Add or edit custom fields. Custom fields store the data for your big object records.
- Add an index. ...
- Save the big object.
-
Salesforce Connect provides seamless integration of data across system boundaries by letting your users view, search, and modify data that's stored outside your Salesforce org. For example, perhaps you have data that's stored on premises in an enterprise resource planning (ERP) system.
-
Overview. When Smartsheet is integrated with Salesforce, users can link project sheets to accounts, contacts, opportunities, other CRM objects or any custom object for real-time collaboration on project tasks and related files and discussions.
-
Anuj
MemberOctober 27, 2020 at 3:30 pm in reply to: What is the use of getSObjectType() method in Salesforce ?Returns the token of the sObject type that makes up a list of sObjects.
-
Anuj
MemberOctober 27, 2020 at 3:28 pm in reply to: How to check if list contains the specified element in Salesforce ?- Define a new Set. Set<String> mySet = new Set<String>();
- Use the Set. addAll() method to add all of the List elements to the set. mySet. addAll(myList); .
- Use the Set. contains() method to check the Set for the element you're looking for.
-
Anuj
MemberOctober 22, 2020 at 12:37 pm in reply to: What is field level encryption in Salesforce ?Field-level encryption adds an additional layer of security that lets you protect specific data throughout system processing so that only certain applications can see it. Field-level encryption allows you to enable your users to securely upload sensitive information to your web servers.
-
- Click the gear icon in the upper left and select Setup.
- In quick find enter Platform Encryption.
- Select Encryption Policy.
- Select Encrypt Fields.
- Under the Email Message section mark needed fields for encryption and set encryption scheme.
-
Anuj
MemberOctober 22, 2020 at 12:31 pm in reply to: How to get all fields for custom object in Salesforce?You can use Dynamic Apex to perform describe call on object for which you want to get meta-data as described in below example: List<String> fields = new List<String>(); fields.
-
Anuj
MemberOctober 20, 2020 at 2:03 pm in reply to: How to enable ringcentral phone for custom field in Salesforce?Hi Anjali,
Check it out this link:
https://netstorage.ringcentral.com/guides/sfdc_lightning_admin_guide_v6.pdf -
Anuj
MemberOctober 20, 2020 at 1:54 pm in reply to: How to handle exceptions in test classes in salesforce?try this code in your test class:
try { insert account ; }catch(e) { System.assertEquals(e.getMessage(),'revenue should be less than 200'); }
-
Anuj
MemberOctober 19, 2020 at 12:36 pm in reply to: Can we create a master-detail relationship in this case?No, directly we cannot create master-detail relationship if custom object contains existing records.Following are the steps to create master-detail relationship when records are available in custom object.
First create field with lookup relationship.
And then associate look field with parent record for every record.
Next change the data type of the field from look up to Master detail. -
Anuj
MemberOctober 15, 2020 at 3:34 pm in reply to: Rightmost characters of the current String of the specified length in apex ?.
- This reply was modified 4 years, 1 month ago by Anuj.
-
Anuj
MemberOctober 15, 2020 at 3:08 pm in reply to: What is the use of Matcher Class in Salesforce ?The Pattern class stores and manages regex patterns. The Matcher class stores the results of an attempt to match a Pattern with a String, including any captured text.
-
Anuj
MemberOctober 15, 2020 at 3:07 pm in reply to: What is the use of Pattern Class in Salesforce ?A pattern is a compiled representation of a regular expression. Patterns are used by matchers to perform match operations on a character string.
-
Anuj
MemberOctober 15, 2020 at 2:44 pm in reply to: How to show toast message in Lightning Component in Salesforce?Hi,
you can refer the below link:
https://www.biswajeetsamal.com/blog/display-toast-message-in-lighting-component/ -
Anuj
MemberOctober 14, 2020 at 4:05 pm in reply to: How do I automatically log calls in Salesforce?Step 1: Log into Salesforce.com. Step 2: Select the lead or contact that you want to log a call for. Step 3: Once you are in the contact record, scroll down to the activity history list and select Log a Call. Step 4: You can then enter the subject as a reminder of what the call is about.
-
Anuj
MemberOctober 14, 2020 at 4:03 pm in reply to: How can we deploy code using Eclipse with Force.com IDE in Salesforce ?Follow the Below simple Steps to Deploy your code in Salesforce Production Environment by Using the Eclipse IDE Tool. First Select the Project /Component which you want to Deploy from eclipse to Salesforce Production Environment. Then Right Click on the Component--> Force.com --->Deploy to server.
-
Anuj
MemberOctober 14, 2020 at 4:00 pm in reply to: How many callouts to external service can be made in a single Apex transaction?A single Apex transaction can make a maximum of 100 callouts to an HTTP request or an API call.
-
Hi,
you can refer the below link:
https://www.dummies.com/business/customers/how-to-create-a-task-in-salesforce/ -
Anuj
MemberOctober 13, 2020 at 12:00 pm in reply to: How to navigate to other sObject in Salesforce?Hi,
you can refer the below link:
https://developer.salesforce.com/docs/component-library/bundle/force:navigateToSObject/documentation -
Hi,
You can refer the below link:
https://salesforce.stackexchange.com/questions/135685/activities-on-leads-opportunities-and-accounts-soql -
Anuj
MemberOctober 12, 2020 at 12:36 pm in reply to: How can we update Custom Setting in Salesforce?You can Retrieve custom setting records using either CustomSetting__c.get('value') or [SELECT id FROM CustomSetting__c WHERE name = 'value'];
Once retrieved you can update the setting by using the 'update' keyword as you would with any other object. -
Anuj
MemberOctober 12, 2020 at 12:29 pm in reply to: List custom setting and Hierarchy custom setting in Salesforce?You can refer the below link:
https://salesforcecodex.com/2018/11/list-custom-settings-vs-hierarchy-custom-settings-in-salesforce/
- This reply was modified 4 years, 1 month ago by Anuj.