hi all ,
can anybody tell me how can i give the condition in windows or page windows?
i have to print text that....'u r not authorised to print this document no' .
i have given it in windows as well as in page window...
but problem is that i have to print this msg only for fiew document type ...LFKART.
means IF LFKART <> 'ZMNM' or LFKART <> 'ZMNV' .
'u r not authorised to print this document no'
ENDIF .
i m also using a program accordingly .
but in o/p, msg is coming for 'zmnm' n 'zmnv' also which i don't want..
can anybody help me its urgent.....
thanks in advance.
saurabh srivastava.
Hi,
Please try this: it will print the message for all other document types except ZMNM and ZMNV.
/: IF &LFKART& = 'ZMNM' or &LFKART& = 'ZMNV'.
/: ELSE
Your message
/: ENDIF.
Or you can try the following.
/: IF &LFKART& <> 'ZMNM' AND &LFKART& <> 'ZMNV'.
Your message
/: ENDIF.
Thanks and regards,
Mouli.
Add a comment