• Hyd
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 13
    Questions
  • 11
    Replies

Hi,

 

Can any one help me based on,

 

How to integrate Salesforce application with Facebook using Graph API?

I don't know exactly even fundamentals also.

I could not understand Graph API steps.

But my team lead told that,  it is possible by sending HTTP Request and then parsing Response.

please send the sample code (or) any Url links to complete it....

 

 

Please Help me.

 

 

Thanks & Regards:

Hyd

  • February 14, 2011
  • Like
  • 0

Hi,

 

How to Integrate Facebook without using Facebook ToolKit?

 

please help me.

 

 

  • February 14, 2011
  • Like
  • 0

HI,

 

I successfully Inserted Records from .NET to Salesforce object . But i can't find  any solution to update, delete records from .NET.

 

Please send sample code to do this.

 

Thanks in Advance...

 

 

  • February 08, 2011
  • Like
  • 0

Hi,

 

Can any one help me.

 

How can we Integrate Salesforce with Java?

 

I don't know even a single step to do this. But i require to implement this in my project.

 

Please help me.

 

Thanks in Advance.....

 

 

  • February 02, 2011
  • Like
  • 0

Hi,

 

please , explain

 

 

 What is wrapper class? Why we need to use wrapper classes in Apex?

send a sample example to understand the wrapper classes.

 

 

 

 

Thanks & Regards:

 

 

  • January 20, 2011
  • Like
  • 0

Hi,

 

I used <apex:pageblocktable>  to display all records in VF page.

When i click on each row i would like to display the detail page of particular record at the bottom of pageblocktable.

I tried it using actionsupport with the help of an event "onclick".

But i would like to do this one using "onrowclick" event without using action support.

 

can any one help me. 

 

 

Thanks.

 

 

  • January 19, 2011
  • Like
  • 0

Hi,

 

I Created an object country__c.

It has 2 fields. country_name (text field) and city__c(picklist field).

 

I used below code in Controller.

----------

 

 

public class pick2con {
    public pick2con() {
    }
    
    set<String> sobj=new set<String>();
    
    public List<selectOption> getLstdata() 
    {
            List<SelectOption> options = new List<SelectOption>();
          
            Schema.DescribeFieldResult c  = Schema.sObjectType.country__c.fields.city__c.getSObjectField().getDescribe();
                
               for(PicklistEntry e : c.getpicklistvalues())
               {    
                   sobj.add(e.getvalue());
                   options .add(new SelectOption(e.getValue(), e.getLabel()));   
               } 
                                  
            return options;
    }
    public String lst{get;set;}
    public String cname { get; set; }
}
Now i got these fields in VF page.
And i placed a button for submit data into object... 
Assume that, picklist has Hyd,Bang,Chennai.
I used only Hyd to insert the records ....
My requirement is,,
suppose,
if i did not use some values from the picklist to insert the records, i would like to find the un used picklist values in page block below the VF page.
Can u please help me...
Thanks  & Regards:

 

 

  • January 06, 2011
  • Like
  • 0

Hi,

 

Please send some simple programs to understand map concept?

 

 

Thanks & Regards:

Hyd

 

 

  • January 06, 2011
  • Like
  • 0

Hi,

 

My object is : student__c with custom fields name,city__c.

It has 4 records.

In city__c the values like Hyd,Bang,Hyd,Bang

when i get these values into picklist all 4 values are displaying.

But i would like to display only (Hyd,Bang) distinct values in picklist .

 

I wrote the below code..

 

 

public class vvnr {
    List<Student__c> obj;
    
    public List<selectOption>  getLstdata() 
    {
        List<selectOption> options=new List<selectOption>();
        options.add(new SelectOption('--None--','--None--'));
        
        for(Student__c obj: [select  name,city__c from student__c ])
        {
           options.add(new selectOption(obj.city__c,obj.city__c));       
        }
        return options;
        
    }
    public String lst { get; set; }
}

 

 

 

can any one suggest me....!

 

Thanks....

 

 

  • January 05, 2011
  • Like
  • 0

Hi,

 

I create 2 objects. Department (P) & Employee (C).

Here Employee Have Look up relation with Department(p).

My requirement is,

 

I created a Detail Page Button on Employee Object.

When i click on This button i would like to display the look up record in Master object.

 

I tried it through the customization. I got the solution.

But i want to solve this problem either by  javascript or by any other way.

 

please reply...

 

Thanks...

 

 

 

  • December 28, 2011
  • Like
  • 0

Hi,

 

Give some examples In real time scenarios regarding to the following.

When we use,

1. Validation rules

2. Workflows

3. triggers

 

what are the differences among all?

 

please reply.

 

 

  • December 27, 2011
  • Like
  • 0

hi,

 

In apex class (in method) i wrote a statement like,

 

a=mod(n,10);

 

but it returned error.

 

I would like to perform the mod() operation.

How can i do it...

 

please help me.

 

  • December 20, 2010
  • Like
  • 0

Hi,

 

Can we perform Mass Delete (in Customization) on all custom objects?

 

please reply.

  • December 20, 2010
  • Like
  • 0

Hi,

 

How to Integrate Facebook without using Facebook ToolKit?

 

please help me.

 

 

  • February 14, 2011
  • Like
  • 0

Hi,

 

Can any one help me.

 

How can we Integrate Salesforce with Java?

 

I don't know even a single step to do this. But i require to implement this in my project.

 

Please help me.

 

Thanks in Advance.....

 

 

  • February 02, 2011
  • Like
  • 0

Hi,

 

I used <apex:pageblocktable>  to display all records in VF page.

When i click on each row i would like to display the detail page of particular record at the bottom of pageblocktable.

I tried it using actionsupport with the help of an event "onclick".

But i would like to do this one using "onrowclick" event without using action support.

 

can any one help me. 

 

 

Thanks.

 

 

  • January 19, 2011
  • Like
  • 0

Hi,

 

My object is : student__c with custom fields name,city__c.

It has 4 records.

In city__c the values like Hyd,Bang,Hyd,Bang

when i get these values into picklist all 4 values are displaying.

But i would like to display only (Hyd,Bang) distinct values in picklist .

 

I wrote the below code..

 

 

public class vvnr {
    List<Student__c> obj;
    
    public List<selectOption>  getLstdata() 
    {
        List<selectOption> options=new List<selectOption>();
        options.add(new SelectOption('--None--','--None--'));
        
        for(Student__c obj: [select  name,city__c from student__c ])
        {
           options.add(new selectOption(obj.city__c,obj.city__c));       
        }
        return options;
        
    }
    public String lst { get; set; }
}

 

 

 

can any one suggest me....!

 

Thanks....

 

 

  • January 05, 2011
  • Like
  • 0

Hello guys,

 

i created one Custom Component with allowDml=true, but i am getting this error

System.LimitException: DML currently not allowed
i will be very happy if someone helps me

Thank You

  • January 05, 2011
  • Like
  • 0

Hi,

 

Give some examples In real time scenarios regarding to the following.

When we use,

1. Validation rules

2. Workflows

3. triggers

 

what are the differences among all?

 

please reply.

 

 

  • December 27, 2011
  • Like
  • 0