‎2007 Jul 02 5:25 AM
Hello Experts,
I defined a structure like this.
TYPES: begin of struct_f_plrc,
j_4kplrc like j_4kcprc-j_4kplrc,
j_4kprpl like j_4kcprc-j_4kprpl,
j_4kcnes like j_4kcprc-j_4kcnes,
end of struct_f_plrc.
and I am declaring it as
Data: f_plrc_tab type struct_f_plrc occurs 10 with header line.
I am getting an error "The Data object "F_PLRC_TAB" has no structure and therefore no component called j_4kplrc.
Am i doing anything wrong here ?? Please help
Thanks
Sudha
‎2007 Jul 02 5:27 AM
‎2007 Jul 02 5:27 AM
‎2007 Jul 02 5:39 AM
Hi,
do like this
TYPES:BEGIN OF t_mvke,
matnr LIKE mvke-matnr,
slorg LIKE mvke-vkorg,
dstch LIKE mvke-vtweg,
mtpos LIKE mvke-mtpos,
END OF t_mvke.
DATA: lwa_mvke TYPE t_mvke,
li_mvke TYPE STANDARD TABLE OF t_mvke.
Regards,
Sooness
‎2007 Jul 02 5:42 AM