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: 

query regarding CS13 transaction

Former Member
0 Kudos

as we all know that CS13 can be used for disaplying bom for single material only,but my reuirement is that i have to develop a report to display the list for more than one material.

so is there any standard report or function module by which i can get the list of materials for more than one material.

waiting for your reply.

3 REPLIES 3

NAeda
Contributor
0 Kudos

Hi ashish pandey,

Here is the function module to BOM Details.

you have to pass the material to this function module.

CSEP_MAT_BOM_READ

Thanks

Regards

Narsim Aeda

0 Kudos

Hi,

Check this


loop at i_mara.
ALL FUNCTION 'CSEP_MAT_BOM_READ'
      EXPORTING
        material             = imara-matnr
        plant                = pwerks
        bom_usage            = '1'
*   ALTERNATIVE          =
*   VALID_FROM           =
*   VALID_TO             =
*   CHANGE_NO            =
*   REVISION_LEVEL       =
*   FL_DOC_LINKS         =
*   FL_DMU_TMX           =
* IMPORTING
*   FL_WARNING           =
    TABLES
       t_stpo               =  tdet
        t_stko               = thead
*   T_DEP_DATA           =
*   T_DEP_DESCR          =
*   T_DEP_ORDER          =
*   T_DEP_SOURCE         =
*   T_DEP_DOC            =
*   T_DOC_LINK           =
*   T_DMU_TMX            =
 EXCEPTIONS
   ERROR                = 1
   OTHERS               = 2.
endloop

Thanks

regards

Narsim Aeda

Edited by: Aeda N on Oct 16, 2008 11:38 AM

Former Member
0 Kudos

still no answer i got