‎2008 May 03 11:43 AM
Hi expart,
I m using parameter like zdomain .
parameters : zage type i .
my requirment is zage n't above 60 n't below 20 .zage range between 20 to 60 .zage is n't a ztable it is domain . to tell me what is codeing in report to full fill the requirment .
regards
Bhabani
‎2008 May 03 11:56 AM
hi you can give the values to the domain..
go to domainchoose value range tabintervals--lower limit upper limit..
regards,
venkat.
‎2008 May 03 5:18 PM
parameters : zage type i .
you can code a validation in ur program too..
at selection-screen.
if zage < 20 or zage > 60.
error message..
endif.
‎2008 May 04 7:37 AM
Hi,
Use the below code.
parameters: zage type i.
At selection-screen.
if zage LT 20 or zage GT 60.
message 'Age should be between 20 and 60' type 'E'.
endif.