Hi All,
Can any one kindly give me the solution for this.
I have to pass the quantity field to divbep-wmeng.
in the userexit include zxvdbu01.
but it is giving the runtime error while moving the divbep data to work area(like non convertable.)
tha run time error is UC_OBJECT_NOT_CONVERTIBLE.
Is Divbep some thing different to othe internal tables
like dxvbap,dxvbak.
Please kindly suggest me how declare a wa for this divbepa and how pass the data.
Thaks in Advance.
Thanks&Regards.
Ramu.
HI Ramu
Please note that if you are passing the data w.r.t structures both should be same in UNICODE enabled systems.
Alternatively if you just need to pass the quantity, do it explicitly like in below example.
data:l_qty like divbep-wmeng.
populate the quantity with the value
now pass the quantity like
divbep-wmeng = l_qty.
I guess this will resolve your problem.
Kind Regards
Eswar
Ramu,
Especially in a Unicode enabled system the source and the target should be of same type. Where as this not the case in a non-unicode system.
Hence you may need to make the source and target of same type. I believe after that a individual MOVE: for each field will be a solution
Hope I could help you.
thomas
Add a comment