Skip to Content
0
Former Member
Nov 05, 2006 at 01:22 PM

assign value

20 Views

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 isn’t inhabitant in my internal table in the place that it should be.

thankes