Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Smartforms Table design

Former Member
0 Likes
344

My requirment is In Smartforms first page I want to print

table from 1-100 and in second page i want to

print A1-A100 alphabet

header should be same for each page.

Header

Mainbody.

*************************************************

1 11...........91

2 12...........92

3 13...........93

4 14...........94

5 15...........95

100

Header

Main-Body.

***************************************************

A -


A1

B -


B1

C -


C1

D -


D1

E -


E1

F -


F1

G -


G1

Footer.

How to do that ?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
311

Hi,

1) Create a loop node, then give internal table in loop node that should have all records(1 - 100, A1 - A100, etc).

2) create another internal table and pass only those records you want to display in first page ( for example: 1 - 100).

3) Create table node(if header is same for all pages) and pass the second internal table into table node.

4) Create program lines node and write code so that u have to delete those displayed records from first internal table.

5) Next create a Command node and check goto new page and give same page. And also write condition if first internal table is not initial.

6) At last create a final window, which act as footer.

Regards,

Thilotham.

1 REPLY 1
Read only

Former Member
0 Likes
312

Hi,

1) Create a loop node, then give internal table in loop node that should have all records(1 - 100, A1 - A100, etc).

2) create another internal table and pass only those records you want to display in first page ( for example: 1 - 100).

3) Create table node(if header is same for all pages) and pass the second internal table into table node.

4) Create program lines node and write code so that u have to delete those displayed records from first internal table.

5) Next create a Command node and check goto new page and give same page. And also write condition if first internal table is not initial.

6) At last create a final window, which act as footer.

Regards,

Thilotham.