<?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: Requested Delivery Date Field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/requested-delivery-date-field/m-p/4836171#M1131368</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;     chanakya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It better to use sub strings instead of using FM.....coz it will be more performing......If the field always contains value in this 'WE 30.07.2008 02:00 CET'format then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delacre a variable and assign the dtae to it and use it fr further processing&lt;/P&gt;&lt;P&gt;i.e for example if int_dtae-date conatins 'WE 30.07.2008 02:00 CET and u want wf_loc_var to contain &lt;/P&gt;&lt;P&gt;'30.07.2008'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wf_loc_var = int_date-date=4(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get back if u face problem &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Nov 2008 09:22:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-20T09:22:05Z</dc:date>
    <item>
      <title>Requested Delivery Date Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/requested-delivery-date-field/m-p/4836170#M1131367</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 a field in the database which stores the date in the following format 'WE 30.07.2008 02:00 CET'.&lt;/P&gt;&lt;P&gt;Which contains details like weekday, date, time and the time zone. My requirement is to retrieve the only the date from it. Do we have any function module for it? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 09:14:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/requested-delivery-date-field/m-p/4836170#M1131367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T09:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Requested Delivery Date Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/requested-delivery-date-field/m-p/4836171#M1131368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;     chanakya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It better to use sub strings instead of using FM.....coz it will be more performing......If the field always contains value in this 'WE 30.07.2008 02:00 CET'format then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delacre a variable and assign the dtae to it and use it fr further processing&lt;/P&gt;&lt;P&gt;i.e for example if int_dtae-date conatins 'WE 30.07.2008 02:00 CET and u want wf_loc_var to contain &lt;/P&gt;&lt;P&gt;'30.07.2008'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wf_loc_var = int_date-date=4(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get back if u face problem &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 09:22:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/requested-delivery-date-field/m-p/4836171#M1131368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T09:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Requested Delivery Date Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/requested-delivery-date-field/m-p/4836172#M1131369</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;  Insted use SPLIT keyword to get date value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  like &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  data : s1 type string,
           s2 type string,
           s3 type string,
           s4 type string ,
           s_main type string.

   split s_main at space into s1 s2 s3 s4.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then ur &lt;STRONG&gt;s2&lt;/STRONG&gt; will always contain DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sachin sharma on Nov 20, 2008 10:36 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 09:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/requested-delivery-date-field/m-p/4836172#M1131369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T09:34:21Z</dc:date>
    </item>
  </channel>
</rss>

