Marziya Sarwar
IndividualForum Replies Created
-
The implementation strategy is chosen: supporting the existing business processes with Salesforce, tailoring your business processes to Salesforce as a source of best practices or redesigning the business processes and then mapping them to Salesforce.
-
Marziya
MemberJune 16, 2020 at 2:42 pm in reply to: What is Content Distribution in Files in Salesforce?Represents information about sharing a document externally.
-
Marziya
MemberJune 16, 2020 at 2:40 pm in reply to: What is @media CSS property in lighting Style ?The @media rule is used in media queries to apply different styles for different media types/devices. Media queries can be used to check many things, such as: width and height of the viewport. width and height of the device.
-
Marziya
MemberJune 15, 2020 at 2:09 pm in reply to: How many field dependencies we can use in the Visualforce page?hii shweta,
10 field dependencies you can use. -
Marziya
MemberJune 15, 2020 at 2:07 pm in reply to: What is ContentDocumentLink in Files in Salesforce?ContentDocumentLink. Represents the link between a Salesforce CRM Content document or Salesforce file and where it's shared. A file can be shared with other users, groups, records, and Salesforce CRM Content libraries.
-
Marziya
MemberJune 15, 2020 at 2:06 pm in reply to: What is diff b/w custom object and custom setting in salesforce?A custom setting is very similar to a custom object, the main difference is that the custom setting is cached. It is especially useful to store information that will be often accessed from Apex code as it will perform better than a custom object as it doesn't have to be queried, it is also easier to manage it.
-
Marziya
MemberJune 12, 2020 at 1:48 pm in reply to: How to insert files through code in Salesforce?Create Apex Class. This is the core program to upload the file to Salesforce and attached to the parent record. ...
1..Create Apex Text Class. ...
2..Create Visualforce Page. ...
3..Create Custom Button or Link. ...
4..Add Custom Button or Link to Page Layout. ...
5..Add Apex Class and Visualforce Page to user profile -
ContentVersion - Represents a specific version of a document in Salesforce CRM Content or Salesforce Files. The maximum number of versions that can be published in a 24-hour period is 200,000.
-
Marziya
MemberJune 12, 2020 at 1:44 pm in reply to: How to pass record id from VF page to lightning component in Salesforce?Hii Anuj,
You can use following code format:-
var recordId = '{!customObject__c.id}';
$Lightning.use("c:customObjectEditApp", function() {
// Attributes are passed to the new component as a name/value hash
var attributes = {
recordId: recordId
};
var targetElementId = 'customObjectEdit';
// Create the component with the supplied attributes
$Lightning.createComponent('c:customObjectEdit', attributes, targetElementId, function(cmp) {
// At this point the component has been created and loaded
});
}); -
Marziya
MemberJune 11, 2020 at 1:18 pm in reply to: What is the difference between Wave analytics vs Wave cloudSalesforce Wave Analytics, also called Analytics Cloud, is a business intelligence (BI) platform from Salesforce.com that is optimized for mobile access and data visualization.
-
Marziya
MemberJune 11, 2020 at 1:17 pm in reply to: What is the difference between Wave analytics vs Wave cloudSalesforce Einstein Analytics or Einstein Analytics (Wave) is the name of the technology powered by AI. Analytics cloud simply refers to the platform for connecting data from multiple sources and creating interactive views of that data, which is powered by Einstein, or again, Wave or Einstein analytics.
-
Marziya
MemberJune 11, 2020 at 1:14 pm in reply to: Why are insights in the Unrelated category important in Salesforce?You quickly realize the power of the Unrelated section. It gives you deeper information about why something happened. In other words, it gives you more power to credit (or give constructive feedback to) the right people.
-
Marziya
MemberJune 10, 2020 at 2:32 pm in reply to: How to use System.abort in Batch Class in Salesforce?[ SELECT ID FROM CRONTRIGGER]; Then you need to abort each job using System. abortJob(<jobId>); function. So using the above script you can abort the scheduled job in Salesforce using Apex.
-
Following are the list of global value providers:---
1..$globalID: returns globalId of a component.
2..$Browser : returns information about hardware and operating system.
3..$Label : allows to access labels outside your code.
4..$Locale : returns information about user's preferred locale. -
Marziya
MemberJune 10, 2020 at 2:06 pm in reply to: What is the difference between custom app and console app in Salesforce?Hii Ratnesh,
Custom App::-- It is a public-facing website and customized to solve a specific business problem. It requires Visual Force, Apex, and Javascript skills.It solves complex business problems
Console App::-- It is built from the Salesforce Panel and sits on top of the Salesforce Panel and uses Salesforce UI -
Marziya
MemberJune 9, 2020 at 2:24 pm in reply to: How does a Post-installation script Work in Salesforce?A post install script is an Apex class that implements the InstallHandler interface. This interface has a single method called onInstall that specifies the actions to be performed on installation. The onInstall method takes a context object as its argument, which provides the following information.
-
Marziya
MemberJune 9, 2020 at 2:23 pm in reply to: How to make quick lightning action in Salesforce?QuickAction creation
Click on Setup.
Enter Global Actions in the Quick Find and select Global Actions.
Click New Action.
Leave the Action Type as Create a Record. ...
In the Label field, enter Waypoint . ...
Click Save.
In the next Action Layout screen, leave Waypoint Name as the only field in the layout. -
Marziya
MemberJune 9, 2020 at 2:21 pm in reply to: How to fix this "No such column 'IsPortalEnabled' on entity user" in Salesforce?Hi Shweta,
This field "IsPortalEnabled" is only available if partner relationship management (partner portal) or Customer Portal is enabled, OR if Communities is enabled and you have partner portal, Customer Portal, or High-Volume Portal User licenses. -
To monitor or stop the execution of the batch Apex job, from Setup, enter Apex Jobs in the Quick Find box, then select Apex Jobs.
-
CronTrigger. Contains schedule information for a scheduled job.
-
Marziya
MemberJune 8, 2020 at 2:05 pm in reply to: How many relationships included in SFDC & What are they?There will be upto total 25 relationships used.
-
Marziya
MemberJune 5, 2020 at 2:37 pm in reply to: What is the difference between LiveMessage and Digital Engagement Messaging?Digital Engagement:--Digital Engagement Pricing. Reach customers across every digital channel — including mobile messaging, web chat, social networks, and more — to provide a seamless service experience all on the #1 platform for service.
LiveMessage---Salesforce LiveMessage is a mobile messaging solution to provide personalized conversational service to your customers with the use of bots or agents. ... Salesforce LiveMessage is part of the Salesforce Service Cloud suite which you can include as an add-on on its Lightning Enterprise and Lightning Unlimited Editions. -
Marziya
MemberJune 5, 2020 at 2:36 pm in reply to: How to check a String is null or empty or blank using Apex in Salesforce?A)IsBlank – It Returns true if the specified String is white space, empty (”) or null, otherwise it returns false.
B)IsNotBlank – It Returns true if the specified String is not white space, not empty (”) and not null, otherwise it returns false. -
Marziya
MemberJune 5, 2020 at 2:32 pm in reply to: How to create a date picker in the Visualforce page?hii Shweta,
1st. You have to simply use apex:inputfield and bind the field with date type field and it will automatically take the Sales force Calander.Given example
<apex:page standardcontroller=’Account’>
<apex:form>
<apex:inputfield value=”{!Account.DateTypeField}”
</apex:form>
</apex:page>
Please go through this link https://developer.salesforce.com/forums/?id=906F000000097bvIAA- This reply was modified 4 years, 5 months ago by Marziya.
-
To create a component event in salesforce, navigate File -> New -> Lightning Event in developerconsole. Name the event, enter the description and click submit to create lightning event. The attribute type is the one that will differentiate Component event from Application event. The events can be fired from controller.