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 Dictionary

Former Member
0 Likes
672

What is Value Table?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
636

hi monalisa,

Welcome to SDN.

Simple definition of the value table : The table containing set of allowed values attached to a domain.

http://help.sap.com/saphelp_47x200/helpdata/en/e2/667092730811d2959500a0c929b3c3/frameset.htm

Regards...

Arun.

Reward points if useful.

5 REPLIES 5
Read only

Former Member
0 Likes
637

hi monalisa,

Welcome to SDN.

Simple definition of the value table : The table containing set of allowed values attached to a domain.

http://help.sap.com/saphelp_47x200/helpdata/en/e2/667092730811d2959500a0c929b3c3/frameset.htm

Regards...

Arun.

Reward points if useful.

Read only

Former Member
0 Likes
636

<b>Value Table</b>

This is maintained at Domain Level.

When ever you create a domain , you can enter only certain allowed values.For example, if you go to Domain SHKZG - Debit/credit indicator. Here only H or S are allowed.

Whenever you use this Domain, the system will force you to enter only these values.

This is a sort of master check.It is to be maintained as a customization object. This means if you want to enter values to this table you have to create a development request & transport the same.

<b>CHECK Vs VALUE Table</b>

check table is validation at field level.

value table is at domain level.

Value table is defined at the domain level and is used to provide F4 help for all the fields which refer to that domain.

Check table is defined against a field in SE11 if you want the values in that field to be checked against a list of valid values. For e.g. if you are using the field matnr in a table you could define MARA as the check table.

Also while defining a check table SAP proposes the value table as check table by default. Referring to the previous example if you tried to define a check table for the matnr field SAP would propose MARA as the check table.

1. what is the purpose / use ?

-- so that the user can select values

from some master table , for that field !!!!

2. This is done by

CHECK TABLE (foreign key concept)

(and not value table)

3. When we create a check table for a field,

then

some DEFAULT table is PROPOSED

4. that DEFAULT table is nothing

but PICKED up from the domain of that field,

and shown from the value of VALUE TABLE.

CHECK TABLE -it is a parent table.

for example..

i have two tables ZTAB1 and ZTAB2.

I have one common field in both the tables,i can make any ztable to be the check table .If i make Ztab1 to be the check table then when i have to make an entry in ztab2 i will check whether ztab1 is having that value or not..

its also field level checking..

Valuetable-It is nothing but default check table.

one parent can have n number of child tables.For example

For ztable we have zchild1 and zchild2 tables r there.

Its domain level checking..When zchild2 uses the same domain as used by zchild1 then the system automatically generates a popup saying a check table already exists would u want to maintain it.

go to domain and then press the value tab u can see the valuetable at the end...

Difference between a check table and a value table

Value Table

This is maintained at Domain Level.

When ever you create a domain , you can entered allowed values. For example you go to Domain SHKZG - Debit/credit indicator. Here only allowed values is H or S.

When ever you use this Domain, the system will forces you to enter only these values.

This is a sort of master check . To be maintained as a customization object. This mean that if you want to enter values to this table you have to create a development request & transport the same.

Check table

For example you have Employee master table & Employee Transaction table.

When ever an employee Transacts we need to check whether that employee exists , so we can refer to the employee master table.

This is nothing but a Parent & Child relationship . Here data can be maintained at client level , no development involved.

As per DBMS what we call foregin key table, is called as check table in SAP.

There is 1 more important Difference in Value Table and Check Table is that:

1. The contents of the check will be used as an input help(F4 Help) for a particular field on which a check table is assigned.

But the contents of Value Table are never used in Input Help.

The Heirarchy which decides from where to used the Input Help is:

1. Input help defined explicitly in ABAP Program or Dialog Module.

2. Input Help Attached to the referenced Database Table field.

3. Using the contents of Check Table as an input help if neither (1) or (2) help are there.

4. Input help from Fixed value or Value range given in Domain.

Please refer the links below,

http://www.sap-img.com/abap/difference-between-a-check-table-and-a-value-table.htm

regards,

srinivas

<b>*reward for useful answers*</b>

Read only

Former Member
0 Likes
636

hi

Value Table

In some cases you can see when you 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.

The system proposes the value table as check table when you try to define a foreign key for the field or component. This proposal can be overridden.

Domain S_CARR_ID (data type CHAR, length 3) in the flight model describes the three-place code of the airlines. All the airlines are listed together with their codes in table SCARR. It is generally advisable to check fields referring to domain S_CARR_ID against table SCARR. SCARR is therefore entered as value table for domain S_CARR_ID. If you want to define a foreign key for a field referring to S_CARR_ID, SCARR is proposed as the check table.

A check is not implemented by simply entering a value table! The check against the value table only takes effect when a foreign key has been defined.

reward if helpful

vivekanand

Read only

Former Member
0 Likes
636

Hi Monalisa,

Value table shows the value with out validation means when u enter the value into table at that time it will not check where this value is already exit or not .

Regards,

Nihar swain .

Read only

Former Member
0 Likes
636

HI

<b>Value table</b>In some cases you already know when you define a domain that all the fields referring to this domain should be checked against a certain table. This information can be stored in the domain by entering a value table.

The system proposes the value table as check table when you try to define a foreign key for this field. You can override this proposal.

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

<b>reward if usefull</b>