Dear Guys
I have to update a field ( MATERIAL MATNR ) in FBL3N using MASS CHANGE. Mass Change use the Transaction Code FB02 to update the fields .
In FB02 there are different screens to which MASS CHANGE updates. There is also a screen called Coding Block which has Material Number Field.
Now I want to use the MASS CHANGE in FBL3N to update the field Material present on screen coding block in transaction FB02.
My problem is that FBL3N is not updating the fields in Coding Block Screen but other screens in FB02.
Now I m doing modification in FBL3N so that MASS CHANGE also update the fields present in coding block.
I have tried a code some thing like
bdcdata-fnam = 'BDC_OKCODE'.
bdcdata-fval = 'COBL_MORE'.
append bdcdata.
clear bdcdata.
bdcdata-program = 'SAPLKACB'.
BDCDATA-DYNPRO = '0002'.
bdcdata-dynbegin = 'X'.
append bdcdata.
clear bdcdata.
loop at fldtab.
clear bdcdata.
IF fldtab-fname = 'MATNR'.
bdcdata-fnam = 'BSEG-MATNR'.
bdcdata-fval = s_bseg-MATNR.
append bdcdata.
clear bdcdata.
ENDIF.
endloop.
bdcdata-fnam = 'BDC_OKCODE'.
bdcdata-fval = 'ENTE'.
append bdcdata.
clear bdcdata.
wh<b>ich is not working fine, that is not updateing the field.</b>
Is there any solution of this problem.
Experts Opinion is needed.
Thnx