on 2024 Oct 25 1:36 AM
Hello SAP Community,
I am working on an ABAP program where I use the "SUBMIT" statement to call another report. Even though I have included the "AND RETURN" clause, I am still encountering a standard warning message after the execution of the report. Here is a simplified version of my code:
SUBMIT rfbila00
WITH SELECTION-TABLE it_select
EXPORTING LIST TO MEMORY
AND RETURN.
I have also tried using EXPORTING LIST TO MEMORY and SUPPRESS DIALOG, but the warning message still appears. I would like to know how to suppress this warning message effectively while using the SUBMIT statement.
Has anyone experienced this issue, and what is the best way to handle or suppress warning messages in this scenario?
Request clarification before answering.
Your problem may not be with the syntax, but with the values in your it_select table. I suspect you want a single value for Company Code. To do this, you need to set "option = 'EQ'" where "selname = 'BUKRS'".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your input! I understand that the SUBMIT statement doesn’t prevent warning messages.
Could you please explain how to modify the standard? Are there any other ways to suppress these warning messages without making changes to the standard?
Also, is there another way to download reports from transaction F.01 through an ABAP program?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 17 | |
| 8 | |
| 7 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.