Application Development 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: 

output based on selection

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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

0 Kudos

Hi,

i'm using select-options with no interval.

i'll be displying 7 input fields.

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

Former Member
0 Kudos

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.