I have created a text file which export data from a customized table (similar to shipment lines).
The output file is fine, but for some of the entries there are mulitple lines - in the file I just want to show the document and total weight.
eg
doc no date qty
1 01/01/01 20
2 02/01/01 10
3 03/01/01 30
3 03/01/01 50
4 02/01/01 60
the output file gives as above, but i wish to show
1 01/01/01 20
2 02/01/01 10
3 03/01/01 80
4 02/01/01 60
If producing a report, I would use the grouping features, but this doesnt seem to work in a output file?
Comments
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Thanks for your reply.. I am actually using the report / FILE method...
At the moment I have the file being created in the OnAfterGetRecord section..
edit : i have just moved the file into onpost, but this only gives the last line?
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Thank you sooo much - now sorted