Forcetalks | Ravi | Activity https://www.forcetalks.com/ravikant/activity/ Activity feed for Ravi. Wed, 04 Feb 2026 10:30:55 +0530 https://buddypress.org/?v=2.16.0 en-US 30 hourly 2 6da3913b68ce8b1bf76170af460fd3a8 Ravi replied to the discussion How to swap 2 different component views in Salesforce Lightning? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-swap-2-different-component-views-in-lightning/#post-16901 Fri, 04 Nov 2016 13:59:57 +0530 Reply to How to swap 2 different component views in Salesforce Lightning?

You can do this using lightning event.Lightning event is best way communicate between two components.

You need to follow these steps for these type of scenario:

  1. Create a main component which will be use as container for two components.
  2. Let suppose you want to swap from component A to component B.First create view for component A in…

Read more

]]>
82534aa375c6e3247c44b8f9b4ec7b78 Ravi replied to the discussion How to attach file using Salesforce Lightning for Salesforce1? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-attach-file-using-lightning-for-salesforce1/#post-16898 Fri, 04 Nov 2016 13:43:13 +0530 Reply to How to attach file using Salesforce Lightning for Salesforce1?

Hi Tanu,

You can do this using base64 encoding . You have to follow these steps.

1.Use JavaScript's FileReader's readAsDataURL to read the file selected by the file input into a String variable.
2.Encode the contents using JavaScript's encodeURIComponent function.
3.Call the @AuraEnabled action with the contents, content type, and the Id of… Read more

]]>
2c3f9e0561773f17163cc0e95ffcadd3 Ravi replied to the discussion How can I use this keyword in Salesforce? What's the main advantage of using it? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-i-use-this-keyword-in-salesforce-whats-the-main-advantage-of-using-it/#post-15916 Wed, 07 Sep 2016 16:43:16 +0530 Reply to How can I use this keyword in Salesforce? What's the main advantage of using it?

This keyword used to represent the current instance of the class.We use This keyword to differentiate between class instance variable and local variable.

Example:

public class ThisKeywordDemo{
String str = 'DefaultValue';
public  ThisKeywordDemo(String str){
System.debug('--local Value--'+str);
System.debug('--Current Instance…

Read more

]]>
23ae9c6ea88fdfa900b4966768a7fe5d Ravi replied to the discussion How can I use this keyword in Salesforce? What's the main advantage of using it? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-i-use-this-keyword-in-salesforce-whats-the-main-advantage-of-using-it/#post-15916 Wed, 07 Sep 2016 16:43:16 +0530 Reply to How can I use this keyword in Salesforce? What's the main advantage of using it?

This keyword used to represent the current instance of the class.We use This keyword to differentiate between class instance variable and local variable.

Example:

public class ThisKeywordDemo{
String str = 'DefaultValue';
public  ThisKeywordDemo(String str){
System.debug('--local Value--'+str);
System.debug('--Current Instance…

Read more

]]>
bf34ebd90a548899c992853c8253de42 Ravi replied to the discussion How can we extract all the sobject data in excel from Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-we-extract-all-the-sobject-data-in-excel-from-salesforce/#post-15053 Tue, 09 Aug 2016 08:10:32 +0530 Reply to How can we extract all the sobject data in excel from Salesforce?

You can use Data Loader to export all sobject record from salesforce to your local system and access it by excel .

]]>
ad97d9bda5e9428cc58b900d94772376 Ravi replied to the discussion How to Prevent user from editing a record if field contains specific value? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-prevent-user-from-editing-a-record-if-field-contains-specific-value/#post-15052 Tue, 09 Aug 2016 08:08:07 +0530 Reply to How to Prevent user from editing a record if field contains specific value?

You can create a  validation rule on your object for specific field value.

You can also create a trigger for this but validation rule is much easier.

]]>
da512442905c16017353c865f4fedae7 Ravi replied to the discussion How can we add the inline Visualforce page in the standard related List? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-we-add-the-inline-visualforce-page-in-the-standard-related-list/#post-15051 Tue, 09 Aug 2016 08:04:06 +0530 Reply to How can we add the inline Visualforce page in the standard related List?

