Marziya Sarwar
IndividualForum Replies Created
-
Marziya
MemberOctober 29, 2020 at 12:59 pm in reply to: How many records can a big object hold in Salesforce?Big object is the object in which we can store up to one billion records. We can archive large amount of historical data in Salesforce. When to use Big Object: If you have the large amount of data to be archived for the historical data.
-
yes
-
Marziya
MemberOctober 28, 2020 at 2:14 pm in reply to: query big objects if you're working with an extremely large set of data in Apex?The most efficient way is Async SOQL.
-
- Use POST method.
- Set the end point. Sandbox - https://test.salesforce.com/services/Soap/u/35.0. ...
- Set your headers as below. SOAPAction = "" ...
- Use the below as body. ...
- Get the SessionId.
- This reply was modified 4 years ago by Forcetalks.
- This reply was modified 4 years ago by Forcetalks.
-
Marziya
MemberOctober 23, 2020 at 2:25 pm in reply to: How do I change the Opportunity Kanban view in Salesforce?- Click the Opportunities tab.
- From the Opportunities picklist, select My Opportunities.
- Click the Display Options button. to open the display menu.
- Select Kanban. Note: You may have noticed the Record Types (B2B Opportunities & Uncategorized) are now listed above the Sales Path.
-
Marziya
MemberOctober 23, 2020 at 2:24 pm in reply to: What is meant by oAuth tokens in Salesforce?OAuth tokens are essentially permissions given to a client application.
-
Marziya
MemberOctober 23, 2020 at 2:21 pm in reply to: What happens when we convert a lead in Salesforce?When you convert leads, Salesforce creates accounts, contacts, and, opportunities using information from the leads you're converting. Salesforce moves any campaign members to the new contacts, and the leads become read-only records.
-
Marziya
MemberOctober 22, 2020 at 1:50 pm in reply to: Retrieve Permissions from one org using Ant migration in Salesforce?please refer this link https://help.salesforce.com/articleView?id=000320233&type=1&language=en_US&mode=1
-
Marziya
MemberOctober 22, 2020 at 1:49 pm in reply to: How to deploy Compact Layout in Salesforce using ANT tool?you can deploy using:
<?xml version="1.0" encoding="UTF-8"?><Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <members>Task.Compact_Layout_Name</members> <name>CompactLayout</name> </types> <types> <members>Task.RecordTypeName</members> <name>RecordType</name> </types> <types> <members>ProfileName</members> <name>Profile</name> </types> <version>36.0</version></Package> -
Marziya
MemberOctober 22, 2020 at 1:47 pm in reply to: How many ways we can migrate Data from one org to other in Salesforce?Please refer this link https://help.salesforce.com/articleView?id=000322219&language=en_US&type=1&mode=1
-
`//Data to encrypt`
`Blob data = Blob.valueOf(``'Biswajeet Samal'``);`
`//Generate an AES key for the encryption. `
`Blob cryptoValue = Crypto.generateAesKey(``256``);`
`//Encrypt the data`
`Blob encryptedData = Crypto.encryptWithManagedIV(``'AES256'``, cryptoValue, data);`
`//Decrypt the data - the first 16 bytes contain the initialization vector`
`Blob decryptedData = Crypto.decryptWithManagedIV(``'AES256'``, cryptoValue, encryptedData);`
`
` -
Marziya
MemberOctober 21, 2020 at 2:16 pm in reply to: Can we get two setCallbacks in one method in Lightning Component in Salesforce?just call helper methods and separate call back functions. always better to simplify components logic and separate components logic.
-
Marziya
MemberOctober 21, 2020 at 2:13 pm in reply to: How to get custom fields of standard object in Salesforce?- Navigate to the fields page for your object.
- Click the field label.
- To add custom help text, click Edit.
- On the field's information page, you can—depending on your Edition—set field-level security, view accessibility settings, and configure validation rules. You can also do more, depending on the field's type.
-
Marziya
MemberOctober 20, 2020 at 2:49 pm in reply to: Which cloud computing deployment model can extend and grow your infrastructurehybrid deployment
A hybrid deployment is a way to connect infrastructure and applications between cloud-based resources and on-premises systems. This type of model can extend and grow your infrastructure into the cloud while connecting to internal systems through secure network connections. -
Marziya
MemberOctober 20, 2020 at 2:48 pm in reply to: Which exception type Cannot be caught in Salesforce?System. LimitException
-
Use the System.RestContext class to access the RestRequest and RestResponse objects in your Apex REST methods.
- This reply was modified 4 years ago by Marziya.
-
Marziya
MemberOctober 19, 2020 at 4:43 pm in reply to: Is Lightning Components Replacing Visualforce?In my opinion, both the frameworks encompass some pros and cons associated with them. If you are developing for a Salesforce1 mobile app, you should prefer Lightning framework and if you want to create a page-centric experience with limited client-side logic, you must opt Visualforce framework.
-
Marziya
MemberOctober 19, 2020 at 4:42 pm in reply to: Is There Any Limit On How Many Components To Have In One Application?No limit.
-
From Setup, enter Actions in the Quick Find box, then select Global Actions | New Action. From Setup, on the Object Manager tab, select an object, then select Buttons, Links, and Actions | New Action.
-
These objects/methods are for accessing the Salesforce API using AJAX. Before Visualforce became available, this was the library you'd use from within s-Controls to access the API.
-
Marziya
MemberOctober 13, 2020 at 2:23 pm in reply to: How to provide multi columnsection for VisualForce pages in Salesforce Classic ?Please refer this page https://trailblazer.salesforce.com/apex/ideaView?id=08730000000Ycj6AAC
-
ClickDeploy is a simple to use, powerful devops/release management tool that will speed up your Salesforce projects by moving metadata across your Salesforce orgs.
-
Use the <samp>System.JSONParser</samp> methods to parse a response that's returned from a call to an external service that is in JSON format, such as a JSON-encoded response of a Web service callout.
-
Marziya
MemberOctober 12, 2020 at 2:00 pm in reply to: What are encrypted data field on a record in Salesforce?Encrypted Custom Fields are a new field type (released after winter 08) that allows users to store sensitive data in encrypted form and apply a mask when the data is displayed.
-
Marziya
MemberOctober 8, 2020 at 1:17 pm in reply to: What is a benefit of the API planning framework in Salesforce?This framework helps you determine the right API tool to use at the right time, which positions you to design a more scalable solution. User experience: What is the end user experience? What tools does a developer need? Objects and records.