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: 

Status Message on ALV Grid

Former Member
0 Kudos

Hi All,

I want to display status message on the ALV grid output.Can anybody help e out with some idea or some sample code....

On the status bar i wan to display a message as below..

Eg: No of entries restricted to 200

1 ACCEPTED SOLUTION

uwe_schieferstein
Active Contributor
0 Kudos

Hello Ganesh

Simply send an appropriate success message before displaying your ALV list, e.g.:

...

MESSAGE s398(00) WITH 'No of entries restricted to 200'.

" Now display ALV list, e.g.

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'

EXPORTING

....

Regards,

Uwe

3 REPLIES 3

Former Member
0 Kudos

Any ideas how can i achieve it ??

uwe_schieferstein
Active Contributor
0 Kudos

Hello Ganesh

Simply send an appropriate success message before displaying your ALV list, e.g.:

...

MESSAGE s398(00) WITH 'No of entries restricted to 200'.

" Now display ALV list, e.g.

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'

EXPORTING

....

Regards,

Uwe

Former Member
0 Kudos

Hi,

can you display a message with the MESSAGE-statement?

In newer releases you can send a message without a message class.

For example:

MESSAGE 'No of entries restricted to 200' TYPE 'S'.

many greetings,

Stefan