2009 Sep 11 2:27 PM
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
2009 Sep 11 2:32 PM
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 !!
2009 Sep 11 2:34 PM
2009 Sep 11 2:35 PM
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