ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories  >>  Software  >>  ERP CRM  >>  SAP  >>  ABAP
 
 


 

 
 Basis interview questions  Basis Interview Questions
 ABAP interview questions  ABAP Interview Questions
 SAPScript interview questions  SAPScript Interview Questions
 SD interview questions  SD Interview Questions
 MM interview questions  MM Interview Questions
 QM interview questions  QM Interview Questions
 PP interview questions  PP Interview Questions
 PM interview questions  PM Interview Questions
 PS interview questions  PS Interview Questions
 FI CO interview questions  FI CO Interview Questions
 HR interview questions  HR Interview Questions
 SAP CRM interview questions  SAP CRM Interview Questions
 SRM interview questions  SRM Interview Questions
 APO interview questions  APO Interview Questions
 Business Warehouse interview questions  Business Warehouse Interview Questions
 Business Workflow interview questions  Business Workflow Interview Questions
 SAP Security interview questions  SAP Security Interview Questions
 SAP Interfaces interview questions  SAP Interfaces Interview Questions
 Netweaver interview questions  Netweaver Interview Questions
 SAP ALE IDocs interview questions  SAP ALE IDocs Interview Questions
 SAP B1 interview questions  SAP B1 Interview Questions
 SAP AllOther interview questions  SAP AllOther Interview Questions
Question
What is Internal Table?
 Question Submitted By :: ReshmaBiswas
I also faced this Question!!     Rank Answer Posted By  
 
  Re: What is Internal Table?
Answer
# 1
ITS A TABLE WHICH HAS NO PRIMARY KEY AND A TEMPORARY ONES.
WE CAN HAVE ANY NUMBER OF DUPLICATE RECORDS WE WANT.
 
Is This Answer Correct ?    2 Yes 1 No
Arun Prasad
 
  Re: What is Internal Table?
Answer
# 2
internal table is just a structure that exists only during
run-time.
it could be used as  a snapshot of database table.

cheers.
Aditya.
 
Is This Answer Correct ?    3 Yes 0 No
Aditya
[Cybertech Systems & Software Ltd.]
 
 
 
  Re: What is Internal Table?
Answer
# 3
INTERNAL TABLE IS A DATA STRUCTURE USED TO STORE MULTIPLE 
RECORDS OF DATA IT MAY OR MAY NOT BE RELATED TO A DATABASE 
TABLE WE HAVE STANDARD SORTED AND HASHED INTERNAL TABLES.
 
Is This Answer Correct ?    1 Yes 0 No
Preethi
 
  Re: What is Internal Table?
Answer
# 4
Internal table is   the temparary table created in RAM of
application server while runtime which is used to do the
operation on thye data while processing.
 
Is This Answer Correct ?    2 Yes 0 No
Vaibhav
 
  Re: What is Internal Table?
Answer
# 5
Internal tables provide a means of taking data from a fixed 
structure and storing it in working memory in ABAP. The 
data is stored line by line in memory, and each line has 
the same structure. In ABAP, internal tables fulfill the 
function of arrays. Since they are dynamic data objects, 
they save the programmer the task of dynamic memory 
management in his or her programs. You should use internal 
tables whenever you want to process a dataset with a fixed 
structure within a program. A particularly important use 
for internal tables is for storing and formatting data from 
a database table within a program. They are also a good way 
of including very complicated data structures in an ABAP 
program
 
Is This Answer Correct ?    1 Yes 0 No
Kartikeya Bommuluri{abap Consu
 
  Re: What is Internal Table?
Answer
# 6
INTERNAL TABLE ALLOCATING EXTRA SIZE OF MEMEORY IN 
APPLICATION SERVER.BUT INTERNAL TABLE MEMORY IS TEMPORORY.
WHEN THE INTERNAL TABLE IS CREATED IT ALLOCATES MEMORY 
DURING RUNTIME AND THAT MEMORY IS DESTROYED WHEN THE 
PROGRAM IS ENDED.
 
Is This Answer Correct ?    1 Yes 0 No
Uma
 
  Re: What is Internal Table?
Answer
# 7
internal table is allocating extra size of memory in 
application server.but this memory is temporary.
internal table memory is allocated during at the runtime.
when the program is closed internal table memory is 
destroyed.
 
Is This Answer Correct ?    1 Yes 0 No
Uma
 
  Re: What is Internal Table?
Answer
# 8
Internal table is the temporary Storage area that exists 
only at program runtime.
 
Is This Answer Correct ?    4 Yes 0 No
Lokesh
 
  Re: What is Internal Table?
Answer
# 9
It is a complex Data Object Used to Store multiple records
at program run time temporarily. Memory Allocation to
Internal Tables is done dynamically at run time Only.
Initial Default Size is 8K.

Internal Table Types are

1)Standard Tables
2)Sorted Tables
3)Hashed Tables.
 
Is This Answer Correct ?    3 Yes 0 No
Sudhakar1207
 
  Re: What is Internal Table?
Answer
# 10
An internal table is the temporary storage area or table 
which created in RAM of Aplication server that exists only 
program runtime.
 
Is This Answer Correct ?    1 Yes 0 No
Chhaya
 
  Re: What is Internal Table?
Answer
# 11
Internal table is the temporary storage area or table which 
created in RAM of Application server that exists only 
program runtime.

There are 3 types of internal table:-

1)Standard Tables
2)Sorted Tables 
3)Hashed Tables
 
Is This Answer Correct ?    1 Yes 0 No
Chhaya
 
  Re: What is Internal Table?
Answer
# 12
internal table is an array of structure and is used for data storing and processing during execution of program.

Ex: data : begin of itab occurs 3,
           a type i,
           b type i,
           end of itab.
 
Is This Answer Correct ?    0 Yes 0 No
Dipa
 

 
 
 
Other ABAP Interview Questions
 
  Question Asked @ Answers
 
3. After running a BDC program in background, next day morning when you see the results, few records are not updated(error records). What will you do then?  1
Difference between call transaction & session method? which of these methods can be best used in background process?  1
how can we get what are the exits available for va01 transaction? Wipro2
which is a statement used to write a record to a file in ABAP?  3
most commonly used command in Interactive Reporting? TCS3
what is the difference between bdc and lsmw ?  1
what is the difference between at selection-screen output and at selection screen? SAP-Labs1
How did you upload Logo using RSTXCDMC which format you upload TIF?  2
in lsmw,where u write the code? HP4
In real time how we get the tickets? whether it is through email or any thing else.  1
SAP Date Format?  4
what is index? I need exact defination? how will create a secondary index? Caritor4
1.What is the difference between append structure and include structure. 2. what is the logging of technical setting while creating db table. Accenture3
During performance analysis you found one select statement taking long time. How to correct it? IBM3
How many lists you can have in a Interactive Report? TCS8
what happend if a select statement inside aloop.... Accenture3
where was the development server? Satyam1
what type of error exactly you will be seeing in the log file while using call transaction mode ‘E’ EDS2
Hi, If anyone is interested in SAP ABAP from basics to Expert. Email me your contact details to sap.abap9@gmail.com  1
what is Deep Structure? Cap-Gemini2
 
For more ABAP Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com