Wednesday, September 5, 2018

Salesforce Report List Using XML Format

Salesforce Report List Using XML Format


Generate Salesforce Reports as a XML format using the below way:
  1. Login to your salesforce ORG using your credentails
  2. Replease the URL after your salesforce domain  like "servlet/servlet.ReportList/"
https://theblogreader-developer-edition.my.salesforce.com/servlet/servlet.ReportList/
here https://theblogreader-developer-edition.my.salesforce.com/ -> domain 

Difference Between Managed Packages and Unmanaged Packages in Salesforce

Difference Between Managed Packages and Unmanaged Packages in Salesforce



Its based on three attributes:
  1. Customization
  2. Upgrades
  3. Org Limits









Attribute        Managed PackagesUnmanaged Packages
Customization You can’t view or change the offering’s code or metadata like Apex Class, Trigger, VF Page & Lightning Component, etc.You can customize code and metadata, if desired.
Upgrades The provider can automatically upgrade the offering.To receive an upgrade message, you must uninstall the package from your org and then reinstall a new version from AppExchange.
Org limits The contents of the package don’t count against the app, tab, and object limits in your org.The contents of the package count against the app, tab, and object limits in your org.

Sunday, September 2, 2018

Difference types of Record level access in salesforce

Difference types of Record level access in salesforce



There are four types of record level access in salesforce


  1. Org-wide defaults
  2. Role hierarchies
  3. Sharing rules
  4. Manual sharing

Salesforce Trailhead Challenge: Create a validation rule to check that a contact is in the zip code of its account

Salesforce Trailhead Challenge: Create a validation rule to check that a contact is in the zip code of its account




Error Condition Formula:

AND (
NOT(ISBLANK( AccountId )),
MailingPostalCode <> Account.ShippingPostalCode

)