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: 

message

former_member182412
Active Contributor
0 Kudos

hi experts,

i need to display the message in status bar like this. 'the document 5000162 created sucessfully'.

the document no is changed everytime.i got the document no in one table. i have created one message class with

message like this 'the document &1 created successfully'. but how can i assign &1 to document no.

can anybody help for this.

thanks and regards,

praveen

3 REPLIES 3

former_member181962
Active Contributor
0 Kudos

In the program,

you should do like this:

assuming that v_doc will have the doc number,

message s001(zz) with v_doc. "Here s refers to Success message type

zz is the message class.

001 is the message number.

Regards,

ravi

anversha_s
Active Contributor
0 Kudos

hi praveen,

use like this.

message s100(zmesage_class) with f_doc.

rgds

anver

pls mark hlpful asnwers

Former Member
0 Kudos

Hi praveen,

Message <S><Messageno>(Message Class) with <Doc>.

Thanks

eswar