‎2007 Jul 04 1:31 AM
Hi,
I have configured ALE for outbound processing using a sales order message type. The message type in the sales order has an error B1129 telling me that "According to the ALE distribution customer model, no messages of type ORDRSP are distributed from this system. I have checked WE24 and the recipient has added correctly and config for message type looks correct (followed the development steps in WEDI). Is there some other config I am missing?
This has all been tested in the Development system and worked fine, but is not working in the production system and we go live today!
Thanks in advance
‎2007 Jul 04 1:36 AM
Check with Program :
RBDIDOCR and below FM returns message.
CALL FUNCTION 'CHECK_CUSTOMER_NAMES'
EXPORTING
OBJECTTYPE = 'TABU'
TABLEKEY = TABLEKEY
TABLENAME = 'EDMSG'
IMPORTING
KEY_ALLOWED = KEY_ALLOWED
SYSTEM_SAP = SYSTEM_SAP
TABLE_NOT_FOUND = TABLE_NOT_FOUND
EXCEPTIONS
OBJECTTYPE_NOT_FILLED = 01
TABLENAME_NOT_FILLED = 02.
IF KEY_ALLOWED = SPACE.
IF SYSTEM_SAP IS INITIAL.
MESSAGE W119 WITH BDI_MESTYP.
ELSE.
MESSAGE W155 WITH BDI_MESTYP.
ENDIF.
ENDIF.
Thanks
Seshu
‎2007 Jul 04 1:36 AM
Check with Program :
RBDIDOCR and below FM returns message.
CALL FUNCTION 'CHECK_CUSTOMER_NAMES'
EXPORTING
OBJECTTYPE = 'TABU'
TABLEKEY = TABLEKEY
TABLENAME = 'EDMSG'
IMPORTING
KEY_ALLOWED = KEY_ALLOWED
SYSTEM_SAP = SYSTEM_SAP
TABLE_NOT_FOUND = TABLE_NOT_FOUND
EXCEPTIONS
OBJECTTYPE_NOT_FILLED = 01
TABLENAME_NOT_FILLED = 02.
IF KEY_ALLOWED = SPACE.
IF SYSTEM_SAP IS INITIAL.
MESSAGE W119 WITH BDI_MESTYP.
ELSE.
MESSAGE W155 WITH BDI_MESTYP.
ENDIF.
ENDIF.
Thanks
Seshu
‎2007 Jul 04 2:30 AM
Had not set up the new message type in the distribution model (BD64)!