Hi, I want to use a method as a display field in the page field, how can I use the custom method as a field instead of a table field?
I have created that procedure in the table and am able to get it on form, Thanks.
Hi,
Please create a procedure with return type like below
Localprocedure():text
begin
exit('This is text type return value');
end;
now you can call this Localprocedure() method directly as a Field on any page.
Like below:
field(CustomField;Localprocedure())
{
applicationarea := all;
}
Sohail Ahmed
1,200
YUN ZHU
1,006
Super User 2025 Season 1
Mansi Soni
836