Hi All,
W.R.T. SAP notes 200547, I am trying to update MVER table for forcasting view data (Historical Consumption records ) using for VK15.
Using program MVER_WRITE_FILE passing my data (Material, Plant, Period,Indicator,Total Consumption) :
MATERIAL1 1100 201311 M 100 MATERIAL1 1100 201310 M 90 MATERIAL1 1100 201309 M 110 MATERIAL1 1100 201308 M 120 MATERIAL1 1100 201307 M 105records passing successfully in internal table : wa_vb_tab, but when we pass this internal table into :
CLASS cl_abap_container_utilities DEFINITION LOAD. "Unicode
CALL METHOD cl_abap_container_utilities=>fill_container_c
EXPORTING
im_value = wa_vb_tab
IMPORTING
ex_container = wa
EXCEPTIONS
illegal_parameter_type = 1
OTHERS = 2.
big_wa = wa.
APPEND big_wa.
Then, 'wa' is showing only first 3 (material,plant,period) and 4th & 5th one which is indicator & total consumption is showing in ASCII .
Finally, 'big_wa' appending all 5 records but Indicator and Total Consumption in ASCII value.




Therefor, when the same value is passing into file: 'MATERIAL_MASTER_BTCI' in MVER_DI program, on execution showing following messages:
(R20 is name of material)

It could be help full if any body faced this issue, so that i can solve.
Regards,
Ramesh