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

database table

Former Member
0 Likes
544

what happnes when table isactivated in DDIC

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
523

When tables, types (data elements, structures, table types) and views are activated, they are placed at the disposal of the runtime environment in the form of runtime objects. These runtime objects contain the information about the object in a form that is optimal for access by ABAP programs and screens. The runtime objects are buffered so that ABAP programs and screens can access the information relevant to them quickly.

ABAP programs and screens get the information they require about ABAP Dictionary objects from the runtime objects. Changes to ABAP Dictionary objects are determined by comparing the time stamps (see Runtime Objects). Changes to ABAP Dictionary objects therefore become effective in all system components when the objects are activated.

4 REPLIES 4
Read only

Former Member
0 Likes
523

When a table is activated it is available for operations like insertion,modification and updation of records by any user.

Read only

Former Member
0 Likes
523

Hi,

when database tables is activated, a copy of activated table is created in db and then only that table will be avaliable for use.

Jogdand M B

Read only

Former Member
0 Likes
523

hi Saddam,

You will activate the table only when you do any modifications to the table ...i.e, adding additional fields, changing the development class etc .... for activating that better to do in this way ... utilities->database utility ... press button activate and adjust the table ....

Regards,

Santosh

Read only

Former Member
0 Likes
524

When tables, types (data elements, structures, table types) and views are activated, they are placed at the disposal of the runtime environment in the form of runtime objects. These runtime objects contain the information about the object in a form that is optimal for access by ABAP programs and screens. The runtime objects are buffered so that ABAP programs and screens can access the information relevant to them quickly.

ABAP programs and screens get the information they require about ABAP Dictionary objects from the runtime objects. Changes to ABAP Dictionary objects are determined by comparing the time stamps (see Runtime Objects). Changes to ABAP Dictionary objects therefore become effective in all system components when the objects are activated.