2009 May 05 5:17 PM
Hi!!!
I need to identify who's the parent item and the child item after use 'CS_BOM_EXPL_MAT_V2'.
I know how view this through transactions like IE03 or CS03. But I want save this information in an internal table.
Please give me a code example. I saw similar post but I didn't understand it.
Thanks a lot.
Hi!!!
I need to identify who's the parent item and the child item after use 'CS_BOM_EXPL_MAT_V2'.
I know how view this through transactions like IE03 or CS03. But I want save this information in an internal table.
Please give me a code example. I saw similar post but I didn't understand it.
Thanks a lot.
2009 May 05 5:40 PM
Hi,
Use this function module
CALL FUNCTION 'CSAP_MAT_BOM_READ' EXPORTING material = p_assy plant = p_plant bom_usage = p_usage change_no = p_chgnm TABLES t_stpo = t_bom t_dep_data = t_dep_data EXCEPTIONS error = 1 OTHERS = 2. IF sy-subrc <> 0 OR t_dep_data[] IS INITIAL. RETURN. ENDIF.
Regards
Krishna
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |