Hi Expert..
I have problem to display the tax description as below
program code as below:
clear lt_t007s.
SELECT mwskz text1 kalsm
INTO TABLE lt_t007s
FROM t007s
FOR ALL ENTRIES IN lt_ekpo
WHERE mwskz = lt_ekpo-mwskz AND kalsm = 'TAXMY'.
IF sy-subrc EQ 0.
sort lt_t007s by mwskz.
ENDIF.
LOOP AT lt_t007s INTO lw_t007s.
READ TABLE lt_t007s INTO lw_t007s with key mwskz = lw_ekpo-mwskz Binary search.
IF sy-subrc eq 0.
it_output-t007s-text1 = lw_t007s-text1.
it_output-t007s-mwskz = lw_t007s-mwskz.
it_output-t007s-kalsm = lw_t007s-kalsm.
ENDIF.
ENDLOOP.
when i debug, the value are correctly filled as below:
Thus, what else i can do so that the output can be displayed.
please help and guide me.
ur kindness most appreciated
Thanks, regards.
liyana