Extension in D365 F&O - Quiz

  • ACreate a new entity and copy all the properties from VendorInvoiceLineEntity.
  • BExtend VendorInvoiceLineEntity.
  • COverlayer your changes on the existing VendorInvoiceLineEntity.
  • DEdit VendorInvoiceLineEntity directly.
  • AExtensions take less time to create.
  • BBuild times are reduced with extensions.
  • CUpdates are rolled out less frequently by using extensions.
  • DExtensions cost more to maintain than overlaying.
  • 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