Printing multiple selected records from form to report

Hi… Everyone.

I want to print multiple selected records from form to report .

how can achive this, plase suggest solution .

Thanks in Advance

Hello Pravin,

Please refer from below links

http://www.axaptapedia.com/Multiple_grid_selections

http://axhelper.blogspot.dk/2012/01/pass-data-source-records-to-class-or.html

Thanks & Regards

Arun Garg

Hi,

The below link also might help you…

http://stackoverflow.com/questions/10014177/x-passing-current-selected-records-in-a-form-for-your-report

Preeti

adding one more to that:

https://community.dynamics.com/ax/f/33/p/91411/179700.aspx#.UT19BFeGPFk


Suppose it is from custtable to report then you can write it in clicked method of the button as:

Custtable   Custtable1;

for (Custtable1=Custtable_ds.getFirst(true) ?Custtable_ds.getFirst(true) :Custtable_ds.cursor(); Custtable1;Custtable1= table_ds.getnext())

{

// pass this custtable record to your report and execute report  deisgn

}