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

Problem Batch Input IW32

former_member588188
Participant
0 Likes
1,028

Hello gurus,

I am creating a program in which I use a batch input for transaction IW32. The batch is working perfectly but when the program is ended I am getting message IW 080 at the status bar.

My program is having an ALV with a log so I don't want the message at the status bar.

Please help me, I will reward any useful suggestion.

1 ACCEPTED SOLUTION
Read only

rajkumarnarasimman
Active Contributor
756

Hi David,

"My program is having an ALV with a log so I don't want the message at the status bar.

Anyhow, it is ALV report, before ALV is triggered, show custom message like 'No. of Records: <xyz> found' in the program. By doing so, the standard message will be hided by the custom message.

MESSAGE S000(ZSD) WITH 'No. of Records' L_COUNT 'FOUND'.

Regards

Rajkumar Narasimman

2 REPLIES 2
Read only

rajkumarnarasimman
Active Contributor
757

Hi David,

"My program is having an ALV with a log so I don't want the message at the status bar.

Anyhow, it is ALV report, before ALV is triggered, show custom message like 'No. of Records: <xyz> found' in the program. By doing so, the standard message will be hided by the custom message.

MESSAGE S000(ZSD) WITH 'No. of Records' L_COUNT 'FOUND'.

Regards

Rajkumar Narasimman

Read only

0 Likes
756

It works perfectly, thanks Rajkumar