‎2007 Dec 12 5:11 PM
Hi Folks,
I am trying to read data from a structure ANLCV into an Internal Table. However I can not to do this. I have not come across this before - Does anybody have a solution?
Thanks!
‎2007 Dec 12 5:14 PM
‎2007 Dec 12 5:35 PM
data : begin of V_ANLCV.
include structure ANLCV.
data : end of V_ANLCV.
Or
Data: I_ ANLCV like ANLCV occurs 0 with header line.
‎2007 Dec 12 6:13 PM
Naimesh - unfortunately that table does not have all the data that i need!
Is there a way to declare it using TYPES?
Is it simply TYPES: BEGIN OF ANLCV_ITAB,
I_ ANLCV like ANLCV,
end of anlcv_itab.
then gt_anlcv type standard table of anlcv_itab,
gw_anlcv type anlcv_itab
would that work?
‎2007 Dec 12 6:33 PM
hi just give a try ... as u said.. if not
types: gt_anlcv like line of ANLCV
types: begin of gt_anlcv .
include structure anlcv.
types: end of gt_anlcv.
types: gt_anlcv type standard table of anlcv.
some thing should work...
‎2007 Dec 12 6:42 PM
TYPES : gt_anlcv TYPE STANDARD TABLE OF anlcv.
this thing worked in my system.
‎2007 Dec 13 8:09 AM
most of these worked. But now when I try to select * from anlcv into my internal table it will not work. Any clues??
‎2009 May 27 4:35 PM