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

Messages

Former Member
0 Likes
728

Hi,

In a selection screen i have given payment date as mandatory.

Now I need to pop up a message when that payment date entered is not in the table payr.

The error or message format should be

Payment date &p_date& is not maintained in the table PAYR.

But in the message im getting &p_date& instead it should be the date entered inthe payment date parameter.

How can i achieve this.

Pls provide some pointers.

Thanks.

Hi,

In a selection screen i have given payment date as mandatory.

Now I need to pop up a message when that payment date entered is not in the table payr.

The error or message format should be

Payment date &p_date& is not maintained in the table PAYR.

But in the message im getting &p_date& instead it should be the date entered inthe payment date parameter.

How can i achieve this.

Pls provide some pointers.

Thanks.

4 REPLIES 4
Read only

Former Member
0 Likes
690

Hello Depthi,

First of all use proper subject, I am observing your posts from long time.

you need to maintain the message like this in message class..

> 001 Payment date & is not maintained in the table PAYR

now while calling use like this.

message e001(zz) with p_date.

the way you are using will work in scripts , not here..

Read only

0 Likes
690

Thank you.

Solved my problem

Edited by: Deepti.KK on Jun 30, 2009 7:46 AM

Read only

Former Member
0 Likes
690

hi,

use message class, and use the generic meesage that is message with &&&&.

then using text symbols call the message..

For ex : message e001(zmm) with 'Payment date' p_date ' is not maintained in the table PAYR.

if u want u can store 'Payment date' as Text-001 .

'is not maintained in the table PAYR' as text-002.

and message as

Message e001(zmm) with text-001 p_date text-002.

Thanks.,

subash

Read only

alex_m
Active Contributor
0 Likes
690

Your message declaration would be

001 Payment data & not maintained

then your message call would be

Message 001(ZZ) with p_date