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

output based on selection

Former Member
0 Likes
703

Hi all,

i'm working on MM report,

i got one field in selection screen as

PRODUCT TYPE = -


(eg 6A, 6B, 6C)

if i execute result should be based on this..

if PRODUCT TYPE = -


(eg 1A, 2B)

it should give some other output....

and should not take 6A, 6B in selection.

how to approach this......

Regards

Suprith

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
667

hi suprit,

parameters:.prv.....

select * from table into internal_table where pr_nmw = prv...

is it ok....or u want to display some other thing....

regards,

Vamshi

5 REPLIES 5
Read only

Former Member
0 Likes
668

hi suprit,

parameters:.prv.....

select * from table into internal_table where pr_nmw = prv...

is it ok....or u want to display some other thing....

regards,

Vamshi

Read only

0 Likes
667

Hi,

i'm using select-options with no interval.

i'll be displying 7 input fields.

Read only

Former Member
0 Likes
667

Hi suprit,

select options s_prv .....

in select stmt

select * from table into internal table where prv in s_prv..

the result vil b in ur internal table...

Regards,

Vamshi

Read only

Former Member
0 Likes
667

Hi Suprith,

In your where clause while selecting

try to use the product type what ever u need eg 1A, 2B...

by tht u can eliminate remaining.

Regards,

sg.

Read only

Former Member
0 Likes
667

Hi,

In select statement where clause use wildchar condition as - not like 6_.

if you want to restrict user itself to enter those values, write validation in At selection screen.

or if those values should not be shown in f4 itself, so user can't enter, you can restrict with your search help.

Regards

Salini.