How to read pdf file in salesforce

Select the Applications panel. From the content type list, select Portable Document Format (PDF). Click the drop-down arrow in the Action column for the above entry, and select Use PDF reader name (in Firefox). You have to create a custom file upload component to upload a file while uploading the file you can read the … Read more

How to raise salesforce ticket

How to raise the ticket in sales force Go to the Help & Training Portal. Login using your Salesforce or Marketing Cloud credentials. Click Go on the “My Success Hub” tile. Click Support Cases. Find the ticket you want to clone. Click Clone. After you’ve updated the form, click Submit. Required Editions Log in to … Read more

How to raise salesforce case

How to raise the ticket in sales force. 1. Click on Help & Training from your Organization. 2. Under the “Contact Support” tile, click Create a Case. NOTE: If you don’t see the Contact Support tile, you need to login. 3. Go through the Help Finder and pick the Topic, Category and Solution that closest … Read more

How to raise case with salesforce

How to raise the ticket in sales force Click on Help & Training from your Organization. Under the “Contact Support” tile, click Create a Case. NOTE: If you don’t see the Contact Support tile, you need to… Go through the Help Finder and pick the Topic, Category and Solution that closest match your issue. If … Read more

How to raise a ticket in salesforce

How to raise the ticket in sales force Go to the Help & Training Portal. Login using your Salesforce or Marketing Cloud credentials. Click Go on the “My Success Hub” tile. Click Support Cases. Find the ticket you want to clone. Click Clone. After you’ve updated the form, click Submit. Required Editions Log in to … Read more

How to query validation rule in salesforce

We can fetch validation rule details only : SELECT Id, ValidationName, Active, Description, EntityDefinition.DeveloperName, ErrorDisplayField, ErrorMessage FROM ValidationRule https://developer.salesforce.com/docs/atlas.en-us.api_tooling.meta/api_tooling/tooling_api_objects_validationrule.htm Full Answer How to create custom formula in Salesforce? creating Formula field in Salesforce ? Go to Setup => Build => Create => Object => Select object => Custom Fields & Relationships => Click new => … Read more

How to query salesforce data

There are two ways to query data. The first way is the normal Salesforce API with sf.query, this method has a limit of 2000 records. The second way is the bulk API with sf.bulk.OBJECT.query . Note that with the bulk API you will need to define the object name in the method. Salesforce – Viewing … Read more

How to query queue members in salesforce

If you want to check if a user is a member of a specific Queue then you can use the following query and if it returns null then they are not a member of that queue. SELECT Group.Name FROM GroupMember WHERE UserOrGroupId = ‘YOUR-USER-ID’ AND Group.Type = ‘Queue’ AND Group.Name = ‘YOUR-QUEUE-NAME’ Share Improve this … Read more

How to query page layout in salesforce

We have to use Tooling API to get list of page layout for specific object. We can use ProfileLayout object like below SOQL for getting object’s page layout. string sql=’select Layout.Name from ProfileLayout where TableEnumOrId=’objectName”; Full Answer How to create a custom splash page in Salesforce? How to create Splash page in Salesforce? 1. Create … Read more