Application Development 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: 

Messages in ECC 6

Former Member
0 Kudos

I am writing below message in ECC 6.

MESSAGE 'No data available in this criteria' TYPE 'E'.

But it is showing ' No Vendor specified'.

Can anyone explain to me how to rectify the above error?

Thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

if i_BSAS[] is initial.

MESSAGE 'No data available in this criteria' TYPE 'E'.

exit.

endif.

I am checking internal table within my programme.

8 REPLIES 8

Former Member
0 Kudos

Hi Raj,

just put a break-point on this line. if this line is executed by SAP and it is giving differrnt message than reply me.

I think so there one another statement which is executed by SAP before youe own statement.

and also check it which type of message used by you.

E - Error

S - Successfull

I - information

W - Warning

Regards,

Vipul

Former Member
0 Kudos

Please Check the Error Number From the error screen by double cliking on it and check the same in SE91 by giving same class name and number. Then find out from where this message is pop out.

Regds,

Anil

former_member198275
Active Contributor
0 Kudos

Hi,

I have executed the message, its working fine. U check first that, before ur message not other message is comming.

Former Member
0 Kudos

Hi Raj,

I checked in ECC 6.0 system it is displying the message specified by you No data available in this criteria. Your statement does not contain any error. Might be in the selection screen of your program you didn't specified vendor number .

Thanks,

Naveen Kumar.

Former Member
0 Kudos

Hi,

I guess you are using the above message in some standard transaction userexit/Badi and the other message is because of the business logic of the application.

So where are you using this?

Regards

Karthik D

Former Member
0 Kudos

if i_BSAS[] is initial.

MESSAGE 'No data available in this criteria' TYPE 'E'.

exit.

endif.

I am checking internal table within my programme.

0 Kudos

Hi,

See the below thread, solution is given there;

The problem is with message class 00, Goto -> SE91 -> message class 00 -> message number 001 -> and change it to &1&2&3&4&5&6&7&8.

Save and activate.

Now your problem will be solved.

Regards

Karthik D

P.S.: Please Search before posting a query.

Former Member
0 Kudos

Thanks Karthik. Problem Solved.