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: 

How to supress Success message occuring after Call transaction

Former Member
0 Kudos

Hi,

Is there any FM, or addition to Call transaction??

so that success message of transaction can be supressed.

Sandeep

1 REPLY 1

Former Member
0 Kudos

Yes - just use the MESSAGES INTO addition:


DATA: BEGIN OF messtab OCCURS 0.      "Messages from CALL TRANSACTION
        INCLUDE STRUCTURE bdcmsgcoll.    
DATA: END OF messtab.

  CALL TRANSACTION 'ZZZZ' USING bdcdata MODE p_dmode UPDATE 'S'
                          MESSAGES INTO messtab.

Rob