Question:
Hi,
I am trying to move the header line data into the workarea in a BADI for e.g
To move LS_IV_GUID to IT_HEADER_GUID
DATA : IT_HEADER_GUID TYPE TABLE OF CRMT_OBJECT_GUID.
DATA: LS_IV_GUID TYPE CRMT_OBJECT_GUID.
We can't use the simple move statement because it raises an error
the type of IT_HEADER_GUID cannot be converted to type of LS_IV_GUID
Kindly help asap.
Regards and thanks in advance
Answer:
excuse me .. table should be appended..
so appent ls_iv_guid into that table..
Answer:
The WA is not a structure.. it is more of a table... so u r tryin to append stick one table to the back of another.. so i doubt it will work..