You can't add Visualforce page in the standard related List.

Can you explain your situation why you need to add inline vf page  in related list?

]]>
94cfc39b3a62a6a3ff9d0582aa3bafd9 Ravi replied to the discussion How can we find the unused method in apex class? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-we-find-the-unused-method-in-apex-class/#post-15049 Tue, 09 Aug 2016 07:57:02 +0530 Reply to How can we find the unused method in apex class?

Here what I do when I need to find out unused method ,classes or any other component  in my org.

I am assuming that you are using eclipse for your development and you have created  project for your org.

Go ahead and press Ctrl + H ; it will open a popup , type the component you want to search(method).

It will show where your components are… Read more

]]>
278d3e432ef2dad67515d3d8e9dafd8a Ravi replied to the discussion How can we find the unused method in apex class? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-we-find-the-unused-method-in-apex-class/#post-15049 Tue, 09 Aug 2016 07:57:02 +0530 Reply to How can we find the unused method in apex class?

Here what I do when I need to fiend out unused method ,classes or any other component  in my org.

I am assuming that you are using eclipse for your development and you have created  project for your org.

Go ahead and press Ctrl + H ; it will open a popup , type the component you want to search(method).

It will show where your components are… Read more

]]>
f62d80a4523e38f72838b35c55a82865 Ravi replied to the discussion Account records do not match in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/account-records-do-not-match/#post-15029 Sat, 06 Aug 2016 09:53:49 +0530 Reply to Account records do not match

Hi Bruce,

I think you are exporting data By selecting Export option which exclude recycle bin's data(deleted record).
If you want to export all data including deleted record then you should use Export All option.
So try to export record using Export All option and let me know if you are still getting different number of
records… Read more

]]>
2041fc6ad25e6f38b0a761d5775afef5 Ravi replied to the discussion How can we check in there is some data or not? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-we-check-in-there-is-some-data-or-not/#post-14938 Thu, 04 Aug 2016 02:31:08 +0530 Reply to How can we check in there is some data or not?

If you are doing this in Apex class then just use if condition to check field value.

