Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ALE

Former Member
0 Likes
1,235

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,111

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

2 REPLIES 2
Read only

Former Member
0 Likes
1,112

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

Read only

Former Member
0 Likes
1,111

Had not set up the new message type in the distribution model (BD64)!