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

BDCMSGCOLL

Former Member
0 Likes
487

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

3 REPLIES 3
Read only

Former Member
0 Likes
458

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

Read only

0 Likes
458

If you are using call transaction, then you must use the extension of ths statement.



data: messtab type table of BDCMSGCOLL with header line.

Call transaction 'SM50' using bdcdata
                              mode 'N'
                              <b>messages in messtab</b>.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
458

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