Hellow I wont 2 assign value into itab from wa_itab but the values is enter in the wrong field see
SELECT SINGLE objid
FROM hrp1000
INTO wa_d_itab-objid
WHERE otype = 'S'
AND objid = wa_itab-plans
AND begda <= currnt_date
AND endda >= currnt_date.
IF sy-subrc <> 0.
<b>wa_error_itab-description = 'plans problem'.
APPEND wa_error_itab-description TO error_itab.
APPEND wa_itab-plans TO error_itab.</b>
ENDIF.
This is the line that I have a problem
wa_error_itab-description = 'plans problem'.
APPEND wa_error_itab-description TO error_itab.
The value description isnt inhabitant in my internal table in the place that it should be.
thankes