Skip to Content
0
Former Member
Jun 10, 2009 at 05:22 AM

dynamic assigment

39 Views

Hi,

I have below code

DATA: f_value1 TYPE string,

lv_checkfield LIKE dd08v-fieldname.

DATA: lv_cond(72) TYPE c,

itab_where LIKE TABLE OF lv_cond.

f_value1 = <fs_table>.

concatenate lv_checkfield 'EQ' <fs_table> into lv_cond separated by space.

APPEND lv_cond TO itab_where.

i m getting error "the type f_value1 cannot be converted to the type of <fs_table>

So can u pls help in concatening value of <fs_table> into lv_cond.

Regards,

Santosh