can we assign some dynamic value while declaring the constant. if not give some other logic to assign dynamic value to a constant.
parameter: p_char(25) obligatory.
data: len type i.
len = strlen(p_char).
constant c value len.
here 'len' field contains variable length, this variable length has to be assigned to a constant. How can it be done, can u help me out?