on 2013 May 09 7:18 PM
Hi All,
Iam working on a development in which I am passing entries to adobe form as a table.There can be 100 entries in table but the adobe form need to display only 20 rows in a page and should display next 20 rows in 2nd page and so on .
Please let me know how to handle this scenario in SAP Adobe.
Request clarification before answering.
Hi Baradwaj,
add an index column to the table but hide it. Then add similar javascript code in "conditional breaks" as below:
if (this.resolveNode("table.ZINDEX") % 20) == 0)
Jay
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I think Jay gave you the right info for you to progress for your particular issue.
1. Add a new column called ZINDEX, this should contains running number to indicate the index of your record.
2.Do the conditional break in your table.
Just in case you do not know where to put the conditional, check this
http://www.saptechnical.com/Tutorials/AdobeForms/Break/Index.htm
COPY and PASTE this conditional in the box
if (this.resolveNode("table.ZINDEX") % 20) == 0)
If you need any further help, kindly provide screen shoot and provide error message if any; if you have the issue.
Also, google always helps.
regards,
Xiang Li
User | Count |
---|---|
31 | |
21 | |
16 | |
8 | |
7 | |
6 | |
5 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.