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

ALV - Avoid page break when executing report in background

bettinasilveira
Participant
0 Likes
657

That's the question.

How to avoid the page break titles when an ALV is processed in background mode?

I couldn't find anything in the FM parameters.

Thanks in advance!

Bettina

That's the question.

How to avoid the page break titles when an ALV is processed in background mode?

I couldn't find anything in the FM parameters.

Thanks in advance!

Bettina

2 REPLIES 2
Read only

Former Member
0 Likes
604

You can get page-breaks by sorting on the field. So dont sort if your report is running in background(sy-batch = 'x').

if sy-batch = 'x'.

don't sort.

else.

sort.

endif.

Thanks,

Kiran

Read only

0 Likes
604

Thanks for your answer.

The problem is that the ALV is not sorted.