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

message class

Former Member
0 Likes
572

Hi all

in my program am using message-id z1 with report name declaration.and in the program i am using

different message id-ZZ which havig my desired message , which is not in Z1.can this would cause any problem?am not getting any error message for this.its working fine.

pls suggest..

thank

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
543

Try to use this way


message e000(ZZ)  with 'Testing'.

a®

3 REPLIES 3
Read only

former_member194669
Active Contributor
0 Likes
544

Try to use this way


message e000(ZZ)  with 'Testing'.

a®

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
543

Yes, there is no problem if using a different message classes in your program. You simply need to specifiy it in your MESSAGE statement.

Here ZMC is the message class

message e001(ZMC).

Regards,

Rich Heilman

Read only

Former Member
0 Likes
543

thanx ..