Hi,
you have to identify the master table, maybe the LS_MAT (list of material ?), go to the table that give a link between material number and BOM, and go in the detail of the BOM
loop at ls_mat.
loop at ls_mast
where matnr eq ls_mat-matnr.
loop at ls_stpo
where stlnr eq ls_mast-stlnr ..
move-corressponding : ls_mat to ls_final ,
ls_mast to ls_final ,
ls_stpo to ls_final.
append ls_final.
endloop.
endloop.
endloop.
regards
Fred