<?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 data check using field-set in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-check-using-field-set/m-p/1855753#M361841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing a data check using the field-set for one of the fields using the ITS components. How can i do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used this code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of media_f4 occurs 0,&lt;/P&gt;&lt;P&gt;       rcins like t750c-rcins,&lt;/P&gt;&lt;P&gt;       iname like t750c-iname.&lt;/P&gt;&lt;P&gt;data: end of media_f4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( field-set 'MEDIA_F4_RCINS' eq space  AND field-set&lt;/P&gt;&lt;P&gt;                       'MEDIA_F4_INAME' eq space ).&lt;/P&gt;&lt;P&gt;                  OR&lt;/P&gt;&lt;P&gt;  if media_f4 is initial.&lt;/P&gt;&lt;P&gt;     SW_DATA_MISSING = YES.&lt;/P&gt;&lt;P&gt;   TEXT_1000_1 = TEXT-VAC.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It did not work. Also I checked just using MEDIA_F4 it did not work.  Any thoughts or leads would be really helpful...&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jan 2007 20:11:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-29T20:11:15Z</dc:date>
    <item>
      <title>data check using field-set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-check-using-field-set/m-p/1855753#M361841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing a data check using the field-set for one of the fields using the ITS components. How can i do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used this code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of media_f4 occurs 0,&lt;/P&gt;&lt;P&gt;       rcins like t750c-rcins,&lt;/P&gt;&lt;P&gt;       iname like t750c-iname.&lt;/P&gt;&lt;P&gt;data: end of media_f4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( field-set 'MEDIA_F4_RCINS' eq space  AND field-set&lt;/P&gt;&lt;P&gt;                       'MEDIA_F4_INAME' eq space ).&lt;/P&gt;&lt;P&gt;                  OR&lt;/P&gt;&lt;P&gt;  if media_f4 is initial.&lt;/P&gt;&lt;P&gt;     SW_DATA_MISSING = YES.&lt;/P&gt;&lt;P&gt;   TEXT_1000_1 = TEXT-VAC.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It did not work. Also I checked just using MEDIA_F4 it did not work.  Any thoughts or leads would be really helpful...&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 20:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-check-using-field-set/m-p/1855753#M361841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T20:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: data check using field-set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-check-using-field-set/m-p/1855754#M361842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Change the stmt like:&lt;/P&gt;&lt;P&gt;if media_f4[] is initial.&lt;/P&gt;&lt;P&gt;SW_DATA_MISSING = YES.&lt;/P&gt;&lt;P&gt;TEXT_1000_1 = TEXT-VAC.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 21:39:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-check-using-field-set/m-p/1855754#M361842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T21:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: data check using field-set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-check-using-field-set/m-p/1855755#M361843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The field is an selection -option where the first value is blank and the purpose of this is to make it mandatory, when I use just 'media_f4' it is an internal table, and the field is defined as field set in the form  field-set 'MEDIA_F4_RCINS' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose I use this field for the data check in this format, it is resulting ina syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 14:38:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-check-using-field-set/m-p/1855755#M361843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T14:38:48Z</dc:date>
    </item>
  </channel>
</rss>

