cancel
Showing results for 
Search instead for 
Did you mean: 

Data in tabular form for multiple pages

Former Member
0 Kudos

Hi,

I have devlloped a purchase order smartform

in the form...in the main window i developed a table.inorder to get the data in the tabular form for multiple pages......what are the conditions that we have to put?

Edited by: Alvaro Tejada Galindo on Apr 21, 2008 4:01 PM

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi friend ,

can u tell me how to display the data in tabular form ..

for example i have 4 values in sapscript form

emp id :000030 contact no:9999999999

contact details:abc res details :..xyz

the ouput is coming like this ..I want that valuse in a tabular form .Can u please tellme how to do this ..

Thanks .

Former Member
0 Kudos

Hi,

you can use BOX command in scripts to build table .

BOX XPOS 0 CH WIDTH 40 CH HEIGHT 10 CH FRAME 3 TW

empid,,contactnumber,,contact details,,residentialdetails

BOX XPOS 0 CH WIDTH 10 CH HEIGHT 10 CH FRAME 3 TW

BOX XPOS 10 CH WIDTH 15 CH HEIGHT 10 CH FRAME 3 TW

BOX XPOS 25 CH WIDTH 10 CH HEIGHT 10 CH FRAME 3 TW

BOX XPOS 35 CH WIDTH 5 CH HEIGHT 10 CH FRAME 3 TW

/e elem1

BOX XPOS 0 CH WIDTH 40 CH HEIGHT 10 CH FRAME 3 TW

BOX XPOS 0 CH WIDTH 10 CH HEIGHT 10 CH FRAME 3 TW

BOX XPOS 10 CH WIDTH 15 CH HEIGHT 10 CH FRAME 3 TW

BOX XPOS 25 CH WIDTH 10 CH HEIGHT 10 CH FRAME 3 TW

BOX XPOS 35 CH WIDTH 5 CH HEIGHT 10 CH FRAME 3 TW

&empid&,,&contactnumber&,,&contactdetails&,,&residentialdetails&

Like this you can write .

based on your window space you can use commas between fields.

Former Member
0 Kudos

if u r created table in the main window that will automatically flow into next page.. No need to maintain any condition..

if u need any condition that is depended on u r requiremnt

if u have any footer maintain that one has after end of main window.

with regards,

Kiran.G

Former Member
0 Kudos

Hi,

in smart forms automatically extends main window in multiple pages.Create command node for main window it will extend window to multiple pages .

then you can have table in multiple pages.