‎2005 Dec 18 4:58 AM
dear consultants,
good day,
i heard the in BDC-sessions,all the error records will saved in the log-file,BDCMSGCOLL,
how to see that log-file,in SE11? or at SM35?
my thanks& regards,
kcc
‎2005 Dec 18 5:03 AM
Hi Kc,
Goto SM35, double click the session that ended in error. This will take you to another screen with three TABS, namely Transaction, Screen, and Log. The log details can be found in the log tab.
Hope that solves your problem.
Cheers
Kathirvel
‎2005 Dec 18 5:56 PM
‎2005 Dec 18 8:05 PM
Hi Mouli,
In the call transaction statement:
<b>Example:</b>
DATA BEGIN OF MESSTAB OCCURS 10.
INCLUDE STRUCTURE BDCMSGCOLL.
DATA END OF MESSTAB.
CALL TRANSACTION 'SE38' USING BDCDATA MODE 'N'
MESSAGES INTO MESSTAB.
Messtab is an internal table which holds all the messages(Success,Error etc)..
You can read / loop on this internal table to see the messages.
Regards,
Raj