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

Suppress Information message during submit a standard program

Former Member
0 Likes
1,677

Hi experts,

I am calling standard program RCATSCO from a report using following code:

SUBMIT rcatstco WITH p_pernr IN s_pernr

WITH p_date IN lt_r_date

WITH p_belnr IN s_belnr

WITH s_rkdauf IN s_rkdauf

WITH p_budat EQ sy-datum

WITH p_warn EQ gc_x

EXPORTING LIST TO MEMORY

AND RETURN.

When all data are already transferred to controlling this standard program displays a popup information message 'No data for transfer'. I need to suppress this popup and continue execution of the report. Please help.

Thanks,

Arnab

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
902

One option is to do that check yourself and bypass submitting the program if there is no data to transfer. Another option is to submit the program via job. That way the the message will go to the job log. I see that you are using the option exporting list to memory, which means you want to read the spool after the program is executed. With the "via job" option, you may need to monitor the status of the job for completion and then read its spool.

Hi experts,

I am calling standard program RCATSCO from a report using following code:

SUBMIT rcatstco WITH p_pernr IN s_pernr

WITH p_date IN lt_r_date

WITH p_belnr IN s_belnr

WITH s_rkdauf IN s_rkdauf

WITH p_budat EQ sy-datum

WITH p_warn EQ gc_x

EXPORTING LIST TO MEMORY

AND RETURN.

When all data are already transferred to controlling this standard program displays a popup information message 'No data for transfer'. I need to suppress this popup and continue execution of the report. Please help.

Thanks,

Arnab

3 REPLIES 3
Read only

Former Member
0 Likes
903

One option is to do that check yourself and bypass submitting the program if there is no data to transfer. Another option is to submit the program via job. That way the the message will go to the job log. I see that you are using the option exporting list to memory, which means you want to read the spool after the program is executed. With the "via job" option, you may need to monitor the status of the job for completion and then read its spool.

Read only

ananthula_sumanth
Participant
0 Likes
902

Hi Samantha,

Did you get any solution for suppressing Info message during SUBMIT program?

Read only

0 Likes
902

Jus do a call transaction with bdcdata to transaction CAT7 with mode E.