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: 

Internal table

Former Member
0 Kudos

Hi ,

Could you please tell me > how to create Internal table and source code ?

Anil

Moderator message - Welcome to SCN . But....

Moderator message - Please do not ask or answer basic questions - post locked and points re-assigned

Edited by: Rob Burbank on Sep 11, 2009 9:58 AM

3 REPLIES 3

SuhaSaha
Advisor
Advisor
0 Kudos

Hello Anil,

Welcome to SDN !!

Step1: Best way do be to get an ABAP Cookbook

Step2: And after going through it, if you find any problem search in SDN.

Step3: Even if the problem persists then post in SDN.

Good Luck !!

Kanagaraja_L
Active Contributor
0 Kudos

Welcome to SCN.

Search with forum.

Kanagaraja L

Former Member
0 Kudos

Hi Anil,

types:begin of st,

matnr type matnr,

mtart type mtart,

end of st.

data:it_tab type table of st,

wa_tab type st.

use this code to create internal table.In this

it_tab is internal table

wa_tab is work area.

regards,

Manesh.R