‎2008 Mar 31 12:48 PM
Q] How can internal tables be without a structured type--- could you pls give me an example?
‎2008 Mar 31 1:27 PM
Hi
if you dont want to give structure name over there.
declare like this:-
data : itab_internal type table of mara.
see:- itab_internal table is a internal table of type SAP defined structure.
Reward if help.
‎2008 Mar 31 12:51 PM
Hi,
the structure can be designed of our own type .....
based on the requirement
Regards,
V.Balaji
Reward if Usefull...
‎2008 Mar 31 12:56 PM
hi ,
the internal table are declared like this....
data: begin of itab occurs 0.
include structure mara.
data: end of itab.
or
data: begin of itab occurs o,
matnr type mara-matnr,
meins type mara-meins,
end of itab.
or
data: it_data type ztest(structure) occurs 0 with header line.
regards,
venkat.
‎2008 Mar 31 1:24 PM
‎2008 Mar 31 1:27 PM
Hi
if you dont want to give structure name over there.
declare like this:-
data : itab_internal type table of mara.
see:- itab_internal table is a internal table of type SAP defined structure.
Reward if help.