Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Finance | Project Operations, Human Resources, ...
Suggested answer

How print multiple copies of SSRS Report

(3) ShareShare
ReportReport
Posted on by
On sales Invoice Report generation, three copies should be generated with following texts 

Original for Buyer

Duplicate for Transporter

Triplicate for Supplier
 
and solution or lead how can we achieve this in SSRS report , thanks
  • Suggested answer
    Tanay_08 Profile Picture
    12 on at
    How print multiple copies of SSRS Report
    Hi Sachin,
    for getting multiple copies of the SSRS report :
    1) You need to create multiple reports designs
    2) Add a for loop in the main method of controller class of SSRS report
    3) add the report design as per your copies sequence and then run startOperation() method of controller class.
     
    I am attaching sample code for your referral:
     
    for (i=1;i<=2;i++) //To show the print for 2 times
    {
    controller = new ReportController();
    if (i == 1)
    {
    controller.parmArgs(_args);
    controller.parmShowDialog(false);
    controller.parmReportName(ssrsReportStr(ReportName, OriginalDesign));
    controller.parmShowReportViewerParameters(false);
    controller.startOperation();
    }
    else if (i == 2)
    {
    controller.parmArgs(_args);
    controller.parmShowDialog(false);
    controller.parmReportName(ssrsReportStr(ReportName, DuplicateDesign));
    controller.parmShowReportViewerParameters(false);
    controller.startOperation();
    }
    }
     
  • Hana Xue Profile Picture
    Microsoft Employee on at
    How print multiple copies of SSRS Report

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge Winners! 🌸

Congratulations to all our community participants!

Adis Hodzic – Community Spotlight

We are honored to recognize Adis Hodzic as our May 2025 Community…

Kudos to the April Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard > Finance | Project Operations, Human Resources, AX, GP, SL

#1
Abhilash Warrier Profile Picture

Abhilash Warrier 254

#2
Martin Dráb Profile Picture

Martin Dráb 230 Most Valuable Professional

#3
Adis Profile Picture

Adis 169 Super User 2025 Season 1

Overall leaderboard

Product updates

Dynamics 365 release plans