2010 Mar 12 1:34 PM
Hello experts,
I've following problem:
DATA: lv_cell TYPE REF TO data.
DATA: contact type BU_CONTACT_CHAR.
lv_cell = r_param->value. 'lv_cell contains 1
'now i want to give this paramter to another variable in order to start a fm
move lv_cell to contact. '=> retunrs error.
call fm...
How can I give this value to this paramter ?
Thanks
G
Hello experts,
I've following problem:
DATA: lv_cell TYPE REF TO data.
DATA: contact type BU_CONTACT_CHAR.
lv_cell = r_param->value. 'lv_cell contains 1
'now i want to give this paramter to another variable in order to start a fm
move lv_cell to contact. '=> retunrs error.
call fm...
How can I give this value to this paramter ?
Thanks
G
2010 Mar 12 2:27 PM
Problem solved:
we have to de-refrende the object
and then move it to a vriable.
DATA: lv_cell TYPE REF TO bu_contact.
DATA: contacti type bu_contact.
move lv_cell->* to contacti.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |