Posts

Dynamics 365 Business Central: Enabling Custom and Default Tables in the "Search Company Data" Feature

Image
 Hi Colleagues, Today, we will discuss how we can search custom table data using the " Search Company Data " feature in Business Central. For more information regarding the " Search Company Data " feature, you can refer to the official Microsoft documentation: Search Company Data I have added a test customer to the default customer table.  and created three test entries in the Test Header custom table. To search for data, enter one or more keywords in the "Tell Me" search box. Alternatively, when you run "Tell Me" in the context of an editable page, it will automatically search for the value in the currently selected field. Click on " Search Company Data ". Here, you can see that the search results include the top results from the tables you have access to. However, custom table data is not showing in the list. Reason : Test Header is not enabled in the list. Now, follow below steps to add default or custom table data to the search list...

Copy a Production or Sandbox Environment in Business Central

Image
Few simple steps for Copy a Production or Sandbox Environment  Open Business Central, click on the Settings icon, choose Admin Center Within the Business Central Admin page select the production environment that you wish to copy. Select Copy from the ribbon. Specify your new environment's name and type.  Select Copy Once the copy process has finished you'll see a new environment listed in your environments tab.  https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/administration/tenant-admin-center-environments-copy Note: You can only have 3 Sandboxes & 1 Production environment. If there are already 3 Sandboxes you can delete one and after the deletion is done, you can copy the Production Environment.  Business Central 2021 wave 2 (BC19) new features: Copying environments of different types (Production to production, Sandbox to sandbox, Sandbox to production) Thank you for reading. Regards,  Khushbu Rajvi

How to Create a Sandbox in Dynamics 365 Business Central

Image
Few simple steps for creating a sandbox environment in the D365 Business Central tenant. Access the Admin Center for Business Central by clicking on the gear symbol and selecting Admin Center. Click New to start creating new environment After entering the Environment Name, Environment Type as Sandbox, and Country, click Create button: It will take some time to prepare the sandbox environment.  After preparing the environment, the status will be shown as Active: Now the sandbox environment is ready and you can visit the environment: Thanks For Reading. Regards, Khushbu Rajvi

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 = S...

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