• Parthi
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 3
    Questions
  • 6
    Replies

Is it possible to create charts in salesforce by using openflashchart.com.

It would be more helpful to share any ideas relating this. Thanks in advance.

 

  • February 07, 2012
  • Like
  • 0

Hi all, 

 

I am in need to inactive a user. While trying to inactive, it showing the following message.

 

User's page layout and language used by Executive Opportunity Alerts.

 

This user's page layout and language settings are applied to all Executive Opportunity Alerts. This user must be an active user with the 'View All Data' permission. Before changing the user settings or profile, select a different user for Executive Opportunity Alerts. 

 

I have removed all the reports and dashboards assosiate with this user, and tried to change the record type for his profile. Even also i cant able to inactive. Kindly help me out. Thanks in advance.

 

 

  • August 16, 2011
  • Like
  • 0

Hi all,

 

I am integrating salesforce with facebook using faceconnector(faceforce). I followed the user gudie that they provide in faceconnector.com. In one situation i cant get the output. It shows the following contents.

 

Welcome to Salesbook, Parthiban Pandurangan

Salesforce Username: spr.parthi@yahoo.com


Salesforce Contacts:

No contacts have been added

 

 

 

I added the account, contacts, leads. and I added the FacebookID__c field in both contact and lead pagelayouts.

 

Can anyone please help me out to connect faceforce app.

 

Am using Firefox as my browser as they recommened.

 

Thanks.

 

Hey!

 

Is there any simple way to create Leads custom object which would be as similar as possible to the default one?

 

I need a way to Add leads, and later convert it to accounts. I dont need oppertunitys. 

 

Iam asking this because I have saw that Force.com doesnt includes this standard object.

 

Thanks for advices!

 

Is it possible to create charts in salesforce by using openflashchart.com.

It would be more helpful to share any ideas relating this. Thanks in advance.

 

  • February 07, 2012
  • Like
  • 0

Hi all, 

 

I am in need to inactive a user. While trying to inactive, it showing the following message.

 

User's page layout and language used by Executive Opportunity Alerts.

 

This user's page layout and language settings are applied to all Executive Opportunity Alerts. This user must be an active user with the 'View All Data' permission. Before changing the user settings or profile, select a different user for Executive Opportunity Alerts. 

 

I have removed all the reports and dashboards assosiate with this user, and tried to change the record type for his profile. Even also i cant able to inactive. Kindly help me out. Thanks in advance.

 

 

  • August 16, 2011
  • Like
  • 0

Hi all,

 

I am integrating salesforce with facebook using faceconnector(faceforce). I followed the user gudie that they provide in faceconnector.com. In one situation i cant get the output. It shows the following contents.

 

Welcome to Salesbook, Parthiban Pandurangan

Salesforce Username: spr.parthi@yahoo.com


Salesforce Contacts:

No contacts have been added

 

 

 

I added the account, contacts, leads. and I added the FacebookID__c field in both contact and lead pagelayouts.

 

Can anyone please help me out to connect faceforce app.

 

Am using Firefox as my browser as they recommened.

 

Thanks.

 

Hello all,

 

I am a newbie SFDC developer and desperately trying to learn Apex and Visualforce programming.

Is there any book for those new to this field?

 

Any suggestions on where to get this is much appreciated.

 

Thanks a lot,

VK86 

  • February 02, 2010
  • Like
  • 0

I feel I'm almost there :)

 

The code below connects to the Salesforce server but ultimately fails with a 'no endpoint' exception.

 

I think I'm just not passing on the protocol credentials such as service and url endpoint to the object making the call,  but

I'm only guessing.

 

Also are there any pieces of sample code that make a WebService call from Java as I've not been able to find any?

 

Can anyone help me please?

 

 

 

import com.sforce.soap.schemas._class.MyWebService.*;
import java.net.*;
import com.sforce.soap.enterprise.*;
import com.sforce.soap.enterprise.fault.LoginFault;
import com.sforce.soap.enterprise.fault.ExceptionCode;

 

public class TestCall{

 

 public static void main(String[] args){

                LoginResult loginResult;

  System.out.println("start of program");
  try{

  SoapBindingStub bind=  (SoapBindingStub) new SforceServiceLocator().getSoap();
                System.out.println("after call to getSoap()");
  bind.setTimeout(60000);

   
  loginResult = bind.login("myadminuser", "mypassword");
  System.out.println("straight after login call");
  bind._setProperty(SoapBindingStub.ENDPOINT_ADDRESS_PROPERTY, loginResult.getServerUrl());

    com.sforce.soap.enterprise.SessionHeader sh = new com.sforce.soap.enterprise.SessionHeader();
          sh.setSessionId(loginResult.getSessionId());
      
   
         bind.setHeader(new SforceServiceLocator().getServiceName().getNamespaceURI(),
                          "SessionHeader", sh);
       
              

   MyWebServiceBindingStub stub = new MyWebServiceBindingStub();

   

   System.out.println("about to make call");
   stub.myMethod();
  }
    catch (LoginFault ex) {
            // The LoginFault derives from AxisFault

            ExceptionCode exCode = ex.getExceptionCode();
            System.out.println("######" + exCode);
            if (exCode == ExceptionCode.FUNCTIONALITY_NOT_ENABLED ||
                exCode == ExceptionCode.INVALID_CLIENT ||
                exCode == ExceptionCode.INVALID_LOGIN ||
                exCode == ExceptionCode.LOGIN_DURING_RESTRICTED_DOMAIN ||
                exCode == ExceptionCode.LOGIN_DURING_RESTRICTED_TIME ||
                exCode == ExceptionCode.ORG_LOCKED ||
                exCode == ExceptionCode.PASSWORD_LOCKOUT ||
                exCode == ExceptionCode.SERVER_UNAVAILABLE ||
                exCode == ExceptionCode.TRIAL_EXPIRED ||
                exCode == ExceptionCode.UNSUPPORTED_CLIENT) {
                System.out.println("Please be sure that you have a valid username " +
                     "and password.");
            } else {
                // Write the fault code to the console

                System.out.println(ex.getExceptionCode());
                // Write the fault message to the console

                System.out.println("An unexpected error has occurred." + ex.getMessage());
            }
  

  }
   catch(Exception e){
   System.out.println("error" + e.getMessage());
  }

 }

 


}