2006 Apr 04 1:27 PM
Hi all,
As u know one material is a combination of small components(bill of materials) i want to know where all thse things like what are the componetes and their charactaristics are stored.
say one mateial is a combination of two things and for each combination we can have different materials,
where this data is stored.
Thanks in advance
2006 Apr 04 1:59 PM
Hi Sai ram,
The transaction CS03 displays the bom components of the material.
REgards,
Ravi
Hi Sai ram,
The transaction CS03 displays the bom components of the material.
REgards,
Ravi
2006 Apr 04 1:59 PM
Hi Sai ram,
The transaction CS03 displays the bom components of the material.
REgards,
Ravi
2006 Apr 04 2:10 PM
2006 Apr 04 2:10 PM
Hi,
you can get the info from tables STPO and STKO.
Regards
vijay
2006 Apr 04 2:10 PM
Hi Sai,
Please check table <b>STPO, STKO and MAST</b>.
or you can use this FM <b>CS_WHERE_USED_MAT</b>.
data: begin of i_topmat occurs 0.
include structure mc29s.
data: end of i_topmat.
data: begin of i_wultb occurs 0.
include structure stpov.
data: end of i_wultb.
data: begin of i_equicat occurs 0.
include structure cscequi.
data: end of i_equicat.
data: begin of i_kndcat occurs 0.
include structure cscknd.
data: end of i_kndcat.
data: begin of i_matcat occurs 0.
include structure cscmat.
data: end of i_matcat.
data: begin of i_prjcat occurs 0.
include structure cscprj.
data: end of i_prjcat.
data: begin of i_stdcat occurs 0.
include structure cscstd.
data: end of i_stdcat.
data: begin of i_tplcat occurs 0.
include structure csctpl.
data: end of i_tplcat.
refresh: i_topmat, i_wultb.
call function 'CS_WHERE_USED_MAT'
exporting
datub = sy-datum
datuv = sy-datum
matnr = wa_matnr
werks = wa_werks
importing
topmat = i_topmat
tables
wultb = i_wultb
equicat = i_equicat
kndcat = i_kndcat
matcat = i_matcat
stdcat = i_stdcat
tplcat = i_tplcat
exceptions
call_invalid = 1
material_not_found = 2
no_where_used_rec_found = 3
no_where_used_rec_selected = 4
no_where_used_rec_valid = 5
others = 6.
Hope this will help.
Regards,
Ferry Lianto
2006 Apr 04 2:23 PM
GET THE CLASSIFICATION AND CHARACTERISTICS
<b>CLAF_CLASSIFICATION_OF_OBJECTS</b>
Tables
KONH
A901
A057
A004
MARA
MARC
MAKT
regards
vinod
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |