• Baird Straughan
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 2
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 4
    Replies
I have implemented the start method but still am getting above error.
below is my code. could anyone explain me.
global class Sample_Contactupdate_Batch implements Database.batchable<Contact> {
    
    global database.QueryLocator start(Database.BatchableContext jobid)
    {
        String query='select id,name,DOB__c from Contact where createdDate<=180' ;
          return  database.getQueryLocator(query);
        // we can query upto 50 million records
    }
    global void execute(Database.BatchableContext jobid,list<Contact> scope)
    {
        List<Contact> ctc=new List<Contact>();
        //Contact c=new Contact();
        for(Contact c:scope)
        {
            c.DOB__c=system.today+200;
           ctc.add(c);
        }
        update ctc;
    }
    global void finish(database.BatchableContext jobid)
    {
        
    }

}
I have embedded a Google Map in a Visualforce page, and included markers and labels based on data from Salesforce.

But Google Maps can't handle the large KML layers I need to add to the map for the client.

Is there a way to embed an ARCGIS map in a Visualforce page, and include markers based on my Salesforce data?

Thanks, 
Baird
I'm trying to deploy a build that includes a fieldsets.  In the package document I have tried to retrieve using:
 
<types>
        <members>MyFieldset</members> 
        <name>Fieldset</name>
</types>
and
<types>
        <members>Account.MyFieldset</members> 
        <name>Fieldset</name>
</types>
and
<types>
        <members>Account.fieldset.MyFieldset</members> 
        <name>Fieldset</name>
</types>

The rest of the package retrieve and deploys fine but when I include the code for fieldset I get this error:

Entity type: 'Fieldset' is unknown

Are fieldsets not deployable via ANT?  If that's the case, it should be documented somewhere.