i just want to show 2 fields in the dropdown i.e.; ItemStyleID with Value, but currently system is showing only ItemStyleID although i have added fieldgroup but issue is still there... here is the code.. any sort of help would be highly appreciated.. Please help me out in finding the solution...
table 50108 ItemStyle
{
Caption = 'Item Style';
DataClassification = ToBeClassified;
fields
{
field(1; ItemStyleID; Text[8])
{
Caption = 'Colour Id';
DataClassification = ToBeClassified;
}
field(2; Values; Text[75])
{
Caption = 'Style name';
DataClassification = ToBeClassified;
}
}
keys
{
key(PK; ItemStyleID)
{
Clustered = true;
}
}
fieldgroups
{
fieldgroup(Dropdown; ItemStyleID, Values) { }
}