`If(Sobject.field == 'fieldValue'){
}

]]>
7530588c28ff26fa832ec189607ea7ad Ravi replied to the discussion How can we check in there is some data or not? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-we-check-in-there-is-some-data-or-not/#post-14938 Thu, 04 Aug 2016 02:31:08 +0530 Reply to How can we check in there is some data or not?

If you are doing this in Apex class then just use if condition to check field value.

[[code]]czo0ODpcIklmKHNvYmplY3QuZmllbGQgPT0gXFwmIzAzOTtmaWVsZHZhbHVlXFwmIzAzOTspewp9XCI7e1smKiZdfQ==[[/code]]

]]>
2549b6faf0c964134a374e9d24653527 Ravi posted a new post. https://www.forcetalks.com/?p=14885 Wed, 03 Aug 2016 06:32:47 +0530
Automate Salesforce Data Import/Export Using Data Loader CLI

One of the key facets of Salesforce is import and export data from salesforce. Data loader is a great tool provided by Salesforce to achieve…

]]>
e617dc97b968bc183c3c4041eb13d0c6 Ravi replied to the discussion Can we insert the accountId in Community User? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-we-insert-the-accountid-in-community-user/#post-14809 Fri, 29 Jul 2016 07:00:39 +0530 Reply to Can we insert the accountId in Community User?

AccountId field is not writable for user you can link account through contact.

here is the sample code this  might  help you .

Id p = [select id from profile where name='Partner Community User'].id;

Account ac = new Account(name ='Grazitti') ;
insert ac;

Contact con = new Contact(LastName… Read more

]]>
a2810922a4bc91ee1cc7441f11e292f5 Ravi replied to the discussion Can we insert the accountId in Community User? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-we-insert-the-accountid-in-community-user/#post-14809 Fri, 29 Jul 2016 07:00:39 +0530 Reply to Can we insert the accountId in Community User?

AccountId field is not writable for user you can link account through contact.

here is the sample code this  might  help you… Read more

]]>
64a6317675c631fb0f7c2bc283488474 Ravi replied to the discussion Can we insert the accountId in Community User? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-we-insert-the-accountid-in-community-user/#post-14809 Fri, 29 Jul 2016 07:00:39 +0530 Reply to Can we insert the accountId in Community User?

AccountId field is not writable for user you can link account through contact.

here is the sample code this  might  help you .


Id p = [select id from profile where name='Partner Community User'].id;

Account ac = new Account(name ='Grazitti') ;
insert ac;

Contact con = new Contact(LastName ='testCon',AccountId = ac.Id);
insert con;

User… Read more

]]>
236fb191a9d2b3e9b23466b84c83d6f3 Ravi replied to the discussion Can we insert the accountId in Community User? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-we-insert-the-accountid-in-community-user/#post-14809 Fri, 29 Jul 2016 07:00:39 +0530 Reply to Can we insert the accountId in Community User?

AccountId field is not writable for user you can link account through contact.

here is the sample code this  might  help you .

Id p = [select id from profile where name='Partner Community User'].id;

Account ac = new Account(name ='Grazitti') ;
insert ac;

Contact con = new Contact(LastName ='testCon',AccountId = ac.Id);
insert con;

User user… Read more

]]>
236fb191a9d2b3e9b23466b84c83d6f3 Ravi replied to the discussion Can we insert the accountId in Community User? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-we-insert-the-accountid-in-community-user/#post-14809 Fri, 29 Jul 2016 07:00:39 +0530 Reply to Can we insert the accountId in Community User?

AccountId field is not writable for user you can link account through contact.

here is the sample code this  might  help you .

Id p = [select id from profile where name='Partner Community User'].id;

Account ac = new Account(name ='Grazitti') ;
insert ac;

Contact con = new Contact(LastName ='testCon',AccountId = ac.Id);
insert con;

User user… Read more

]]>
b2dbfcf4cb3bc6e5e3505ee77cd8a23f Ravi replied to the discussion How to pass List as a parameter to script? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-pass-list-as-a-parameter-to-script/#post-14808 Thu, 28 Jul 2016 20:03:38 +0530 Reply to How to pass List as a parameter to script?

Hi pranav,

If you are using list of a sobject as getter ,setter in your controller then you can use it directly to your script.

like

var objectLis =  {!objectList};

Second option is:

1) Create the required list in the Apex Controller

2) Create a Array in the JavaScript on the Page

3) Use the repeat tag to populate this javascript.

4)… Read more

]]>
c85a245d59bd11009d1a76276ed8c69a Ravi replied to the discussion Is there any way to create the dynamic query on the custom setting. How? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-there-any-way-to-create-the-dynamic-query-on-the-custom-setting-how/#post-14805 Thu, 28 Jul 2016 14:24:20 +0530 Reply to Is there any way to create the dynamic query on the custom setting. How?

Yes you can create dynamic query on custom setting .

public List getCustomSettingList(String customSettingName,List<string> FieldList){
if(FieldList.size()==0)
return null;
String soqlQuery = 'SELECT ';
for(String field:FieldList){
soqlQuery+=field;
}
soqlQuery+' FROM '+customSettingName;
return Database.query(soqlQuery);
}

]]>
5302bc5d02b12f79117aab099d04f48b Ravi replied to the discussion Is it possible to get all contacts that are available in org using salesforce API? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-it-possible-to-get-all-contacts-that-are-available-in-org-using-salesforce-api/#post-14804 Thu, 28 Jul 2016 14:08:33 +0530 Reply to Is it possible to get all contacts that are available in org using salesforce API?

Hi Pranav,

Yes, you can retrieve all contacts record from your org using salesforce RESTor SOAPApi.
You can also use salesforce BULK Api if your org has large number of records.
You can use salesforce workbench to test Rest Api.

]]>
f395d61dd14c3af130e1a76754abc63a Ravi replied to the discussion How to grant permission to user through apex code? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-grant-permission-to-user-through-apex-code/#post-14778 Thu, 28 Jul 2016 09:51:36 +0530 Reply to How to grant permission to user through apex code?

Hi Pranav,
You can grant Admin permission to user by enforcing sharing rule (Without sharing)to your Apex class.
public without sharing YourClassName{
//Your apex code
}

]]>
439fe01257362d8231fd0eafddc0d850 Ravi replied to the discussion In what condition we apply the soql query in test class? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/in-what-condition-we-apply-the-soql-query-in-test-class/#post-14775 Thu, 28 Jul 2016 08:02:02 +0530 Reply to In what condition we apply the soql query in test class?

Hi Mohit,
First scenario where we use SOQL query is to retrive some organization data from salesforce database. In this case you have to make your test class all data visible using (SeeAllData = true). But using this is not recommended since your yout test class may not work in other org.

// All test methods in this class can access… Read more

]]>
afaada47d5db98058c0eaf74c8adeb42 Ravi replied to the discussion How to cover test class for wrapper class in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-cover-the-test-class-for-wrapper-class/#post-14464 Wed, 20 Jul 2016 10:53:07 +0530 Reply to How to cover test class for wrapper class in Salesforce?

Hi Mohit,

Here is an Example that will explain how to write unit test for wrapper class.

Controller:

public with sharing class WrapperController {
public class WrapperClass {
public String name {get; set;}
}
}

Test Class:

@isTest
private class TestWrapperController {
public static void myUnitTest(){
WrapperController .WrapperClass wrapper=…

Read more

]]>
0702256a86bb94c36f2faf886daa696f Ravi replied to the discussion How to reRender from child vf page to parent vf page? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-rerender-from-child-vf-page-to-parent-vf-page/#post-14463 Wed, 20 Jul 2016 10:30:51 +0530 Reply to How to reRender from child vf page to parent vf page?

  1. add a function in your parent page that executes window.parent.location=

    function refreshParent(){
window.parent.location.href="/{!$CurrentPage.parameters.id}";
}

2. In the child execute:

window.opener.refreshParent();

]]>
69256c7f93d745cf154c4d41950360a0 Ravi replied to the discussion How to call two or more methods on a single click? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-call-two-or-more-methods-on-a-single-click/#post-14460 Wed, 20 Jul 2016 10:04:53 +0530 Reply to How to call two or more methods on a single click?

Hi Tanu,

  • Add semi-colons ; to the end of the function calls in order for them(multiple function) to work.

<input id="btn" type="button" value="click" onclick="fun1(); fun2();"/>

  • You can create a single function that calls both of those, and then use it in the event.

function myFunction(){
fun1();
fun2();
}

<input id="btn"…

Read more

]]>
07f7f502e781ec043fe40b7aa8fa9237 Ravi replied to the discussion Need to convert XML to JSON format in SALESFORCE in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/need-to-convert-xml-to-json-format-in-salesforce/#post-14386 Mon, 18 Jul 2016 08:55:38 +0530 Reply to Need to convert XML to JSON format in SALESFORCE

There is no standard way of converting XML to JSON. You can use  third party tools to convert xml to Json and viceversa.

http://www.utilities-online.info/xmltojson/#.V4yZNbh97IU

]]>
ca036fa1d27f7a01716a879139ff39ef Ravi replied to the discussion Function not returning value.please see the code? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/function-not-returning-value-please-see-the-code/#post-14385 Mon, 18 Jul 2016 08:49:11 +0530 Reply to Function not returning value.please see the code?

Hi Tanu,

I don't think of  ISNUMBER() function in java script.

If you want to  check whether a value is Number use Javascript isNaN() function . This function will return false if a  It's a number.

var r = isNaN({!Contact.CustomField});
alert(r);

]]>
6d6c640b58b28f507117d996e07d71b8 Ravi replied to the discussion Can we fire triggers in batch execute methods? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-we-fire-triggers-in-batch-execute-methods/#post-14031 Tue, 12 Jul 2016 04:15:49 +0530 Reply to Can we fire triggers in batch execute methods?

Hi Tanu,

Only way to fire a trigger by doing some DML operation.You perform a DML operation on sObjects, and the trigger will automatically fire. If your batch apex is performing DML (insert, update, delete, undelete) and you have an active trigger in the system for one of those events, the trigger will fire.

]]>
35a1fc128918a149bcd5860ebd78687a Ravi replied to the discussion Can we fire triggers in batch execute methods? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-we-fire-triggers-in-batch-execute-methods/#post-14031 Tue, 12 Jul 2016 04:15:49 +0530 Reply to Can we fire triggers in batch execute methods?

Hi Tanu,

You fire a trigger by doing some DML operation.You perform a DML operation on sObjects, and the trigger will automatically fire. If your batch apex is performing DML (insert, update, delete, undelete) and you have an active trigger in the system for one of those events, the trigger will fire.

]]>
00d1e2da25334a877912266518260e5c Ravi started the discussion Restricting Input Text Field declared as Decimal from entering text values in the forum https://www.forcetalks.com/salesforce-topic/restricting-decimal-input/ Fri, 08 Jul 2016 10:29:39 +0530 Restricting Input Text Field declared as Decimal from entering text values

I have a input text field declared as Decimal and that text field should be restricted from entering text values.
So now when a text value is entered it is showing the Salesforce standard error "value cannot be converted from text to Decimal", I want to make it customized (showing my own error). Kindly assist.

]]>
66ce02d54a55519f4d075c52db553220 Ravi replied to the discussion How to know the mandatory fields in standard or custom objects? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-know-the-mandatory-fields-in-standard-or-custom-objects/#post-13913 Tue, 05 Jul 2016 08:40:01 +0530 Reply to How to know the mandatory fields in standard or custom objects?

In Apex you can check this by global describe :

Schema.DescribeSObjectResult r = User.sObjectType.getDescribe();
Map<String,Schema.SObjectField> M = r.fields.getMap();
for(String fieldName : M.keySet())
{
Schema.SObjectField field = M.get(fieldName);
Schema.DescribeFieldResult F = field.getDescribe();
//A nillable field can have…

Read more

]]>
fc9b88bb2ccb27f9f14bc708f509f4d3 Ravi replied to the discussion How to know the mandatory fields in standard or custom objects? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-know-the-mandatory-fields-in-standard-or-custom-objects/#post-13913 Tue, 05 Jul 2016 08:40:01 +0530 Reply to How to know the mandatory fields in standard or custom objects?

You can check this by global describe :

Schema.DescribeSObjectResult r = User.sObjectType.getDescribe();
Map<String,Schema.SObjectField> M = r.fields.getMap();
for(String fieldName : M.keySet())
{
Schema.SObjectField field = M.get(fieldName);
Schema.DescribeFieldResult F = field.getDescribe();
//A nillable field can have empty content.…

Read more

]]>
3ea97578d393aa642511fead29fe9002 Ravi replied to the discussion What is the formula syntax when making a checkbox True or False from values collected from a Text Field? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-formula-syntax-when-making-a-checkbox-true-or-false-from-values-collected-from-a-text-field/#post-13902 Mon, 04 Jul 2016 14:01:49 +0530 Reply to What is the formula syntax when making a checkbox True or False from values collected from a Text Field?

Hi Nick,

You can do  this using salesforce automation tool like  workflow and  Process builder. As per the above requirement you  have to create  multiple workflow rule for each field update(checkbox)  and same goes for process builder.

I think best way to achieve this to write a trigger on  Agent that will update your checkbox field by… Read more

]]>
ce073b446d849ef371e3455970d9fde6 Ravi replied to the discussion Difference between Standalone app , SPA and Salesforce 1 app in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/difference-between-standalone-app-spa-and-salesforce-1-app/#post-13899 Fri, 01 Jul 2016 10:10:22 +0530 Reply to Difference between Standalone app , SPA and Salesforce 1 app

Stand Alone Application

The standalone applications are the applications that can run only on the one system on which it is being installed. The application which being developed using c and c++ are the standalone application because do not form platform independency.

Web Application

A web application or web app is a client–server software… Read more

]]>
e08650b572fdee5bd4b67264f1fcb159 Ravi replied to the discussion Do anyone have any idea about mapping external Id in bulk API? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/do-anyone-have-any-idea-about-mapping-external-id-in-bulk-api/#post-13898 Fri, 01 Jul 2016 09:18:48 +0530 Reply to Do anyone have any idea about mapping external Id in bulk API?

Hi Surbhi,
If you are doing upsert operation through Api then you need to map externalId.
In bulk Api you can map externalId by definng externalIdFieldName during job creation.

<?xml version="1.0"…

Read more

]]>
2ae721903f9485b5ebf5a366d4dd6051 Ravi replied to the discussion Content Deliveries in SF1 in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/content-deliveries-in-sf1/#post-13588 Fri, 24 Jun 2016 14:39:51 +0530 Reply to Content Deliveries in SF1

Hi Prakhar,

It's look like currently this functionality is not supported by salesforce . You can create a new salesforce idea for this functionality. May be salesforce add this functionality in further release.

 

]]>
a99b5d9cbe6fdb6f20212f7075ed2781 Ravi replied to the discussion How do we export dashboard into a PDF report in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-do-we-export-dashboard-into-a-pdf-report/#post-13150 Fri, 17 Jun 2016 10:38:54 +0530 Reply to How do we export dashboard into a PDF report in Salesforce?

Hi Jay,

There is no standard functionality that will allow you to do this,but you can do this by doing some manual work:
1. First Create a visualforce page with renderAs = pdf.
2. Go to your dashboard panel and copy the image url.
3. Add the copied image url inside <img></imag> tag on visualforce page.

<apex:page…

Read more

]]>
8420011f8a05df3de9463525206e989d Ravi replied to the discussion How to split a string by comma and single quotation mark in apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-split-a-string-by-comma-and-single-quotation-mark-in-apex/#post-12225 Wed, 25 May 2016 06:45:08 +0530 Reply to How to split a string by comma and single quotation mark in apex?

Hi Himanshu,

Try with this

First remove all single quotes and then split by comma

String str = ''First Name','Last Name','Account Name','Email','Title','Description'';
System.debug('===str==='+str);
for(String strFinal: str.replace(''', '').split(','))
{
System.debug('===Final val==='+strFinal);
}

]]>
909a01d67ec0457ab65f2ea2e8e9b6f5 Ravi replied to the discussion How do I delete data from a large-volume custom Salesforce object in Sandbox? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-do-i-delete-data-from-a-large-volume-custom-object-in-sandbox/#post-12224 Wed, 25 May 2016 06:44:05 +0530 Reply to How do I delete data from a large-volume custom Salesforce object in Sandbox?

Hi Himanshu,

You can write a one time batch and execute it using anonymous window in dev console.

]]>
de5e98fbf3e3c782686da755546344f5 Ravi replied to the discussion Maximum number of collection items that can be iterated in an iteration component limit in Salesforce in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/maximum-number-of-collection-items-that-can-be-iterated-in-an-iteration-component-limit-in-salesforce/#post-12222 Wed, 25 May 2016 06:40:31 +0530 Reply to Maximum number of collection items that can be iterated in an iteration component limit in Salesforce

Hi Himanshu,

Maximum number of collection items that can be iterated in an iteration component such as <apex:pageBlockTable> and <apex:repeat> -- 1,0000

]]>
f81879b2318fc34ff7209837e7275ae3 Ravi replied to the discussion How to tell if a field is not supported in metadata API? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-tell-if-a-field-is-not-supported-in-metadata-api/#post-12221 Wed, 25 May 2016 06:35:32 +0530 Reply to How to tell if a field is not supported in metadata API?

Hi Himanshu,

You can validate before deployment. There is no way to get error before performing validation or deployment.

]]>
4f157d601c47dab6bb40a45eb408a190 Ravi replied to the discussion Chatter feeds not appearing correctly on Vf page in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/chatter-feeds-not-appearing-correctly-on-vf-page/#post-12219 Wed, 25 May 2016 06:32:33 +0530 Reply to Chatter feeds not appearing correctly on Vf page

Hi Himanshu,

Try this :

<apex:page sidebar="false" showHeader="false">

<chatter:newsfeed />

</apex:page>

If you are facing any specific problem then mention it in your question.

]]>
2302b3243a6bac269f6269a9b1a80b6c Ravi replied to the discussion Get creation date of metadata in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/get-creation-date-of-metadata/#post-12218 Wed, 25 May 2016 06:29:20 +0530 Reply to Get creation date of metadata

Hi Nitish,

You could also use Tooling API Objects to get the Created Date of metadata (not all but some supported ones).

For example, executing a sample query in query editor tab of developer console will be like this.

select DeveloperName, CreatedDate from CustomObject where CreatedDate < TODAY

]]>
e17b9acfc5fcfd0d4108536ab48f2db3 Ravi replied to the discussion What is the entitlement process in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/entitlement-process/#post-12217 Wed, 25 May 2016 06:28:01 +0530 Reply to What is the entitlement process in Salesforce?

Hi Naman,

Entitlement processes are timelines that include all the steps (or milestones) that your support team must complete to resolve support records like cases or work orders. Each process includes the logic necessary to determine how to enforce the correct service level for your customers

Entitlement process versioning lets you… Read more

]]>
43d630f5ab1aab4d56c35e3afeead24c Ravi started the discussion How to identify Bulk Data Load Jobs in the log files in the forum https://www.forcetalks.com/salesforce-topic/how-to-identify-bulk-data-load-jobs-in-the-log-files/ Sat, 30 Apr 2016 18:30:06 +0530 How to identify Bulk Data Load Jobs in the log files

How to identify Bulk Data Load Jobs in the log files?

]]>
43d630f5ab1aab4d56c35e3afeead24c Ravi started the discussion How to identify Bulk Data Load Jobs in the log files in the forum https://www.forcetalks.com/salesforce-topic/how-to-identify-bulk-data-load-jobs-in-the-log-files/ Sat, 30 Apr 2016 18:30:06 +0530 How to identify Bulk Data Load Jobs in the log files

How to identify Bulk Data Load Jobs in the log files?

]]>
43d630f5ab1aab4d56c35e3afeead24c Ravi started the discussion How to identify Bulk Data Load Jobs in the log files in the forum http://www.forcetalks.com/salesforce-topic/how-to-identify-bulk-data-load-jobs-in-the-log-files/ Sat, 30 Apr 2016 18:30:06 +0530 How to identify Bulk Data Load Jobs in the log files

How to identify Bulk Data Load Jobs in the log files?

]]>
045631d0e58489d2a152d3685f9ce8d9 Ravi started the discussion How to identify Bulk Data Load Jobs in the log files in the forum http://www.forcetalks.com/salesforce-topic/how-to-identify-bulk-data-load-jobs-in-the-log-files/ Sat, 30 Apr 2016 18:30:06 +0530 How to identify Bulk Data Load Jobs in the log files

How to identify Bulk Data Load Jobs in the log files

]]>
e1b7da334a2a298d2ff5600754a13488 Ravi started the discussion Is it possible to have different password policies for different users? in the forum https://www.forcetalks.com/salesforce-topic/is-it-possible-to-have-different-password-policies-for-different-users/ Sat, 30 Apr 2016 18:29:39 +0530 Is it possible to have different password policies for different users?

Is it possible to have different password policies for different users?

]]>