Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

internal table

Former Member
0 Likes
444

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).

1 ACCEPTED SOLUTION
Read only

JozsefSzikszai
Active Contributor
0 Likes
421

hi Srinu,

there is no difference...

ec

4 REPLIES 4
Read only

JozsefSzikszai
Active Contributor
0 Likes
422

hi Srinu,

there is no difference...

ec

Read only

SantoshKallem
Active Contributor
0 Likes
421


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

Read only

Former Member
0 Likes
421

There's no difference between both the declartions

Read only

Former Member
0 Likes
421

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