‎2007 May 31 9:46 AM
I have used FM CS_BOM_EXPL_MAT_V2 for BOM but i mnot getting data.I want it for alternate BOM
CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
EXPORTING
ALTVO = 'X'
capid = 'BEST'
datuv = sy-datum
emeng = is_mseg_101-menge
MEHRS = 'X'
mtnrv = is_mseg_101-matnr
stlal = '1'
STLAN = '1'
werks = is_mseg_101-werks
TABLES
stb = it_stb
EXCEPTIONS
alt_not_found = 1
call_invalid = 2
material_not_found = 3
missing_authorization = 4
no_bom_found = 5
no_plant_data = 6
no_suitable_bom_found = 7
conversion_error = 8
OTHERS = 9.
can any ne help me to get data for alternate BOM
Thanks
‎2007 May 31 9:51 AM
pass the alternative bom no in stlal parameter...
regards
shiba dutta
‎2007 May 31 9:48 AM
‎2007 May 31 9:51 AM
pass the alternative bom no in stlal parameter...
regards
shiba dutta
‎2007 May 31 10:13 AM
‎2007 May 31 10:16 AM
Hi
Is your requirement is to get BOM for material.
In that case the above two function modules will work
you need to pass material number,alternative bom and date.
date should change in the format using edit mask.
Thanks