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: 

Link Betwwen Finish Material Between Raw Materail

Former Member
0 Kudos

Dear All ,

I Want to link between finish mat. between raw material with batch number using ,

I am refer t-code BMBC in that t-code i enter batch no. of finish mat. and i find out last batch is nothing but raw material . but i cant find link between this two batch.i want link with table . on wch 2 table are link .

please give me solution.

Regards ,

Nikhil.

1 REPLY 1

Former Member
0 Kudos

Use Function module 'CHVW_EXPLODE_ALL'.

Top down sounds like the functionality you want to use.

c_bottom_up(10) VALUE '00 X B T',

c_top_down(10) VALUE '00 X T T'

so:

w_model = c_top_down.

CALL FUNCTION 'CHVW_EXPLODE_ALL'

EXPORTING

i_matnr = i_matnr-matnr

i_werks = i_t001w-werks

i_charg = i_matnr-charg

i_dfchvw = w_model

TABLES

t_shadow = i_shadow

EXCEPTIONS

invalid_input_data = 1

OTHERS = 2.