Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to declare an Internal Table?

Answer Posted / gayathri

we can declare internal table with header line and without
header line.
internal table with header line.
data: begin of itab occurs 0,
num type i,
name(23),
........,
........,
end of itab.
internal table without header line.
types: begin of itab,
num type i,
name(23),
........,
........,
end of itab.
data: itab1 type itab occurs 0.

Is This Answer Correct ?    12 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between refresh and free statements?

1238


In the abap/4 dictionary tables can be defined independent of the underlying database (t/f). : abap data dictionary

1229


Did you create primary index?

1194


Events that can be used in both the classical and interactive reports

1661


What is the t-code to display batch input sessions? : abap bdc

1261


What is a data dictionary? : sap abap data dictionary

1016


How do I find the output type of a table or a program?

1047


Define subtype ? : abap hr

1080


Can i know some of the Realtime tickets that anyone has been faced ?

2225


Can you print decimals in type n? What is difference between float and packed data type?

1274


What is the use of table maintenance allowed?

1118


I have 3 transactions,where the output of one transaction is input of another and output of 2nd transaction is input of 3rd transaction.i have one flat file with all data for the 3 transaction.if the 3rd transaction failed can we rollback the remaining 2 transactions or not.Is this possible in BDC,How/

2356


What is the difference between get and get late?

1145


How to transfer data into line items using batch input session method? : abap bdc

1153


what is the difference between hashed & sorted internal tables?

2275