Visual Studio 2017 design report that prints Original and Duplicate

Multi tool use
up vote
0
down vote
favorite
I'm working on my first MVC project (with Polymer components) and all the printing is done through a Visual Studio 2017 Reporting Services project.
I need to create a report that prints shipment documents in Original, Duplicate and Triplicate format. For example, a shipment document which has 10 pages (a shipment document is a set of header, body and footer), must print the first set of 10 pages as "Original", the second set as "Duplicate" and the third one as "Triplicate".
Could anyone give me some suggestion on how to achieve this?
My first thought is to design all the three "sections" in the same report, but that doesn't seem a "clean" solution. :)
model-view-controller reporting-services visual-studio-2017
New contributor
zpgm is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
favorite
I'm working on my first MVC project (with Polymer components) and all the printing is done through a Visual Studio 2017 Reporting Services project.
I need to create a report that prints shipment documents in Original, Duplicate and Triplicate format. For example, a shipment document which has 10 pages (a shipment document is a set of header, body and footer), must print the first set of 10 pages as "Original", the second set as "Duplicate" and the third one as "Triplicate".
Could anyone give me some suggestion on how to achieve this?
My first thought is to design all the three "sections" in the same report, but that doesn't seem a "clean" solution. :)
model-view-controller reporting-services visual-studio-2017
New contributor
zpgm is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
easiest would be to have a main report with three sub reports.. pass all necessary parameters from the main report to the sub reports. design the sub reports to say what ever you want.. Original Duplicate Triplicate etc.. it should work a treat.. I've done this many times and it works well.
– Harry
20 hours ago
I agree with Harry. 1 subreport that can print your 10 pages and can accept a parameter that you can use to pass whatever text you want to it. Then a main report that called the subreport three times, each time with your different text.
– Alan Schofield
15 hours ago
Thanks, I will follow your suggestions.
– zpgm
17 mins ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm working on my first MVC project (with Polymer components) and all the printing is done through a Visual Studio 2017 Reporting Services project.
I need to create a report that prints shipment documents in Original, Duplicate and Triplicate format. For example, a shipment document which has 10 pages (a shipment document is a set of header, body and footer), must print the first set of 10 pages as "Original", the second set as "Duplicate" and the third one as "Triplicate".
Could anyone give me some suggestion on how to achieve this?
My first thought is to design all the three "sections" in the same report, but that doesn't seem a "clean" solution. :)
model-view-controller reporting-services visual-studio-2017
New contributor
zpgm is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I'm working on my first MVC project (with Polymer components) and all the printing is done through a Visual Studio 2017 Reporting Services project.
I need to create a report that prints shipment documents in Original, Duplicate and Triplicate format. For example, a shipment document which has 10 pages (a shipment document is a set of header, body and footer), must print the first set of 10 pages as "Original", the second set as "Duplicate" and the third one as "Triplicate".
Could anyone give me some suggestion on how to achieve this?
My first thought is to design all the three "sections" in the same report, but that doesn't seem a "clean" solution. :)
model-view-controller reporting-services visual-studio-2017
model-view-controller reporting-services visual-studio-2017
New contributor
zpgm is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
zpgm is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 20 hours ago


CGritton
1,0571218
1,0571218
New contributor
zpgm is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 23 hours ago


zpgm
11
11
New contributor
zpgm is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
zpgm is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
zpgm is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
easiest would be to have a main report with three sub reports.. pass all necessary parameters from the main report to the sub reports. design the sub reports to say what ever you want.. Original Duplicate Triplicate etc.. it should work a treat.. I've done this many times and it works well.
– Harry
20 hours ago
I agree with Harry. 1 subreport that can print your 10 pages and can accept a parameter that you can use to pass whatever text you want to it. Then a main report that called the subreport three times, each time with your different text.
– Alan Schofield
15 hours ago
Thanks, I will follow your suggestions.
– zpgm
17 mins ago
add a comment |
easiest would be to have a main report with three sub reports.. pass all necessary parameters from the main report to the sub reports. design the sub reports to say what ever you want.. Original Duplicate Triplicate etc.. it should work a treat.. I've done this many times and it works well.
– Harry
20 hours ago
I agree with Harry. 1 subreport that can print your 10 pages and can accept a parameter that you can use to pass whatever text you want to it. Then a main report that called the subreport three times, each time with your different text.
– Alan Schofield
15 hours ago
Thanks, I will follow your suggestions.
– zpgm
17 mins ago
easiest would be to have a main report with three sub reports.. pass all necessary parameters from the main report to the sub reports. design the sub reports to say what ever you want.. Original Duplicate Triplicate etc.. it should work a treat.. I've done this many times and it works well.
– Harry
20 hours ago
easiest would be to have a main report with three sub reports.. pass all necessary parameters from the main report to the sub reports. design the sub reports to say what ever you want.. Original Duplicate Triplicate etc.. it should work a treat.. I've done this many times and it works well.
– Harry
20 hours ago
I agree with Harry. 1 subreport that can print your 10 pages and can accept a parameter that you can use to pass whatever text you want to it. Then a main report that called the subreport three times, each time with your different text.
– Alan Schofield
15 hours ago
I agree with Harry. 1 subreport that can print your 10 pages and can accept a parameter that you can use to pass whatever text you want to it. Then a main report that called the subreport three times, each time with your different text.
– Alan Schofield
15 hours ago
Thanks, I will follow your suggestions.
– zpgm
17 mins ago
Thanks, I will follow your suggestions.
– zpgm
17 mins ago
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
zpgm is a new contributor. Be nice, and check out our Code of Conduct.
zpgm is a new contributor. Be nice, and check out our Code of Conduct.
zpgm is a new contributor. Be nice, and check out our Code of Conduct.
zpgm is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53265883%2fvisual-studio-2017-design-report-that-prints-original-and-duplicate%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
CODo,1yR,wqWSMDMSi,0lcu3b45XJ2OFglWFdPkLa
easiest would be to have a main report with three sub reports.. pass all necessary parameters from the main report to the sub reports. design the sub reports to say what ever you want.. Original Duplicate Triplicate etc.. it should work a treat.. I've done this many times and it works well.
– Harry
20 hours ago
I agree with Harry. 1 subreport that can print your 10 pages and can accept a parameter that you can use to pass whatever text you want to it. Then a main report that called the subreport three times, each time with your different text.
– Alan Schofield
15 hours ago
Thanks, I will follow your suggestions.
– zpgm
17 mins ago