cancel
Showing results for 
Search instead for 
Did you mean: 

Message Sequence in BDC

Former Member
0 Kudos

Hi,

Can anyone please tell me in what sequence will the messages be filled in the Messages Internal Table(i_messtab), after the statement

CALL TRANSACTION c_tcode_cl20 USING i_bdcdata

MODE c_mode_n

UPDATE c_update_s

MESSAGES INTO i_messtab.

Eg. if the messages produced are in the following sequence in the transaction.

1. Information ('I') type message 1.

2. Information ('I') type message 2.

3. Warning ('W') type message 3.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Abishek,

The messages internal table will be populated as you get messages on the actual screen transaction. They will appear in the sequence in which is gets triggered in a normal transaction. They are not organized themselves based on the type you will have to sort the table to get the sequence if you need a specific sequence.

Hope this helps.

Cheers

VJ