Anjali
IndividualForum Replies Created
-
Anjali
MemberFebruary 3, 2021 at 1:49 pm in reply to: Is it possible to apply DML in beforeUpdate trigger in Salesforce?We can use DML in before trigger but for different sobject, it depends upon your logic, if performed on same sobject then it will cause problem of recursion.
-
Anjali
MemberFebruary 3, 2021 at 1:47 pm in reply to: How to convert sObject to account in Salesforce?You can assign particular type object to generic for e.g
sObject s = new Account();
But You can't assign Generic type Object to Particular(Account) Object For e.g
Account a =s; This will give error so you need to type Cast this to
Account a=(Account)s; -
Anjali
MemberJanuary 27, 2021 at 2:37 pm in reply to: What is serialize and deserialize in Apex Salesforce?Serialization means to convert an object into that string, and deserialization is its inverse operation.
-
Anjali
MemberJanuary 27, 2021 at 2:36 pm in reply to: What is the use of isSet() methods in Apex Salesforce?Returns true if the sObject field is populated, either by direct assignment or by inclusion in a SOQL query. Returns false if the sObject field is not set.
-
Anjali
MemberJanuary 21, 2021 at 2:12 pm in reply to: How to change a map into sObject in Salesforce Apex?Please refer the below link-
https://salesforce.stackexchange.com/questions/241250/dynamically-cast-mapstring-sobject-to-specific-sobject -
Anjali
MemberJanuary 18, 2021 at 2:31 pm in reply to: How to convert a file into binary format in Salesforce?Please refer the below link-
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_methods_system_blob.htm -
By querying versionData of contentVersion corresponing to the contentDocumentId, you can get the file body. It is in base64 format, so it needs to be converted to know the actual file body.
-
Anjali
MemberJanuary 13, 2021 at 12:14 pm in reply to: Is it possible to delete name space in Salesforce?Once a namespace prefix is created, it cannot be changed or deleted. The workaround is to move all your code to a new Developer Organization, where you can setup the desired Namespace Prefix.
-
Anjali
MemberJanuary 13, 2021 at 12:12 pm in reply to: What is the of Schedule object in Salesforce?A quantity schedule determines when a product is delivered. A revenue schedule determines when a product is paid for. A default schedule is associated with a specific product in a specific price book. Every time the product is added to an opportunity, the default schedule is used.
-
Anjali
MemberJanuary 13, 2021 at 12:11 pm in reply to: How to assign setto list in Apex Salesforce?Please refer the below link-
https://www.brcline.com/blog/apex-converting-lists-sets-sets-lists -
Anjali
MemberJanuary 11, 2021 at 1:53 pm in reply to: Any Help How to achieve this on SFDC Record Types?As per my knowledge, you can proceed with using Formula field on Employee object, which will calculate the incentive amount for daily wage worker type and populate it on that field.
-
-
Anjali
MemberJanuary 7, 2021 at 1:27 pm in reply to: How do I push sObject field records in LWC js? -
Anjali
MemberJanuary 7, 2021 at 1:26 pm in reply to: How to create expand/collapse sections in LWC?Please refer the below link-
https://developer.salesforce.com/forums/?id=9062I000000Xn3DQAS -
Anjali
MemberJanuary 6, 2021 at 12:46 pm in reply to: How do I get the description of the selected value in LWC Combobox? -
Please refer the below link-
https://developer.salesforce.com/docs/component-library/bundle/lightning-combobox/example -
Anjali
MemberJanuary 5, 2021 at 1:57 pm in reply to: How to enable the call recording of ringCentral in Salesforce?- Login to your Salesforce account.
- Select Task Page Layouts under Activities.
- Drag the Call Recording field on your Task Layout.
- Click Save.
-
We can use different tags in LWC to use their respective functionality in salesforce.
-
RingCentral for Salesforce lets you make and receive calls directly from your Salesforce account. You can now schedule RingCentral Video meetings, in addition to quickly assigning call dispositions, logging calls, taking notes and more, without jumping back and forth between applications.
-
Anjali
MemberJanuary 4, 2021 at 12:54 pm in reply to: get Year only from input field type="date" in lightning component controllerPlease refer the below link-
https://www.infallibletechie.com/2019/06/lightning-input-typedate-formatting.html -
Anjali
MemberJanuary 4, 2021 at 12:52 pm in reply to: What was the original name of Salesforce Lightning Design System?Adoption of Landmark grows, and Salesforce CEO and founder Marc Benioff embraces its potential, renaming it Salesforce Lightning Design System (SLDS). In early 2016, the SLDS CSS framework is added to the core Salesforce code.
-
Anjali
MemberDecember 31, 2020 at 10:50 am in reply to: How do I fetch picklist values based on recordtypeId in LWC?In Lwc we can get values based on recordtype name as well. By importing getPicklistValues or getPicklistValuesByRecordType from "lightning/uiObjectInfoApi" we can get picklist values in LWC JavaScript. recordTypeId is required parameter for both of these functions.
-
Anjali
MemberDecember 31, 2020 at 10:47 am in reply to: How to add lightning spinner until the elements are loaded on the UI? -
Anjali
MemberDecember 30, 2020 at 10:29 am in reply to: How do I fix 'cannot assign to read-only property error' in LWC?Fix Cannot Assign To Read Only Property Error In LWC In Lightning web components. If we are trying to update public (@api) property or wired property in JavaScript function we usually get this issue. For resolving this issue, we need to clone that property to new variable and update it.
-
Anjali
MemberDecember 30, 2020 at 10:28 am in reply to: How do I pass value from child to parent component in LWC?Please refer the below link-
https://www.salesforcepoint.com/2020/08/Pass-Values-From-Child-LWC-To-Parent-LWC-Event.html