and there i need to call a procedure on the field in query column, but it shows it is not possible.
{
QueryType = API;
APIPublisher = 'QueryV1';
APIGroup = 'QueryGroup';
EntityName = 'Item';
EntitySetName = 'Items';
elements
{
dataitem(ItemDetails; Item)
{
column(ItemNo; "No.")
{
}
column(Name; Description)
{
}
column(Inventory; Inventory)
{
}
column(PictureId; Picture)
{
}
column(Base_Unit_Price; "Unit Price")
{
}
column(Details; GetDetails()) // This i want to do. but not able to achieve.
{
}
{
DataItemLink = "Asset No." = ItemDetails."No.";
SqlJoinType = LeftOuterJoin;
column(Unit_Price; "Unit Price")
{
}
}
}
}
begin
// my logic
end
If anyone have any code snip please share.