cancel
Showing results for 
Search instead for 
Did you mean: 

Table that stores the application logs messages for transaction CRMD_ORDER

Former Member
0 Kudos

Hi Guru's,

I would like to know which CRM table that is used to store application logs (consist of error / warning / information messages) in transaction CRMD_ORDER? I would like to retrieve the text messages of the application log.

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

BGarcia
Active Contributor

Hi there,

The logs are on tables BALHDR (header) and BALDAT (detail).

In BALHDR you can fill OBJECT with 'CRM_DOCUMENT' and EXTNUMBER with the document GUID (you can obtain it in CRMD_ORDERADM_H table).

The BALDAT is a cluster table, so the information is a little 'encoded' there for direct consulting without abap code.

Alternatively, you can use FM APPL_LOG_READ_DB to read the messages that are contained in any CRM document.

Kind regards,

Former Member
0 Kudos

Solved. Thanks.

Answers (0)