reports

i am creating sales order reports.

but value are not display in print out

r u using display method?

i want display method code

take fetch method first in report

and after that in display method only return value

ex

return _salesorder.xxx;

i want display method code and edit method code also

plz send me ya

you repeated the same thing dozens of times… karla

personal loan

for display method//

display Name brand()

{

Name ret;

;

ret = CarTable::find(this.CarId).CarBrand;

return ret;

}

for edit ///

edit Mileage mileage(boolean set, Mileage value)

{

CarTable carTable;

Mileage ret;

;

carTable = CarTable::find(this.CarId, set);

if (set)

{

ttsbegin;

carTable.Mileage = value;

carTable.update();

ttscommit;

}

else

{

ret = carTable.Mileage;

}

return ret;

}

Hi babu,

write a fetach method & copy paste standard report init method into u r report.then write a display method…

regards,

KGS