SAP for Utilities Discussions
Connect with fellow SAP users to share best practices, troubleshoot challenges, and collaborate on building a sustainable energy future. Join the discussion.
cancel
Showing results for 
Search instead for 
Did you mean: 

Error BL207: No log found ( in main memory )

Former Member
0 Kudos

Hi,

User wants to create a service order against a contract. So he presses a button 'Create service order' on CRM and then in the background ISU system, transaction IW31, is called. But before the first screen is displayed a pop up error message No log found ( in main memory ) is triggered restricitng the user to create a service order.

This is not happening for all the contarcts. checked all the forums snd notes related to error BL207 but could not find anything related to service orders. Can anyone find the cause for this error?

Nikhil

2 REPLIES 2

Former Member
0 Kudos

I executed a function module and used the RAISE command. On return, I just checked for return code 0 and displayed error message. It defaulted to BL207. (Thus incorrect error handling).

CALL FUNCTION 'Z_GET_BUYER_FOR_CATEGORY'

EXPORTING

category = p_node

HIER_ID = 'BH'

changing

buyername = p_t_user

buyeremail = p_t_mail

EXCEPTIONS

NO_NODE = 1

NO_EMAIL = 2

NO_NAME = 3

OTHERS = 4

.

IF sy-subrc <> 0.

MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

0 Kudos

Hi

May i know what causes this error..?