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

Can matchcode object contain ids with different update types? : abap data dictionary

1120


How many types of views are there ?

1177


Select query optimisation

1434


What is screen flow logic? What are the sections in it?

1300


What is the use of message command in a report? What are the different message types?

1002


How can I get ascii value of any letter? Is there any function?

1288


What is the use of a pretty printer?

1242


What is a 'z' report?

1161


What are the advantages of logical databases?

1112


how to use the xk01 in realtime.can it apply the others. how it it will goes to first page and next page.

2353


In sap scripts, how will you link form with the event driven?

1030


In order to upload purchase order details, how you handle multiple values for a single field?

1029


How can we declare a table control in the abap/4 program?

1223


Module Pool Programming: Events and Table Control handling.

1454


What are function modules?

1154