How to Customize Tile in Dynamics 365 BC
DropDown and Brick

How to Customize Tile in Dynamics 365 BC

In Dynamics 365 BC , the Role Center page can be customized to display Tile details, Example Customer table [Customer No, Name, Outstanding details, and even a picture]. Here's a quick guide on how to achieve this customization.

Tile
DropDown
Key Questions and Answers

1. Can we customize by adding field groups to the Standard Table?

Yes, you can add field groups to the Customer table using Addlast in the field group Syntax

2. Can we add field groups to custom tables?

Yes, you can also add field groups to custom tables.

Understanding Field Groups

In Dynamics 365 tables, there is a property called Field Groups which helps in organizing and displaying data efficiently. There are two main types of field groups:

1. Drop Down: Used for adding fields to a drop-down control.

2. Brick: Used to display data as tiles.

Example: Extending the Customer Table

Here's an example of how to extend the Customer Table by adding a new field and including it in a drop-down field group.

fieldgroups
{
  addlast(DropDown;CustomerRefNo)
        {
            
        }
  addlast(Brick; CustomerRefNo,Picture)
  {
        
  }
}        


Notes and Warnings

The fieldgroups keyword must be placed after the keys control in your code.

When adding Brick the last field should be an image field.

Ensure that the syntax for using a DropDown is exactly as shown, with the correct capitalization.

The server will automatically remove duplicates if multiple extensions try to add the same field more than once. A field can only be added to a field group once.

If the field you're adding to the DropDown has Visibility = false on the underlying lookup page, it will not appear in the drop-down.


要查看或添加评论,请登录

Senthil Kumar Varatharajan的更多文章

社区洞察

其他会员也浏览了