Aditya
IndividualForum Replies Created
-
- Enter a SOQL query or SOSL search in the Query Editor panel.
- If you want to query tooling entities instead of data entities, select Use Tooling API.
- Click Execute. If the query generates errors, they are displayed at the bottom of the Query Editor panel. Your results display in the Query Results grid in the Developer Console workspace.
-
Salesforce provides a game-changing feature within its platform called Big Objects, which provides data storage that does not count against the storage limit. These objects archive and manage massive data volumes within Salesforce without affecting performances, all with a processing scale of billions of records.
-
Aditya
MemberOctober 21, 2020 at 12:57 pm in reply to: How to convert Schema.SObjectField into String in Salesforce?Account a = [SELECT Name FROM Account WHERE Name = 'Foo' LIMIT 1];String s = a.Name;// I can save it, but when I run the application I get another error.
// try --> String s =(String) a.Name;
String c = Account.Name;//second option I get the error "Illegal assignment from Schema.SObjectField to String".
// try --> String c = (String)Account.Name; -
Aditya
MemberOctober 20, 2020 at 12:46 pm in reply to: How to add 'view encrypted data' permission to a user in Salesforce?The default behavior is that System Administrator Profile cannot be given VIEW ENCRYPTED DATA access. To overcome this, create a new Permission Set with the VIEW ENCRYPTED DATA privilege and grant this permission set to the User. Having this permission will entitle the User to view the Encrypted data (irrespective of Sys Admin or no). By default, being System Administrator, User cannot see the Encrypted data.Note: As it is not marked as Solved yet, other can be benefited with this response. If this answers the question, please mark this as the Answer
-
Aditya
MemberOctober 20, 2020 at 12:30 pm in reply to: How to load custom object records from one sandbox org to another in Salesforce?It's necessary to setup and configure required metadata and users in your new or target org before beginning. You can migrate data by importing or inserting records from another Salesforce legacy source organization or other external source into a new target organization. It's important to import object data in a particular order to maintain record relationships.Record relationships are defined with Unique Record ID in Salesforce (and not record names) so you will need to match and replace old record Ids in your import files with the newly created data's record Ids from within your target org to properly prepare relational data for import.
-
Aditya
MemberOctober 20, 2020 at 12:26 pm in reply to: How to check object field which is value of another object field in Salesforce?- Click on SetUp (Gear Icon) and then click on the Object Manager.
- Click on the object you will be adding the Look Up field
- Select Fields & Relationships and then click the New.
- Select Lookup Relationship from the Data Type list and click Next.
- Select Contact from the Related To dropdown and click Next.
-
Aditya
MemberOctober 20, 2020 at 12:22 pm in reply to: What are the benefits of Lightning Web Components Over Aura Lightning Components- Standardized-based architecture, can build components for pages faster.
- Code reuse is supported for quicker deployments.
- Support unit testing for quality assurance.
- Access to more developer talent who can quickly use Lightning Web Components to create desired solutions.
-
Aditya
MemberOctober 20, 2020 at 12:22 pm in reply to: Why do you go for LWC instead of existing Aura Components?Easy to Learn: LWC is basically takes the form through native web standards that is in the browser. It means that no added abstraction layer like Aura Framework or any other framework, we only need standard JavaScript to develop.
-
Aditya
MemberOctober 13, 2020 at 7:09 pm in reply to: How to preview image in VisualForce pages in Salesforce?- <apex:image id="theImage" value="/img/myimage.gif" width="220" height="55" alt="Description of image here"/>
-
- Scroll down to the Activity History related list and click the Log a Call button. ...
- Fill out or modify any of the fields to log the call. ...
- If applicable, add another related task by filling out the fields below the Schedule Follow Up Task header.
-
<div>Try this query to count Id for any sObject:</div>Select count(Id) from Account // It will return the number of Id in the account.
-
Aditya
MemberOctober 7, 2020 at 8:18 pm in reply to: How to delete Accounts created in the last 7 days in Salesforce?Select id from TechM__c where CreatedDate <= 2016-11-15T00:00:00Z Select id from TechM__c where DAY_ONLY(CreatedDate) <= 2016-11-15Select id from TechM__c where CreatedDate <= YESTERDAY Select id from TechM__c where CreatedDate = TODAY
-
Aditya
MemberOctober 7, 2020 at 8:17 pm in reply to: What are the advantages of Salesforce using the SaaS platform?The benefits of SaaS
- Low setup and infrastructure costs.
- Accessible from anywhere.
- Scalability.
- Industry leading service level agreements (SLAS) for uptime and performance.
- Automatic, frequent updates.
- Security at the highest level required by any customer.
-
Aditya
MemberOctober 5, 2020 at 6:00 am in reply to: How do I enable service contracts in Salesforce?From the object management settings for service contracts, go to the fields section, and then click Set History Tracking. Make the Service Contracts tab visible in Salesforce and any custom apps. The Service Contracts tab is where users create and edit service contracts and contract line items.
-
Enable Entitlements in Salesforce CPQ
- From Setup, in the Quick Find box, enter Entitlement Settings , then select Entitlement Settings.
- Select Enable Entitlement Management. Salesforce CPQ shows the Entitlement Management Settings page.
- Select the entitlement features you want to activate or deactivate.
- Save your changes when you're finished.
-
Entitlements are units of customer support in Salesforce, such as “phone support” or “web support.” They're typically used to represent terms in service agreements. Milestones. Milestones represent required, time-dependent steps in your support process, like first response or case resolution times.
-
Aditya
MemberSeptember 30, 2020 at 7:05 pm in reply to: What is the use of outbound message in Salesforce?Outbound message is used to send a message to external web services or an application when the record is created or updated in the Salesforce. Outbound messages can be triggered by using Workflow, Approval process, and Entitlement process
-
Aditya
MemberSeptember 30, 2020 at 7:04 pm in reply to: How do I trigger an outbound message in Salesforce?To generate and then select the invoke Salesforce outbound messaging WSDL:
- Log in to your Salesforce account and go to Setup > Outbound Messages.
- Select the required object, and click Next.
- Enter other required details (in the Endpoint URL field, enter a dummy URL), and click Save.
-
Aditya
MemberSeptember 30, 2020 at 7:03 pm in reply to: How does outbound message work in Salesforce?Outbound messaging uses the notifications() call to send SOAP messages over HTTP(S) to a designated endpoint when triggered by a workflow rule. After you set up outbound messaging, when a triggering event occurs, a message is sent to the specified endpoint URL.
-
Aditya
MemberSeptember 28, 2020 at 3:21 pm in reply to: How do I check custom permissions in validation rule?Setup -> Manage Users -> Permission Sets -> New
Save. Click on Custom Permission Link to Add the Custom Permission into the Permission Set. Click Edit and Select the available custom permission then save it. Assign this permission set to the users whom you want to give the access for Editing the Opportunity -
Aditya
MemberSeptember 28, 2020 at 3:20 pm in reply to: How do I bypass the validation rule in process builder?- In your Process, in the immediate action block, first, use a record update for the concerned Opportunity record to set our Bypass field to TRUE.
- By setting the flag back to false, you are making a field update.
- Alternatively, you could add Opportunity.
-
Aditya
MemberSeptember 28, 2020 at 3:19 pm in reply to: How do I bypass workflow rules in Salesforce?Deactivating triggers and validation rules may be a solution if you don't have to do that every day.A best alternative is to include that in your business logic having an hidden checkbox you set to TRUE when you want to bypass the triggers, validation rules and workflow.Then, you have to ckeck the value of this field for every component you want to allow the bypass
-
Aditya
MemberSeptember 28, 2020 at 5:53 am in reply to: How can we access leads directly from facebook in salesforce ?Sync all your Facebook leads to Salesforce automatically. No more manual import/export of leads. Map all the lead data instantly to the respective fields in Salesforce. Connect Facebook Lead Ads and Salesforce to help your sales team to follow-up with the leads immediately.
-
Aditya
MemberSeptember 28, 2020 at 5:51 am in reply to: How to remove Products from the PriceBook in Salesforce?- Deactivate it by editing it and then deselecting the Active field. ...
- Remove the related product or price book from all opportunities and quotes. ...
- Archive the product or price book and each related price book entry.
-
Aditya
MemberSeptember 28, 2020 at 5:50 am in reply to: How do I remove the PriceBook in Salesforce?To remove price books from related lists, you can archive, deactivate, or delete the price books. Each removal option has a different result. Before you remove a price book from your related lists, determine which option best fits your business needs.