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

In parameter using zdomain

Former Member
0 Likes
631

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

3 REPLIES 3
Read only

Former Member
0 Likes
577

hi you can give the values to the domain..

go to domainchoose value range tabintervals--lower limit upper limit..

regards,

venkat.

Read only

former_member156446
Active Contributor
0 Likes
577

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.

Read only

Former Member
0 Likes
577

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.