What is an internal table.What are screens,sub-screens,table controls and tab strips.

Questions by kiran_bhel

Showing Answers 1 - 13 of 13 Answers

rachu

  • Sep 25th, 2007
 

Internal Table - Internal table is temporary table stored in application server, and doesn't occupy any memory but occupies memory at run time.

Screens - Screens are designed by the user from the client requirements... which consists of push buttons, radio buttons,
check boxes etc...

Sub-screen : Sub-screen is the area where you can display the out put within the same page..

Table-controls : If you want to add more data at a time then go for table controls simultaneously
you can see the data...

Tab-strips : Its like a push button on the top so that when you push the one button it will navigate to the other.....

rajesh

  • Aug 3rd, 2011
 

Internal table is table is temporary memory.internal table using append and insert and read access the database table.

  Was this answer useful?  Yes

sudhir

  • Mar 15th, 2012
 

In internal tables what we do operations like insert,modify,delete it will not reflect to database tables

  Was this answer useful?  Yes

avinash

  • Apr 28th, 2012
 

When we want manipulate field of data that time we require internal table,

Code
  1. data: begin of itab occurs 0,

  2.             name type c,

  3.            address type c,

  4.     end of itab.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions