Hi all,
here am able to create itab using DB table using include structure. but am getting error.
here i want to create it_rpsco internal table with header line.
TYPES : BEGIN OF t_rpsco,
include structure rpsco,
END OF t_rpsco.
DATA : it_rpsco TYPE STANDARD TABLE OF t_rpsco WITH HEADER LINE,
wa_it_rpsco TYPE t_rpsco.
anyone can rectify above syntax.
Thanks in advance.
kumar.