-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
7Questions
-
1Replies
Finding duplicates on the basis of First Name and Last Name
Hi, I want to get the list of all the duplicates in the SF on the basis of First Name and Last Name. I don't have that much time to go into the detail page of each and every record and find duplicates by clicking "Find Duplicates" button. Is this possible by any other way to just click a button and get all the list in one shot?
Thanks.
-
- Satish Ramanan
- February 18, 2013
- Like
- 0
- Continue reading or reply
Exporting random records from SFDC
Hi, I want to export some of my records from SFDC to external file. These records are actually the result of application of VLOOKUP function in the excel file. The number of records are around 2000. So can I achieve this?
Thanks.
-
- Satish Ramanan
- February 12, 2013
- Like
- 0
- Continue reading or reply
Finding the unimported records in the file
-
- Satish Ramanan
- February 06, 2013
- Like
- 0
- Continue reading or reply
Importing data in junction objects
-
- Satish Ramanan
- February 02, 2013
- Like
- 0
- Continue reading or reply
Automated Email not getting logged in Activity History
Hi, I have created one custom object named PPR Consumer. I have set a workflow email alert on it. Whenever a new record is created an email is sent to the email id specified in the Email field. This email alert is working fine. An email is coming to the mailbox. But it is not getting logged in the Activity History related list of that new record. Can anybody tell me why it is happening so? Thanks. |
-
- Satish Ramanan
- January 22, 2013
- Like
- 0
- Continue reading or reply
Not able to login to Force.com IDE
Hi, I am not able to login to force.com com ide for my Sandbox org. I am able to login into my sandbox through browser with same credentials. Tried to login by resetting my security token also. But still couldnt get it.
The error getting shown is,
Unable to connect to hostname 'test.salesforce.com'
Inavlid username, password, security token; or user locked out.
Please verify and/or change your credentials.
-
- Satish Ramanan
- January 21, 2013
- Like
- 0
- Continue reading or reply
Regarding triggers
Hi, I am trying to develop a trigger which will insert a unique value for a text field for the newly entered record. The value to the text field should be assigned depending on the value of the another Picklist field. The trigger is as follows.
trigger PPCIDtrigger on Lead (before insert, before update)
{
if(Trigger.isInsert || Trigger.isUpdate)
{
for(Lead a: Trigger.new)
{
if (a.Lead_Type__c == 'Paisapak Consumer')
{
a.PPC_ID__c='WS' + ;
}
}
}
}
Here Lead Type is a pick list and PPC ID is a unique text field. I want to assign a value in PPC ID field only when Lead Type = "Paisapak Consumer". One more thing I want to add after "WS" text in PPC ID field is sequence number which shall start by 001 for the first record whose Lead Type is "Paisapak Consumer" and then shall be increased by 1 for every next new record whose Lead Type is "Paisapak Consumer". Will be grateful if I get assistance for this.
Thanks.
-
- Satish Ramanan
- October 31, 2012
- Like
- 0
- Continue reading or reply
Exporting random records from SFDC
Hi, I want to export some of my records from SFDC to external file. These records are actually the result of application of VLOOKUP function in the excel file. The number of records are around 2000. So can I achieve this?
Thanks.
- Satish Ramanan
- February 12, 2013
- Like
- 0
- Continue reading or reply