‎2007 Jan 27 5:36 AM
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
‎2007 Jan 27 6:00 AM
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.
‎2007 Jan 27 6:00 AM
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.
‎2007 Jan 27 6:14 AM
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
‎2007 Jan 29 5:39 AM