Announcements
No record found.
Maybe this will help you proceed quickly.
To add a dropdown to your new field in Business Central, you have two standard options:
Create a new enum object with the dropdown values.
enum
Assign the enum to your field in the table.
enum 50100 "My Dropdown Options" { Extensible = true; value(0; "Option A") { } value(1; "Option B") { } value(2; "Option C") { } }
Then in your table:
field(50100; "My Field"; Enum "My Dropdown Options") { Caption = 'My Dropdown'; }
Create a table with the values.
Then in your main table field, set a TableRelation to the new table.
TableRelation
field(50101; "My Field"; Code[20]) { TableRelation = "My Value Table".Code; Caption = 'My Dropdown'; }
Choose based on whether your values are fixed (enum) or dynamic (table).
table
Mark below checkbox to make this answer Verified if it helps you. Let me know if you need help creating the enum or table.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
OussamaSabbouh 1,926 Super User 2026 Season 1
YUN ZHU 1,158 Super User 2026 Season 1
Khushbu Rajvi. 533 Super User 2026 Season 1