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: 

LEAVE TO LIST-PROCESSING

Former Member
0 Kudos

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

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

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

8 REPLIES 8

Former Member
0 Kudos

Hi

are you using line-size in your program.

eg:

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

Thanks,

Sree.

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

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

P561888
Active Contributor
0 Kudos

Hi ,

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

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

Regards,

Bharani

Former Member
0 Kudos

For better understanding go through the following link.

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

Thanks,

Sree.

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

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

0 Kudos

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

0 Kudos

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

new-page LINE-SIZE 132 NO-TITLE.

Regards,

Rich Heilman

0 Kudos

Thanks for your Help