<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Check table and value table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-and-value-table/m-p/1525293#M240691</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;What is a check table and what is a value table? &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Aug 2006 04:15:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-29T04:15:36Z</dc:date>
    <item>
      <title>Check table and value table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-and-value-table/m-p/1525293#M240691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;What is a check table and what is a value table? &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 04:15:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-and-value-table/m-p/1525293#M240691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T04:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Check table and value table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-and-value-table/m-p/1525294#M240692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A foreign key links two tables T1 and T2 by assigning fields of table T1 to the primary key fields of table T2. Table T2 is then known as the check table of the foreign key.&lt;/P&gt;&lt;P&gt;value table : when you define a domain, you already know that all fields that use the domain will need to be checked against a particular table. You can store this information in the domain definition by specifying a value table.&lt;/P&gt;&lt;P&gt;If you try to define a foreign key for a field that points to this domain, the value table of the domain is proposed as the check table for the foreign key.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 04:16:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-and-value-table/m-p/1525294#M240692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T04:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Check table and value table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-and-value-table/m-p/1525295#M240693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check Table:The Check Table is the table used by system to check if a data exist or not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While creating a table if you want to be sure that a field can have some values and these are in a certain table, you can give IT this table as CHECK TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value table:&lt;/P&gt;&lt;P&gt;Value Table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is maintained at Domain Level. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When ever you use this Domain, the system will forces you to enter only these values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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 &amp;amp; transport the same. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Differences:1)check table will carry out the check for input values for the table field being entered in any application and value table will provide values on F4 help for that table field.&lt;/P&gt;&lt;P&gt;2)The check table defines the foreign keys and is part of the table definition. The value table is part of the domain definition.&lt;/P&gt;&lt;P&gt;plz rewards the point if it is useful..:-)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 04:17:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-and-value-table/m-p/1525295#M240693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T04:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Check table and value table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-and-value-table/m-p/1525296#M240694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check table - is for checking the foreign key relation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   for example if there is material a table T1. and there is another table T2 with material and qty. If T1 is check table without a particular material containing in the T1 we cannot create a qty in table T2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; value table -  holds the possible values in the table.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;     SHKZG - the possible value for this is "H" and "S". This can take only these fields ( it will not take any other values).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 18:31:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-and-value-table/m-p/1525296#M240694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T18:31:01Z</dc:date>
    </item>
  </channel>
</rss>

