2005 Sep 14 11:51 AM
Which table/ FM can i get the link bet. WERKS and BUKRS.
abhishek suppal
2005 Sep 14 12:23 PM
Hi,
you've to analyze 3 tables : t001, t001k and t001w
-> a help could be to create a join like help-view H_T001W_BUKRS (SE11)
regards Andreas
2005 Sep 14 1:58 PM
2005 Sep 14 2:01 PM
2005 Sep 14 2:07 PM
report zrich_0002
no standard page heading.
data: begin of itab occurs 0,
bukrs type t001k-bukrs,
bwkey type t001k-bwkey,
werks type t001w-werks,
end of itab.
select t001k~bukrs t001k~bwkey t001w~werks
into corresponding fields of table itab
from t001w
inner join t001k
on t001k~bwkey = t001w~bwkey.
loop at itab.
write:/ itab-bukrs, itab-bwkey, itab-werks.
endloop.
Regards,
Rich Heilman