Posts

Dynamic 365 Business Central : How to extend Activities Cue in Role center Page.

Image
  What is   CUE? A  Cue  provides a  visual representation of aggregated business data , like the number of open sales invoices. Cues are interactive, meaning that you can select the Cue to drill down to data or open another page, run code, and more. Cues display data that is contained in a table field. This data can be raw data or calculated data. Hi  Viewer,  To add cue extend Activities Cue(1313) table  and  Activities (1310) page Extensions. First Create a query and use it to add data in a field in the Cue table . query 50700 "Open vendor amount" {     QueryType = Normal;       elements     {         dataitem(VendorLedgerEntry; "Vendor Ledger Entry")         {             column(Remaining_Amt___LCY_LCY; "Remaining Amt. (LCY)")             {                 Method = Sum;             }             filter(DocumentTypeFilter; "Document Type")             {             }             filter(Applies_to_ID; "Applies-to ID")             {  

Dynamic 365 Business central: How to hide/disable the AssistEdit button

Image
AssitEdit property:   https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/properties/devenv-assistedit-property OnAssistEdit-trigger: https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/triggers-auto/pagefield/devenv-onassistedit-pagefield-trigger So we just need to set this property to false, and this button will be hidden on the page (UI). pageextension 50703 usersettting extends "User Settings" {     layout     {         modify("UserRoleCenter")         {             AssistEdit = false;         }       } } The AssistEdit Property must be set to True to enable the assist-edit capabilities . Thanks for reading Regards, Khushbu Rajvi