Display Method in X++
how we write display method in X++ to display some result in specific field Example :
some of two values :
Display real SumTowValues()
{
real sum=0;
real x= 100;
real y=200;
;
sum=x + y ;
return sum ;
}
some of two values :
Display real SumTowValues()
{
real sum=0;
real x= 100;
real y=200;
;
sum=x + y ;
return sum ;
}
Comments
i have a report which is include customer account and their orders, Sales Price.
i wanna see the summarize of sales price of each customer. how can i do this? what kinds of method should be?