• siliveru venkatesh
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 3
    Replies
How much amount of data can store inside the database.com,through free Developer Edition
 
Hi.... ALL 
I need to Update Position Records Whose Max Pay is > 500000 ,I am  Execute this code facing the Compiler Error.
Any one can solve this.....

User-added imageUser-added image
Hi...
ALL
i want to delete Lead Records Based on the company name.But i am facing this Error any one can can support me.
public class DML_Delete 
{    
    
    public static void RecordsDeletefromLead (string StartText)
    {
        
        if(StartText !='Null' && StartText !='')
        {
            StartText +='%';
           Map<id,Lead>  DeleteLead =new Map<id,Lead> ([select id,Company from Lead where Company Like:StartText]);
        }
        if(!DeleteLead.isEmpty())
        {
            delete DeleteLead;
        }        
    } 
}
Hi..... All
I am trying to fetch the data from Opportunity and display in vf page,But i am facing this Error any one can help me.
[(apex Error) Invalid type: Schema.oppotunity     (VF page Error) Unknown property 'SOQL_Ex2.lopty']
VF Code:
<apex:page controller ="SOQL_Ex2">
    <apex:form>
        <apex:pageBlock  title ="SPQL_Ex2">
            <apex:pageBlockTable value="{!lopty}" var="op">
                <apex:column value="{!op.name}"/>
                <apex:column value="{!op.stagename}"/>
                <apex:column value="{!op.closedate}"/>

            </apex:pageBlockTable>
        </apex:pageBlock>
    </apex:form>
</apex:page>

Apex Class:
public class SOQL_Ex2 
{
    public list<Opportunity> lopty {get;set;}
    public SOQL_Ex2()
    {
        lopty=[select Name,StageName,CloseDate from oppotunity];
    }
}
Hi All,

I want to integrate facebook with salesforce. I was trying it with Facebook Graph API. But I want to search people on facebook by their email id, and wants to fetch their basic information and map that information to salesforce fields. Is there any way to do this? Please suggest some solution.

Regards,
Supriya