Dear Co-Abapers,
I am performing a customization in BADI: MB_MIGO_DOC-LINE_MODIFY. I have appended a field in GOITEM. I am trying to assign value from a custom field to GOITEM-ABLAD. But when I am trying to assign some value from GOITEM-ABLAD to the same custom field, the system is not allowing me to do so. Please let me know if anybody has a solution for the problem I m facing. I am displaying the field in Details - Where tab.
Below is the code what I am using in LINE_MODIFY.
if cs_goitem-ablad is not initial and cs_goitem-zzumlgobe is initial.
cs_goitem-zzumlgobe = cs_goitem-ablad.
elseif cs_goitem-ablad is initial and cs_goitem-zzumlgobe is not initial.
cs_goitem-ablad = cs_goitem-zzumlgobe.
endif.
The code that is not working is "CS_GOITEM-ZZUMLGOBE = CS_GOITEM-ABLAD."
Thanks in advance
Harish