- Mandadi
- NEWBIE
- 10 Points
- Member since 2013
- Biz Impact Cloud Solutions
-
ChatterFeed
-
0Best Answers
-
1Likes Received
-
0Likes Given
-
9Questions
-
8Replies
Creating REGEX for replacing all special characters With Space except those between quotes
I need to build a regular expression to replace all the special characters in the string with space except those between quotes.
Can any one help me what is the regular Expression for this....
Thanks,
-
- Mandadi
- March 28, 2014
- Like
- 0
- Continue reading or reply
How to Check the new release for salesforce is update or not in Developer Edition.
Can any one tell me Is it possible to find Which is the current release for salesforce in Developer/Enterprise/Professional Edition(like Winter '13).
And also,
How to check in Developer/Enterprise/Professional Edition,whether the new release has updated or not.
Thanks in Advance,
-
- Mandadi
- March 27, 2014
- Like
- 1
- Continue reading or reply
How to check whether the string contains any quotation marks or not.
I have List of String Values like [abc, “abcd” ,‘abcde’].
Now i want to check all the string values and find which string contains single quotes(') and which one contains double quotes using apex.
Can any one help me how to solve this problem......
Thanks,
Murali
-
- Mandadi
- March 27, 2014
- Like
- 0
- Continue reading or reply
What is Salesforce Integration
Hi All,
Can anybody explain what is Integration in salesforce? and how to integrate external apps with Salesforce? What are all the Basic steps required to integration?
Thanks in Advance
---MMM----
-
- Mandadi
- December 03, 2013
- Like
- 0
- Continue reading or reply
How to display Detail Page of an object from vf page.
Hi All,
I have button in vf page, whenever i click that button i want to display the detail page of that record.
Can any one help me how to solve.
Thanks
-
- Mandadi
- November 20, 2013
- Like
- 0
- Continue reading or reply
How to get the record or recordId from vf page to Apex class or extension?
Hi All,
I have displayed list of records in vf page.For each record i have a custom button.
Now Whenever i click that button, i want to get that particular record into apex class.
Can anyone tell me how we can get the particular record from vf page to apex class.
Thanks in Advance...
-
- Mandadi
- November 19, 2013
- Like
- 0
- Continue reading or reply
Why Master-Detail Relationship is preferable to create junction object in salesforce
Hi,
Can anyone help me "Why two Master-Detail Relationship is preferable to create junction object. Why cant with two Lookup relationships or one master-detail and one lookup relationship".
Thanks in Advance
-
- Mandadi
- November 14, 2013
- Like
- 0
- Continue reading or reply
How can i know which salesforce license type my company is using?
Hi All,
Can any one tell me what are all the salesforce license types and how can i know which license type my company is using?
Thanks
-
- Mandadi
- November 11, 2013
- Like
- 0
- Continue reading or reply
How to enable Person Accounts in Dev edition?
Hi,
Can any one explain how to enable person accounts in Dev Edition.
-
- Mandadi
- September 25, 2013
- Like
- 0
- Continue reading or reply
How to Check the new release for salesforce is update or not in Developer Edition.
Can any one tell me Is it possible to find Which is the current release for salesforce in Developer/Enterprise/Professional Edition(like Winter '13).
And also,
How to check in Developer/Enterprise/Professional Edition,whether the new release has updated or not.
Thanks in Advance,
-
- Mandadi
- March 27, 2014
- Like
- 1
- Continue reading or reply
Creating REGEX for replacing all special characters With Space except those between quotes
I need to build a regular expression to replace all the special characters in the string with space except those between quotes.
Can any one help me what is the regular Expression for this....
Thanks,
- Mandadi
- March 28, 2014
- Like
- 0
- Continue reading or reply
How to check whether the string contains any quotation marks or not.
I have List of String Values like [abc, “abcd” ,‘abcde’].
Now i want to check all the string values and find which string contains single quotes(') and which one contains double quotes using apex.
Can any one help me how to solve this problem......
Thanks,
Murali
- Mandadi
- March 27, 2014
- Like
- 0
- Continue reading or reply
- Ganeeesh
- November 21, 2013
- Like
- 0
- Continue reading or reply
How to display Detail Page of an object from vf page.
Hi All,
I have button in vf page, whenever i click that button i want to display the detail page of that record.
Can any one help me how to solve.
Thanks
- Mandadi
- November 20, 2013
- Like
- 0
- Continue reading or reply
Difference between SOAP API and REST API..?
Can any body help me what are the differences between SOAP API and REST API..?
- Ganeeesh
- November 15, 2013
- Like
- 1
- Continue reading or reply
How to Enable Person Account in Developer Edition
Hi ,
I want to Enable Person Accounts in Developer Edition , Can you anyone can what are all the procedure to activate or Enable person Account .
Regards ,
GaneZ
- beginnerapex.ax1865
- November 11, 2013
- Like
- 0
- Continue reading or reply
How to clone the Records Using Record Type Id Based on Opportunity Sobject Using Triggers
trigger cloningopportunity on Opportunity (after insert) {
set<id> oid = new set<id>();
RecordType record =[select id from RecordType where name='1*2'];
for(Opportunity opp : Trigger.new)
{
if(opp.RecordTypeId == record.Id)
{
oid.add(opp.Id);
System.debug('cloningvalues:' + oid);
}
}
list<Opportunity> olist = [select id,Name,CloseDate,StageName,RecordTypeId from Opportunity Where Id in:oid];
for(Opportunity opps :olist)
{
Opportunity o = new Opportunity();
o.Name=opps.Name;
o.CloseDate=opps.CloseDate;
o.StageName=opps.StageName;
o.RecordTypeId =opps.RecordTypeId ;
System.debug('cloningvalues1:'+o.StageName );
insert o;
}
}
throws error
AfterInsert caused by: System.DmlException: Insert failed. First exception on row 0; first error: CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY,
- B Nagarjuna
- April 15, 2013
- Like
- 0
- Continue reading or reply
what is 'ap1' in https://ap1.salesforce.com
- KIRONKUMARK
- July 16, 2012
- Like
- 0
- Continue reading or reply