Application Development 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: 

report

Former Member
0 Kudos

hai everyone,

i am displaying my report datas in the sapscript ....i want to display that contents in a tabular format in sapscript can anyone help it please...

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Use the BOX command in SAP script to make tables.

See examples

For horizontal line
/:   POSITION PAGE                                     
/:   POSITION XORIGIN '2.0' CH YORIGIN '34.2' LN       
/:   SIZE WIDTH '75.0' CH HEIGHT '0' LN                
/:   BOX FRAME 10 TW                                   

For vertical line
/:   POSITION PAGE                                 
/:   POSITION XORIGIN '2.0' CH YORIGIN '32.1' LN   
/:   SIZE WIDTH '0' CH HEIGHT '28.1' LN            
/:   BOX FRAME 10 TW 

Belive this helps you,

rgds,

TM.

2 REPLIES 2

Former Member
0 Kudos

Hi,

Use ULINE to diaplay horizontal line.

Regards

Amole

Former Member
0 Kudos

Use the BOX command in SAP script to make tables.

See examples

For horizontal line
/:   POSITION PAGE                                     
/:   POSITION XORIGIN '2.0' CH YORIGIN '34.2' LN       
/:   SIZE WIDTH '75.0' CH HEIGHT '0' LN                
/:   BOX FRAME 10 TW                                   

For vertical line
/:   POSITION PAGE                                 
/:   POSITION XORIGIN '2.0' CH YORIGIN '32.1' LN   
/:   SIZE WIDTH '0' CH HEIGHT '28.1' LN            
/:   BOX FRAME 10 TW 

Belive this helps you,

rgds,

TM.