<?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 Re: fixed value in table value range in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-in-table-value-range/m-p/3882768#M933028</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You  may use function module CHECK_DOMAIN_VALUES to check value of a domain. (this function module use DD07L data)&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Also don't forget there are values and ranges in this table.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may also generate the maintenance dialog of the table you want to fill. and then analyze the generated program to copy the validation rules (domain, foreign keys, etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 May 2008 06:21:48 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2008-05-28T06:21:48Z</dc:date>
    <item>
      <title>fixed value in table value range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-in-table-value-range/m-p/3882765#M933025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;if i write a z-program to upload data to table, may i know how to check the validity of data if the value is stored in the same table but inside the value range of 1 of the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example, i want to upload data to table jxyz. in this table, there is a field called jfrm where the fixed value in this field is P, L and X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how in the z-program i need to check. if the field value in the internal table to upload to jxyz-jfrm is not the value in the fixed value in value range.&lt;/P&gt;&lt;P&gt;normally we can check with master table but if the value is maintained in value range of the same table, what method i can use to check?&lt;/P&gt;&lt;P&gt;normally i use select single statement to check but i do not think i can use this to check value in value range. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;i need to check the cirrectness of data before i use sql update to pump in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please advise.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 05:56:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-in-table-value-range/m-p/3882765#M933025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T05:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: fixed value in table value range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-in-table-value-range/m-p/3882766#M933026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi U have to do ur validations against table &lt;STRONG&gt;DD07L&lt;/STRONG&gt;. This table has all fixed values given in any domain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do like this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT domname domvalue_l INTO TABLE i_dd07l
FROM dd07L WHERE domname EQ 'UR Ztable field domain name.

LOOP AT uruploaded data INTO wa.
READ TABLE i_dd07L WITH KEY domvalue_l EQ wa-urfieldvalue to be updated(i.e validation field value)
TRANSPORTING NO FIELDS.
IF sy-subrc IS INITIAL.
upload data to Ztable
ELSE.
Populate error log.
ENDIF.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 06:06:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-in-table-value-range/m-p/3882766#M933026</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-05-28T06:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: fixed value in table value range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-in-table-value-range/m-p/3882767#M933027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the table DD07L. Its contains the values of the domain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another Table is DD07T which stores Texts for Domain Fixed Values .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 06:11:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-in-table-value-range/m-p/3882767#M933027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T06:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: fixed value in table value range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-in-table-value-range/m-p/3882768#M933028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You  may use function module CHECK_DOMAIN_VALUES to check value of a domain. (this function module use DD07L data)&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Also don't forget there are values and ranges in this table.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may also generate the maintenance dialog of the table you want to fill. and then analyze the generated program to copy the validation rules (domain, foreign keys, etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 06:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-in-table-value-range/m-p/3882768#M933028</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-05-28T06:21:48Z</dc:date>
    </item>
  </channel>
</rss>

