Hi Praveen ,
thanks for ur relpy........urs working in debugging......but the stext(description) obtained to b mapped with each task given....
data: lv_type(02) TYPE c,
lv_ojid(10) TYPE c.
lv_type = ls_swpsteplog-task_id+0(2).
lv_ojid = ls_swpsteplog-task_id+2(6).
IF NOT s_task[] is INITIAL.
SELECT stext
FROM hrs1000
INTO TABLE lt_hrs1000
WHERE otype = lv_type AND
objid = lv_ojid and
langu = 'E'.
ENDIF.
\
here values are not fetched inside the itab-lt_hrs1000.