• AndreasMuc
  • NEWBIE
  • 15 Points
  • Member since 2014
  • Verlag Werben & Verkaufen GmbH

  • Chatter
    Feed
  • 0
    Best Answers
  • 5
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 7
    Replies
If your trying to run the latest DataLoader 49.0.0 on a Mac with OS 11 (Big Sur) beta it'll only show you blank windows.
This happens also with other Java Apps using older versions of the Eclipse SWT libraries (and is a known issue).
Can we expect a newer version of Data Loader using the latest Eclipsw SWT libraries in the package?

Thx - Andreas
Hi,
I'm having trouble with the following code in the live system ... in the sandbox everthing works fine:

...
Map<String, Schema.SObjectField> M2;		
String queryLead = 'SELECT '; 
M2 = Schema.SObjectType.Lead.fields.getMap();

for(string fName : M2.keySet()){
   queryLead += fName+',';
}       

queryLead = queryLead.removeEnd(','); 
queryLead += ' FROM Lead WHERE Email IN :emails AND Email != null AND Id NOT IN :contactOrLeadIds';

List<Lead> leads = Database.query(queryLead);
The Database.query line produces an error saying that the field "address" could not be accessed and all the __c thing ... but its just in the live system ...
Any ideas?

Thanks!

If your trying to run the latest DataLoader 49.0.0 on a Mac with OS 11 (Big Sur) beta it'll only show you blank windows.
This happens also with other Java Apps using older versions of the Eclipse SWT libraries (and is a known issue).
Can we expect a newer version of Data Loader using the latest Eclipsw SWT libraries in the package?

Thx - Andreas
If your trying to run the latest DataLoader 49.0.0 on a Mac with OS 11 (Big Sur) beta it'll only show you blank windows.
This happens also with other Java Apps using older versions of the Eclipse SWT libraries (and is a known issue).
Can we expect a newer version of Data Loader using the latest Eclipsw SWT libraries in the package?

Thx - Andreas
Hi,
I'm having trouble with the following code in the live system ... in the sandbox everthing works fine:

...
Map<String, Schema.SObjectField> M2;		
String queryLead = 'SELECT '; 
M2 = Schema.SObjectType.Lead.fields.getMap();

for(string fName : M2.keySet()){
   queryLead += fName+',';
}       

queryLead = queryLead.removeEnd(','); 
queryLead += ' FROM Lead WHERE Email IN :emails AND Email != null AND Id NOT IN :contactOrLeadIds';

List<Lead> leads = Database.query(queryLead);
The Database.query line produces an error saying that the field "address" could not be accessed and all the __c thing ... but its just in the live system ...
Any ideas?

Thanks!