Batch jobs in D365 F&O - Quiz

  • AAllows the administrator to determine which AOS instance runs the task.
  • BConsists of multiple batch tasks or groups.
  • CIs an activity that is run by a batch job.
  • AConfigure the batch job to run during off-peak hours and set it to a lower batch thread priority.
  • BSchedule the batch job to run every hour to distribute the load throughout the day.
  • CManually trigger the batch job during peak business hours.
  • DIncrease the batch thread priority to the highest level to ensure it runs immediately.
  • ACreate a custom batch processing system using X++ code.
  • BImplement batch processing manually by creating a new class for each batch job.
  • CUse the SysOperation framework for batch processing.
  • DUse the BatchHeader and BatchJob classes to create and manage batch jobs.
  • AReduce the number of users who can access the data at the same time.
  • BRemove set-based operations.
  • CDisable all batch jobs and manually process each task to avoid system overload.
  • DUse parallelism and multi-threading for high-volume scenarios.
  • ASchedule a recurring data import using the Data Management Framework REST API.
  • BImplement OData service endpoints for the required data entities.
  • CCreate a batch job to synchronize data at the end of each day.
  • DUse the Electronic Reporting tool to configure data formats.
  • AImplement Excel add-in for Dynamics 365 and design templates for each department.
  • BSchedule a recurring batch job to export data to a shared folder in Excel format.
  • CTrain department heads to manually export data to Excel and apply filters as needed.
  • DCreate a single Excel template and instruct users to manually enter their departmental data.
  • ACreate a new class in the AOT and implement the inventory adjustment logic within a method.
  • BExtend an existing inventory class and override the update method to include the new logic.
  • CCreate a batch job that periodically adjusts inventory levels based on purchase orders.
  • DOption A and B Only