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

How to display tabular form data in sap scripts?

Former Member
0 Likes
500

Hi all,

I have long text(also contains data in tabular form) in QP01.I have to display this in my

sapscript form.Problem is this long text also contains some data in tabular form(data is in table format).How to display this in the sript form?

Thanks,

Balaji

Hi all,

I have long text(also contains data in tabular form) in QP01.I have to display this in my

sapscript form.Problem is this long text also contains some data in tabular form(data is in table format).How to display this in the sript form?

Thanks,

Balaji

2 REPLIES 2
Read only

Former Member
0 Likes
418

hi,

To print a Tabular column in SAP Script use the Box Command

*Heading

Material ,, ,, ,, ,,Qty ,, ,, Price

*Actual Data

&WA_MATERIAL-MATNR(C)& ,, &T_FKIMG(C)& ,, &T_NETWR(C)& &ULINE(58)&

POSITION XORIGIN '1.00' CM YORIGIN '10' CM

BOX WIDTH '16.5' CM HEIGHT '.75'CM FRAME 10 TW INTENSITY 10

where ,, determines the required number of spaces

Hope it is of help to you.

Thanks and regards,

Pavithra

Read only

Former Member
0 Likes
418

Hi,

Bcz ur table is having a long asingle record will be displayed as in noof lines in script.

So for this u need to adjust the form size on administrative setting in the form or u need to truncate the message from 1st pos to some number of characters.

i think it will help ....