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

urgent

Former Member
0 Likes
674

hello gurus

explain me the purpose of database utility and log

diff bw check table and value table

diff bw table and structure

bypass buffering

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
656

hi,

Answer for Diff bw check table and value table :

Check table contains the primary field.

Value table contains the foreign field.

Answer for diff bw table and structure :

Table holds multiple records.

Structure holds only single record at run time.

Regards,

Raghu

hello gurus

explain me the purpose of database utility and log

diff bw check table and value table

diff bw table and structure

bypass buffering

3 REPLIES 3
Read only

prasanth_kasturi
Active Contributor
0 Likes
656

hi

explain me the purpose of database utility and log

database utility is useful if you make changes to youe datbase table and make the changes reflect in database ,

log is used for knowing the changes you made in the table

The database utility is the interface between the ABAP Dictionary and the relational database underlying the R/3 System. The database utility allows you to edit (create, delete and adjust to changes to their definition in the ABAP Dictionary) database objects derived from objects of the ABAP Dictionary.

diff bw check table and value table

check table you validate the values ientered in the field against the values in check table,

value table is domain propsed check table, you can assign as check table or override it

About Value table

1.It’s a field in a domain it helps in domain level data validation.

2.In some cases when we define a domain that all the table fields or structure components referring to this domain should be checked against a certain table. This information can be stored in the domain by entering a value table.

3.Entering a value table does not implement a check. The check against the value table only takes place when a foreign key is defined.

About Check Table.

1.It helps in field level data validation.

2.A foreign key links two tables T1 and T2 by assigning fields of table T1 to the primary key fields of table T2.

Table T1 is called the foreign key table (dependent table) and table T2 the check table (referenced table).

3.When an entry is made in the check field, there is a check whether the check table contains a record with the key defined by the values in the foreign key fields. If this is so, the entry is valid. Otherwise the system rejects the entry.

diff bw table and structure

table contains persistent data but structures contain data only during runtime

table hold multiple record but structure single record

bypass buffering

when a table is buffered if you want to get update data in the table its better to get data from database as data in application server might not be accurate as its subjected to changes, so using by pass buffering we get accurate data

reward if helpful

prasanth

Read only

Former Member
0 Likes
657

hi,

Answer for Diff bw check table and value table :

Check table contains the primary field.

Value table contains the foreign field.

Answer for diff bw table and structure :

Table holds multiple records.

Structure holds only single record at run time.

Regards,

Raghu

Read only

Former Member
0 Likes
656

hi,

Database utility is from se14 , it is for adjusting the table updation .

table : cotains data physically.

structure : contains data on runtime only.

Check table will be at field level checking. Value table: Value table will be at domain level checking .

bypass buffering : is help to get data faster ,as once retireved.

priya.

reward if helpful