Application Development 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: 

what is the difference between type table of and type standard table of

Former Member
0 Kudos

hi gurus

can anyone inform me

what is the difference between

type table of and

type standard table of

in which cases we uses this

thank you

regards

kals.

3 REPLIES 3

Former Member

Hi Kalyan,

They are one and the same.

TYPE <STANDARD/HASHED/SORTED> TABLE OF..

if you do not specify any type of table, default is Standard.

Regards,

Mohaiyuddin

Former Member
0 Kudos

syntax: type [standard] table of

means standard is default..no difference.

Reward if useful.

Dara.

Former Member
0 Kudos

Difference is usually after this part of the define.

using WITH HEADER LINE

when you loop you access the input record in the table name-field name

with out HEADER LINE

you LOOP table INTO a_work_area.