• Ian Carswell 13
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 4
    Replies
I have installed the Eclipse Kepler release on Windows 10. I get the following error when I try to create a new Force.com project.


Unable to fetch organization details for...

Element {urn:soap.sforce.com}returnFieldDataTypes invalid at this location

Has anybody else experienced this problem?

 
I am getting the following error from Eclipse (Kepler) when trying to login to our Production org which uses a custom url:
Unable to fetch organization details for  [myusername]

Element {urn:soap.sforce.com}returnFieldDataTypes invalid at this location

I have no problems accessing the Org via the dataloader using the same credentials.
I have installed the Eclipse Kepler release on Windows 10. I get the following error when I try to create a new Force.com project.


Unable to fetch organization details for...

Element {urn:soap.sforce.com}returnFieldDataTypes invalid at this location

Has anybody else experienced this problem?

 
I am getting the following error from Eclipse (Kepler) when trying to login to our Production org which uses a custom url:
Unable to fetch organization details for  [myusername]

Element {urn:soap.sforce.com}returnFieldDataTypes invalid at this location

I have no problems accessing the Org via the dataloader using the same credentials.

For some reason my variables from my Flow are passing back as null to my VF Controller extension.  Trying to set the finish page using these. Was able to understand how in another post (Rajaram).

 

Controller extension is below.  The vafacilityid is an Input/Output variable in Flow FacilityLookup and should return the Account ID newly created. In the flow I added a screen that validates that the variable does have a value at the end of the flow so something is wrong with the controller?

 

Controller Extension

public class flowFinishContExt_Acct {

private final Account acct;

public flowFinishContExt_Acct(ApexPages.StandardController stdController) {
this.acct = (Account)stdController.getRecord();
}

public Flow.Interview.FacilityLookup atFlow {get; set;}

public String getaccountID() {
if (atFlow==null) return '';
else return atFlow.vafacilityid;
}

public PageReference getFinishPage(){
PageReference p = new PageReference(''/apex/FacilityMainTabbed' + getaccountId());
p.setRedirect(true);
return p;
}

}