cancel
Showing results for 
Search instead for 
Did you mean: 

Pageselect in Adobe Forms

12-16-2011 1:30 PM
178 views 1 comments
0 Likes
SAP Managed Tags
Subscribe

Hi all,

is there any possibillity to select pages to be printed?

For example,

"-5" print all pages up to 5 (included)

"4" just print page 4

"2-5" print pages 2,3,4,5.

"-2, 4-6" print pages 1,2,4,5,6

This is possible with smartforms using parameter TDPAGESLCT. But I couldn't find this parameter for Adobe Forms.

Has anybody a solution for that or am I only be able to print the whole form?

The user has to be able to select the pages to be printed (like number of copies.).

Thanks

0 Likes

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Likes

Hi,

Try to use the firstPage and lastPage properties in javascript:

var pp = this.getPrintParams();

pp.firstPage = 0;

pp.lastPage = 9;

this.print(pp);

Based on above code, you can develop some workaround for achieving your requirement.

Hope this helps.

Thanks,

Radhika