<?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: Weekdays and dates in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977590#M71230</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey JJS,&lt;/P&gt;&lt;P&gt;Thanx!! ur answer serves well for the first requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont think WFCS_FCAL_WDAYS_GET_S is suiting req 2. or m not clear with what its doing? is it returning the number of working days in the specified period? i dont think thats what i require...&lt;/P&gt;&lt;P&gt;could you please explain in detail how u think it can be used?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jul 2005 07:05:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-25T07:05:33Z</dc:date>
    <item>
      <title>Weekdays and dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977587#M71227</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;&lt;/P&gt;&lt;P&gt;i have the following two requirements. Please let me know if there are any function modules for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) I have a From-Date and a To-Date. Within this interval i want to find all the nth days of week. for example for n = 2, i want the dates for all mondays within this period.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) again for the interval (from-to date) i want the dates on the nth weekdays. for example, for n = 4 and weekday = 2, then i want dates for all 4th mondays of month within the period. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(of course this means that the period will span for more than one month for the second requirement while for the first it can span for more than one week)&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;PJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 06:14:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977587#M71227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-25T06:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Weekdays and dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977588#M71228</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;Try this one&lt;/P&gt;&lt;P&gt;DATE_COMPUTE_DAY Returns day of the week for a particular date(1=Monday, 5=Friday etc.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATE_TO_DAY Returns day of the week for a particular date('Monday', 'Friday', 'Sat.')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 06:16:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977588#M71228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-25T06:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Weekdays and dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977589#M71229</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;&lt;/P&gt;&lt;P&gt;combine fm &amp;lt;b&amp;gt;WFCS_FCAL_WDAYS_GET_S&amp;lt;/b&amp;gt; (get workdays)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and  fm &amp;lt;b&amp;gt;DAY_IN_WEEK&amp;lt;/b&amp;gt; (nr. of the day)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 06:35:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977589#M71229</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-07-25T06:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Weekdays and dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977590#M71230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey JJS,&lt;/P&gt;&lt;P&gt;Thanx!! ur answer serves well for the first requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont think WFCS_FCAL_WDAYS_GET_S is suiting req 2. or m not clear with what its doing? is it returning the number of working days in the specified period? i dont think thats what i require...&lt;/P&gt;&lt;P&gt;could you please explain in detail how u think it can be used?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 07:05:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977590#M71230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-25T07:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Weekdays and dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977591#M71231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi PJ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look to SE37 and give &lt;STRONG&gt;DAYS&lt;/STRONG&gt; as a search value.  You'll get plenty of function modules for handling dates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ville&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 07:29:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977591#M71231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-25T07:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Weekdays and dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977592#M71232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry PJ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it's &amp;lt;b&amp;gt;WFCS_FCAL_LUT_CREATE_S&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 08:06:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/weekdays-and-dates/m-p/977592#M71232</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-07-25T08:06:06Z</dc:date>
    </item>
  </channel>
</rss>

