2011 Jul 08 3:11 PM
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
2011 Jul 18 9:48 AM
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.
2016 Sep 06 4:18 AM