cancel
Showing results for 
Search instead for 
Did you mean: 

System message after enter the BP

Former Member
0 Kudos

Hi,experts

In WEB UI,whenever i create a sale order or complaint order, once i enter the bp(eg.sold-to party or ship-to party),it always pop up a warning message'Business partner xxxxxxxx is not a business partner' and the bp that i entered becomes messy code additional 'does not exist'.However,everything is ok when i do the same practice in SAPgui.

how to solve it and please give me a clear approach .

thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

This is just a hint.

Find the message class of the message by looking up table T100 with the message.

Once you know the message number and class, do a where used and get to code where the message comes.

You can debug and find why the message comes.

Probably a Function Module is giving the error.

Generally you get a message like 'xxx is not a xxx' when your user id is not an employee

and you try to certain transaction, then you have to assign an Employee role to your id.

Regards,

Masood Imrani S.

prasenjit_sharma
Active Contributor
0 Kudos

Hi,

Actually in Web UI the messages are not displayed using the message statement. Instead they use methods of the message manager to add it to UI.

You may try the where used list of the add_message method of the class cl_bsp_wd_message_service. and try to look for your message class name and message no. The issue here is the list would be huge and you need to use your own jurisdiction to search only the relevant places.

Alternatively, you can try debugging setting break-point at statement 'call method'.

Good luck.

Regards

Prasenjit

Answers (1)

Answers (1)

Former Member
0 Kudos

has solved,its cause is the same as ''