CRM.server Jobs

Learn about configuring jobs to be executed.

The jobs that should be executed by CRM.server are configured via the settings.server.xml file, see settings.server.xml.
<Job name="FIImport" schedule="0 2 * * * "
type="update.Crm.Server.Jobs.ImportJob,update.Crm.Server">
<FormatName>CompanyImport</FormatName>
<ImportPath>E:\MyDocuments\FI_import.txt</ImportPath>
<CreateProtocol>false</CreateProtocol>
</Job>

For each job you can specify the following attributes:

  • name: the job's name (if you want to define different jobs of the same type).
  • schedule: the job's schedule, see Scheduling CRM.server Jobs.
  • type: the type of job, e.g. MonitorTodosJob, ImportJob etc.
  • additional parameters as additional nodes inside the <Job> node, if applicable.

The following chapters list all available jobs and parameters.

If a job is not relevant for your installation, make sure to remove the job from the settings.server.xml file.