print out

Hey Friends My Client requirement is such that when printing the Sales Invoice,they need five copy,but in each copy they need a different name (print copy name) in the printed report by single click. Example :- 1.original 2.Duplicate 3.Triplicate 4.Quadrapliate and 5.Transporters copy There is any option in Navision,if no, is there any solution for it. Thank you

Hi,

Have you tried adding a integer as dataitem?

OnPreDataitem

Setrange(Number,1,5);

OnAfterGetRecord

CASE Number of

1: Caption := ‘Original’;

2: Caption := ‘Duplicate’;

etc…

T

Adding to Tony’s thought: standard sales invoice (Report 206) already has a copy loop where you could add the code.