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

Material components

Former Member
0 Likes
804

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
770

Hi Sai ram,

The transaction CS03 displays the bom components of the material.

REgards,

Ravi

5 REPLIES 5
Read only

Former Member
0 Likes
771

Hi Sai ram,

The transaction CS03 displays the bom components of the material.

REgards,

Ravi

Read only

Former Member
0 Likes
770

Hi Sai,

STKO for BOM Header

STPO for BOM Item

Regards,

Sagar

Read only

Former Member
0 Likes
770

Hi,

you can get the info from tables STPO and STKO.

Regards

vijay

Read only

ferry_lianto
Active Contributor
0 Likes
770

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

Read only

vinod_gunaware2
Active Contributor
0 Likes
770
  • GET THE CLASSIFICATION AND CHARACTERISTICS

<b>CLAF_CLASSIFICATION_OF_OBJECTS</b>

Tables

KONH

A901

A057

A004

MARA

MARC

MAKT

regards

vinod