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

LEAVE TO LIST-PROCESSING

Former Member
0 Likes
1,024

Hi Abapers,

I am using LEAVE TO LIST-PROCESSING in my Program.

In the Output list Iam having 15 fields.

But the output list displaying only 12 fields. I think problem is due to LIne-Size. How to set this?

Thanks,

Kishore

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
960

You can also set this by using the NEW-PAGE statement just before your first WRITE statement.

new-page LINE-SIZE 132.

Regards,

Rich Heilman

Hi Abapers,

I am using LEAVE TO LIST-PROCESSING in my Program.

In the Output list Iam having 15 fields.

But the output list displaying only 12 fields. I think problem is due to LIne-Size. How to set this?

Thanks,

Kishore

8 REPLIES 8
Read only

Former Member
0 Likes
960

Hi

are you using line-size in your program.

eg:

REPORT ztest_112 LINE-SIZE 80(whateever you want).

Thanks,

Sree.

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
960

I would assume that you are doing this in a module pool progam? If so, you can add this to the PROGRAM statement which can be found in your main program code.

PROGRAM sapmz_somthing LINE-SIZE 132.

Regards,

Rich Heilman

Read only

BH2408
Active Contributor
0 Likes
960

Hi ,

I think the Line-size what ever u mentioned is low.

Report zxyz line-size i line-count j(k).

Regards,

Bharani

Read only

Former Member
0 Likes
960

For better understanding go through the following link.

http://help.sap.com/saphelp_46c/helpdata/en/9f/db9d2f35c111d1829f0000e829fbfe/content.htm

Thanks,

Sree.

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
961

You can also set this by using the NEW-PAGE statement just before your first WRITE statement.

new-page LINE-SIZE 132.

Regards,

Rich Heilman

Read only

0 Likes
960

Thanks Rich Heilman, It's working.

One more question is in the output list I dont want to see This Dynamic List Display.

How to supress this.

Thanks,

Kishore

Read only

0 Likes
960

If you are referring to the "header line", then add the NO-TITLE extension.

new-page LINE-SIZE 132 NO-TITLE.

Regards,

Rich Heilman

Read only

0 Likes
960

Thanks for your Help