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

report

Former Member
0 Likes
414

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
Read only

Former Member
0 Likes
388

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
Read only

Former Member
0 Likes
388

Hi,

Use ULINE to diaplay horizontal line.

Regards

Amole

Read only

Former Member
0 Likes
389

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.