• Janardhana Reddy
  • NEWBIE
  • 20 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 2
    Likes Given
  • 15
    Questions
  • 20
    Replies
HI All,
How to call Paypal Refund transaction() Method from apex class.
am new to paypal.
please help me
Hi All,
I am running test classes in my production Org, for some Classes it showing 0% Coverage for some classes it showing 97%.
The same test class tried run in my sandbox it showing code coverage for all classes.
Can any one tell me how to solve this Issue.
Hi All,
I was created Custom Link on sidebar(by using site URL), When i was accessing the link getting Limit Exceeded Error.
How to Over come this problem? 
Please help me in this
Can any one help on how to do integration Sertifi API integration with salesforce
My requirement is user can login from facebook into the salesforce customer portal.
I followed th instruction given in the URL below.
https://help.salesforce.com/HTViewHelpDoc?id=sso_provider_facebook.htm&language=en_US#sso_provider_facebook
user not created in salesforce.
help me any one please.
I Written Controller for getting campaigns based on login user, am getting the list of values but am unable to view the details in vfpage in customer portal.
Can any one help me please
Displaying Contact related Tasks on Customer Portal Home page.
I am not getting the Tasks on Portal Home page can any one help me
i was written soql query in my batch class
select id,Status,Stage,WhoId from Task where Whoid =: ContactId and Status =: 'Completed'
 the query not getting tasks for contact
please help me
public class Contactemail {

    
    public Contact Contact;
    public ID contactId{get;set;}
    public List<Account> accountList;
   
    public Contactemail(){
    }
   
    public Contact getContact() {
   
    if (this.Contact == null && this.contactId != null) {
       this.Contact = [Select Id,Name,FirstName,VolunteerPage1URL__c,Owner.Name,Owner.Title,Owner.Email,Owner.Phone from contact where id = :this.contactId];
    }
   
  
    return this.Contact;
    }
  
    public List<Account> getAccountList() {
  
    List<contact> zipList = [select mailingpostalcode
                      From Contact
                      where Id =: ContactId
                    Limit 1];
     
       system.debug('zipList ==>'+zipList);
       Set<String>zipId = new Set<String>();
       for(Contact zip:zipList){
        zipId.add(zip.mailingpostalcode);
       }
      
       List<Zip_Code__c> councilList = [select id,Council__c
                       from Zip_Code__c
                       where Name =:zipId
                      Limit 1];
      
       Set<Id>councilId = new Set<Id>();
       for(Zip_Code__c zip:councilList){
        councilId.add(zip.Council__c);
       }
       system.debug('councilList ==>'+councilList);
       accountList = new List<Account>();
       this.accountList = [
            Select Id                
                 , Council_Header__c
                 , Council_Header_Url__c
                 , Council_Email__c
                 , Phone
                 , Name
              From Account
             where Id = :councilId
             limit 1
        ];
     return this.accountList;
   }

}