Hi, Wendy
I created a service PR , and in SRM changed 'BE_LOG_SYSTEM' as SRM logistic system, changed 'SUBTYPE' as 'EP'.
But I started carry sourcing cockpit to create a PO, the system dump. I checked the error by ST22.
the error as bellow:
============================
IF ev_object_id IS INITIAL.
* get next free number
CALL FUNCTION 'NUMBER_GET_NEXT'
EXPORTING
nr_range_nr = lv_nr_range
object = 'REQREQ'
IMPORTING
number = ev_object_id
EXCEPTIONS
interval_not_found = 1
number_range_not_intern = 2
object_not_found = 3.
* if not possible to determine doc number
IF sy-subrc <> 0.
* raise exception
ls_message-msgty = 'E'.
ls_message-msgid = 'BBP_PU'.
ls_message-msgno = 208.
ls_message-msgv1 = lv_nr_range.
APPEND ls_message TO lt_message.
CREATE OBJECT lx_sc_transfer
EXPORTING
bbp_messages = lt_message.
RAISE EXCEPTION lx_sc_transfer.
ENDIF.
=====================
So , the system still try to create Backend PO. How to stop it ?
thanks