<?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: Validation for select option holding date value in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658371#M1944171</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm quite a bit confused by this post too. "11:11 AM" is the &lt;STRONG&gt;time&lt;/STRONG&gt; format, not date format, so what exactly are you doing? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly add more information, such as the variable definitions and some specific data examples. To be honest though I'm not sure why an answer to this can't be simply found in debugger... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 May 2016 21:35:56 GMT</pubDate>
    <dc:creator>Jelena_Perfiljeva</dc:creator>
    <dc:date>2016-05-19T21:35:56Z</dc:date>
    <item>
      <title>Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658361#M1944161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to validate the entry in select-option(s_conft here) to an internal table field holding date ( detltab&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;conf_date_time+11&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;8&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) here&lt;/SPAN&gt;) in&lt;/P&gt;&lt;P&gt;format&amp;nbsp; e.g: 11:11 AM.&lt;/P&gt;&lt;P&gt;the select option field is holding the value in IEQ111100000000 format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To achieve this functionality,i did the following coding&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;s_conft &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INITIAL&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_tim &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;detltab&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;conf_date_time+11&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;8&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;lv_tim+6&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;EQ &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'PM'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_hr1 &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;lv_tim+0&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;+ &lt;SPAN class="L0S32"&gt;12&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ELSE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_hr1 &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;lv_tim+0&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_hr2 &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;lv_tim+3&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CONCATENATE &lt;/SPAN&gt;lv_hr1 lv_hr2 &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;lv_tim_final&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;lv_tim_final &lt;SPAN class="L0S52"&gt;IN &lt;/SPAN&gt;s_conft&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;DELETE &lt;/SPAN&gt;detltab&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CONTINUE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;But this piece of code is not working.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Please help me out with this.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;I need to delete entries from internal table if its date entry doesn't match the date entry in selection screen . &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 06:56:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658361#M1944161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-18T06:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658362#M1944162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if lv_tim_final ne s_conft-low.&lt;/P&gt;&lt;P&gt;delete detltab.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:19:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658362#M1944162</guid>
      <dc:creator>jay_kumar8</dc:creator>
      <dc:date>2016-05-18T07:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658363#M1944163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the problem with this approach would be: if the user enters high value for the select option,then that would not be validated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please correct me if i am wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:28:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658363#M1944163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-18T07:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658364#M1944164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Roshan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are concatenating only 4 characters, like 1111, and comparing with 111100. You missed the seconds.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Add '00' in your concatenate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52" style="font-size: 12px; color: #333333; background: #ffffff;"&gt;CONCATENATE &lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;lv_hr1 lv_hr2 '00' &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-size: 12px; color: #333333; background: #ffffff;"&gt;INTO &lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;lv_tim_final&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:40:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658364#M1944164</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2016-05-18T07:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658365#M1944165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you need to delete...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whether if low and high value is not equal then delete?&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;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:41:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658365#M1944165</guid>
      <dc:creator>jay_kumar8</dc:creator>
      <dc:date>2016-05-18T07:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658366#M1944166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When a value is provided to select option, it stores value in the following format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;s_conft-sign = I.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;s_conft-option = EQ&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (if high value is provided it becomes BT)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;s_conft-low = 111100&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (last two are 0 since time is provided as 11:11:00)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;s_conft-high = 000000&amp;nbsp;&amp;nbsp; (0 as no value provided)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Therefore, s_conft value shows up to be IEQ111100000000.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;If i am concatenating like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S52"&gt;CONCATENATE &lt;/SPAN&gt;lv_hr1 lv_hr2 s_conft+7&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;lv_tim_final&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S55"&gt;then ,its low value matches and program execute as pretended.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S55"&gt;But what if user enters a high value for the select-options.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S55"&gt;That i am unable to do.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:53:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658366#M1944166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-18T07:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658367#M1944167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i need to delete the entry when the time stored in internal table does not matches the entry entered by user in select option .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:56:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658367#M1944167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-18T07:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658368#M1944168</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;BR /&gt;I think I'm not understanding well your problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have a value like '11:11 AM' always without seconds, haven't you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think &lt;SPAN style="font-size: 13.3333px;"&gt;you should concatenate always the literal '00' at the end.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the high value in the select options will still work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 08:20:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658368#M1944168</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2016-05-18T08:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658369#M1944169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can do like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;if lv_tim_final ne s_conft-low or &lt;SPAN style="color: #333333; font-size: 12px;"&gt;lv_tim_final ne s_conft-high&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;delete detltab.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Regards&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 08:47:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658369#M1944169</guid>
      <dc:creator>jay_kumar8</dc:creator>
      <dc:date>2016-05-18T08:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658370#M1944170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the type of &lt;SPAN style="color: #333333; font-size: 12px;"&gt;s_conft&amp;nbsp; ?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 07:27:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658370#M1944170</guid>
      <dc:creator>former_member197132</dc:creator>
      <dc:date>2016-05-19T07:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Validation for select option holding date value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658371#M1944171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm quite a bit confused by this post too. "11:11 AM" is the &lt;STRONG&gt;time&lt;/STRONG&gt; format, not date format, so what exactly are you doing? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly add more information, such as the variable definitions and some specific data examples. To be honest though I'm not sure why an answer to this can't be simply found in debugger... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 21:35:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-for-select-option-holding-date-value/m-p/11658371#M1944171</guid>
      <dc:creator>Jelena_Perfiljeva</dc:creator>
      <dc:date>2016-05-19T21:35:56Z</dc:date>
    </item>
  </channel>
</rss>

