Application Development and Automation 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: 
Read only

DATA Class

Former Member
0 Likes
533

Hi,

what is the siginifance of the data class when we create a table can anybody help me regarding this

Thanks in advance

3 REPLIES 3
Read only

Former Member
0 Likes
504

Hi,,

Data tells u in which physical table space table is stored

Check this link

http://help.sap.com/saphelp_47x200/helpdata/en/fc/054d3c2ec42c01e10000000a114084/frameset.htm

Regards

Read only

Former Member
0 Likes
504

Hi Sahasra

I am sending u some pts on data class:-

The Data class determines in which tablespace the table is stored when it is created in the database.

What is a Size Category?

The Size category describes the probable space requirement of the table in the database. How Many types of size categories and data classes are there? There are five size categories (0-4) and 11 data classes, only three of which are appropriate for application tables:

- APPL0 - Master data (data frequently accessed but rarely updated)

- APPL1 - Transaction data (data that is changed frequnetly)

- APPL2 - Organisational data (customizing data that is entered when system is

configured and then rarely changed)

Reward pts if help.

Regards

Deepanker

Read only

Former Member
0 Likes
504

HI,

Sahasra

If you choose the data class correctly, your table is automatically assigned to the correct area (tablespace or DBspace) of the database when it is created. Each data class corresponds to a physical area in which all the tables assigned to this data class are stored. There are the following data classes:

APPL0 (master data): Data which is seldomly changed. An example of master data is the data contained in an address file, such as the name, address and telephone number.

APPL1 (transaction data): Data that is frequently changed. An example of transaction data is the goods in a warehouse, which change after each purchase order.

APPL2 (organizational data): Customizing data that is defined when the system is installed and seldomly changed. An example is the table with country codes.

Two further data classes, USR and USR1, are provided for the customer. These are for user developments. The tables assigned to these data classes are stored in a tablespace for user developments.

plzz reward if it is usefull