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: 

Creation of Ztable

Former Member
0 Kudos

Hi,

While creating I come across Buffering

under which three radiobuttons are there , which one i want to consider

1) Buffering not allowed

2) Buffering allowed but switched off

3)Buffering switched on

Thanks,

Asha

4 REPLIES 4

Former Member
0 Kudos

Hi Asha,

Select any one radiobutton and click on F1. You get the Help in which you have the detailed information of the radiobuttons.

Please check this link

https://www.sdn.sap.com/irj/sdn/wiki?path=/display/abap/table+buffering

Best regards,

raam

Former Member
0 Kudos

Buffer is nothing but a memory area.

table is buffered means that table information is available on application server. when you call data from database table it will come from application server.

transperent and pooled tables are buffered. cluster tables can not buffered

Buffering

You must define whether and how a table is buffered in the technical settings for the table. There are three possibilities here:

1. Buffering not permitted: Table buffering is not permitted, for example because application programs always need the most recent data from the table or the table is changed too frequently.

2.Buffering permitted but not activated: Buffering is permitted from the business and technical points of view. Applications which access the table execute correctly with and without table buffering.

Whether or not table buffering will result in a gain in performance depends on the table size and access profile of the table (frequency of the different types of table access).

Table buffering is deactivated because it is not possible to know what these values will be in the customer system. If table buffering would be advantageous for the table size and access profile of the table, you can activate it in the customer system at any time.

3.Buffering activated: The table should be buffered. In this case you must specify a buffering type.

Check these link for more.

http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eab8446011d189700000e8322d00/frameset.htm

http://www.mariewagener.de/node/125?PHPSESSID=df47c4e7b30a5efa26b723ec0c3ee336

Former Member
0 Kudos

hi,

Its not mandatory to buffer your table, untill its important.

you can leave that option if yuo are not sure whether to buffer your table.

Else yuo can refer to the sapibrary to find out what kind of buffering will suit yuor table.

Former Member
0 Kudos

Answered