Hi!
I' ve got a function with a changing-parameter typed as follows:
ch_r_data type ref to data
.
In my function I' m trying to assign either a string or a integer to this data reference - depending on some logic.
Unfortunatly, it' s not possilbe to directly assign a value to a generic typed data reference with
ch_r_data->* = 123.
or
ch_r_data->* = 'abc'.
Has anybody got an idea how to tackle that problem?
Regards,
Thomas