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: 

how to write select statement ?

Former Member
0 Kudos

Hi,

i have requirement like below :

In selection screen we have material number as selection options and plant as single entry.

Based on the input.

We have to extract the material number and plant based on MTART = AA or UT in MARA table and STLAN = 1 in MAST table.

how to write a select statment to pick values from selection option and extract those material and plant which fullfill above conditions.

Please let me know..

its urgent

please help..

i have written code like below..

types: begin of x_it_mat,

matnr type mkal-matnr,

werks type mkal-werks,

stlan type mast-stlan,

end of x_it_mat.

types: begin of x_it_mat1,

matnr type mkal-matnr,

werks type mkal-werks,

mtart type mara-mtart,

end of x_it_mat1.

data : it_mat type table of x_it_mat,

wa_mat like line of it_mat.

data : it_mat1 type table of x_it_mat1,

wa_mat1 like line of it_mat1.

TABLES: MKAL , MAST , MARA.

SELECTION-SCREEN BEGIN OF BLOCK matnr

WITH FRAME TITLE TEXT-001.

select-options :

so_matnr for mkal-matnr.

SELECTION-SCREEN END OF BLOCK matnr.

SELECTION-SCREEN BEGIN OF BLOCK plant

WITH FRAME TITLE TEXT-002.

parameter p_werks type mkal-werks.

SELECTION-SCREEN END OF BLOCK plant.

select matnr

werks

stlan

from mkal INTO table it_mat

where matnr in so_matnr

and werks = p_werks.

after this how to write another select statement to extract material by satisfiying above 2 conditions..

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Check the below code :

tables : mara,

mast.

data : begin of i_data occurs 0,

matnr like mara-matnr,

end of i_data.

select-options : s_matnr for mara-matnr.

parameters p_werks like mast-werks.

start-of-selection.

select a~matnr into table i_data

from mara as a inner join mast as b on amatnr = bmatnr

where b~werks = p_werks

and a~matnr in s_matnr

and a~mtart = 'AA'

or a~mtart = 'UT'

and b~stlan = '1'.

loop at i_data.

write:/ i_data-matnr.

endloop.

Thanks

Seshu

4 REPLIES 4

Former Member
0 Kudos

Check the below code :

tables : mara,

mast.

data : begin of i_data occurs 0,

matnr like mara-matnr,

end of i_data.

select-options : s_matnr for mara-matnr.

parameters p_werks like mast-werks.

start-of-selection.

select a~matnr into table i_data

from mara as a inner join mast as b on amatnr = bmatnr

where b~werks = p_werks

and a~matnr in s_matnr

and a~mtart = 'AA'

or a~mtart = 'UT'

and b~stlan = '1'.

loop at i_data.

write:/ i_data-matnr.

endloop.

Thanks

Seshu

0 Kudos

hi seshu,

thanks you very much for your sample. i have small change in question. If plant is also having selection opiton.

at final i want internal table with material number and plant which satisfying all those conditions..

please help....

0 Kudos

Hi ,

Please check the below code and modified plant as select-option

Check the below code :

tables : mara,

mast.

data : begin of i_data occurs 0,

matnr like mara-matnr,

end of i_data.

select-options : s_matnr for mara-matnr,

<b>S_werks for mast-werks.</b>

start-of-selection.

select a~matnr into table i_data

from mara as a inner join mast as b on amatnr = bmatnr

where <b>b~werks in s_werks</b>

and a~matnr in s_matnr

and a~mtart = 'AA'

or a~mtart = 'UT'

and b~stlan = '1'.

loop at i_data.

write:/ i_data-matnr.

endloop.

Hope you got it.

Thanks

Seshu

Former Member
0 Kudos

Hi SRM

That 's your requirements , you need to add more code like ( ( amtart = 'AA' ) OR ( amtart = 'UT') ) , otherwise system will select material that have condition amtart = 'AA' or amtart = 'UT' by igonre another condition.

SELECT bmatnr bwerks

INTO CORRESPONDING FIELDS OF TABLE it_mat1

FROM mara AS a

INNER JOIN mast AS b

ON bmatnr = amatnr

WHERE ( ( amtart = 'AA' ) OR ( amtart = 'UT') ) AND

b~stlan = 1 AND

b~werks in p_werks.

.

Regards

Wiboon

Message was edited by:

Wiboon Chaiyabutsakul

Message was edited by:

Wiboon Chaiyabutsakul