‎2008 Mar 04 3:48 PM
i want diffrent between below satements.
data : itab(internal table name) type table of lfa1(some table name)
&
data : itab ( i table name ) type stanend table of lfa1(some table name).
‎2008 Mar 04 4:00 PM
‎2008 Mar 04 4:00 PM
‎2008 Mar 04 4:03 PM
Types: begin of LT_TAB,
kunnr type kunnr,
name1 type name1,
land1 type land1,
end of LT_TAB.
data: IT_TAB type table of LT_TAB. " generally we follow for own types
data: IT_tab type standard table of KNA1. " for standard table declaration.
processing wise there is no difference as per my knowledge.
regards.
santhosh reddy
<REMOVED BY MODERATOR>
Edited by: Alvaro Tejada Galindo on Mar 4, 2008 11:07 AM
‎2008 Mar 04 5:04 PM
‎2008 Mar 04 5:12 PM
there is no difference,
if u dont specify table type then by default it is standard table.
very similar to following 2 statements
data : flag.
or
data : flag type c.
<REMOVED BY MODERATOR>
Edited by: Alvaro Tejada Galindo on Mar 4, 2008 12:18 PM