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

regarding bdc list

Former Member
0 Likes
498

in bdc session method

how to display success records and error records in list (report list)

could u plz give me the code and comments

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
458

Hi rejesh reddy,

All the message attributes are stored in the table 'MESSTAB'.

looping at this table and using the attributes you can retreive message text from table t100.

Thank you.

3 REPLIES 3
Read only

Former Member
0 Likes
459

Hi rejesh reddy,

All the message attributes are stored in the table 'MESSTAB'.

looping at this table and using the attributes you can retreive message text from table t100.

Thank you.

Read only

Former Member
0 Likes
458

for call transaction method

data : itab like bdcmsgcoll occurs 0 with header line.

CALL TRANSACTION 'SE38' USING BDCDATA MODE 'N'

MESSAGES INTO ITAB.

now your itab contain the messages with message id message type and all those.

loop at itab.

write : / itab-MSGTYP, itab-MSGID, itab-msgv1.

endloop.

regards

shiba dutta

Read only

0 Likes
458

thanks