• NeetMunjani
  • NEWBIE
  • 0 Points
  • Member since 2012

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

Hi..

I want to export some standard field of account object using apex loader but its shows field does not exist.

Below is my SOQL

 

"select name,sic,sicdesc from account "

 

I am getting error "sicdesc field does not exist" from apex loader but its get successfully populate in developer consol.

I have checked name,sic and sicdesc all have same "view field accessibility" and "set field level security" but issue with SICDesc filed only.

Please suggest me what could be the issue.

 

Thanks in advance,

Nitin

I am using command line apex data loader. I want to extract those accounts which have last_ax_date field value greater then date specified in the somewhere on data loader machine.

 

<bean id="ExtractAXAccounts"
class="com.salesforce.dataloader.process.ProcessRunner"
singleton="false">
<entry key="process.operation" value="extract"/>
<entry key="dataAccess.type" value="csvWrite"/>
<entry key="sfdc.extractionSOQL" value="select Id, Name, Last_AX_Date from Account where Last_AX_Date > 'date store in somewhere in the system' "/>
</bean>

 

so where I have to specify date and how I can use it for "sfdc.extractionSOQL" value.

Thanks in advance,
Nitin

 

Hi..

I want to export some standard field of account object using apex loader but its shows field does not exist.

Below is my SOQL

 

"select name,sic,sicdesc from account "

 

I am getting error "sicdesc field does not exist" from apex loader but its get successfully populate in developer consol.

I have checked name,sic and sicdesc all have same "view field accessibility" and "set field level security" but issue with SICDesc filed only.

Please suggest me what could be the issue.

 

Thanks in advance,

Nitin