133 SAP Message of Class B1 IDoc type has not been entered for message type &











133(B1) - IDoc type has not been entered for message type &

Message number 133 of class B1 is used to display message "IDoc type has not been entered for message type &" and can be triggered using the following ABAP code:

DATA: lv_val1(100) TYPE C.
lv_val1 = '123'.

    MESSAGE E133(B1) WITH lv_val1. "Error message example

    MESSAGE W133(B1) WITH lv_val1. "Warning message example

    MESSAGE I133(B1) WITH lv_val1. "Information message example
See here for more options


What causes this issue

You have probably maintained a message type using a transaction.
However, you have not maintained an IDOC type corresponding to themessage type. The result is that there is now a message type without acorresponding IDOC type.

System Response



How to fix

You can use a transaction to maintain an IDOC type for the message
type, or use a transaction to delete the message type.It is better to create message types and IDOC types in a program only.


Message text extract from SAP system. Copyright SAP SE.


Return to Message Class B1 main page



Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!