<?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: Due Date in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/due-date/m-p/1495400#M230062</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;Use FM : 'DATE_CHECK_WORKINGDAY' to check the given date is working day or not. if it is holiday then add + 1 to date and check once again till you find next working day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link :&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1197777"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Aug 2006 17:15:23 GMT</pubDate>
    <dc:creator>Laxmana_Appana_</dc:creator>
    <dc:date>2006-08-03T17:15:23Z</dc:date>
    <item>
      <title>Due Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/due-date/m-p/1495398#M230060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;all&lt;/P&gt;&lt;P&gt;  Can any one help me to get the due date??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  W_Due_DAte = posting date + days&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1-how i will determine that whether W_DUE_DATE is a non-working or a working day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2- if it is non working day then how i will get next working Day( Not previous)..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnanks&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 17:11:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/due-date/m-p/1495398#M230060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T17:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Due Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/due-date/m-p/1495399#M230061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After that calculation pass W_Due_DAte  to the below function module.&lt;/P&gt;&lt;P&gt;this function module will give you either today or tomorrow(as we place '+' for CORRECT_OPTION), based on the factory calendor id.&lt;/P&gt;&lt;P&gt;v_FABKL can be 'US' etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            CORRECT_OPTION               = '+'&lt;/P&gt;&lt;P&gt;            DATE                         = W_Due_DAte &lt;/P&gt;&lt;P&gt;            FACTORY_CALENDAR_ID          = V_FABKL&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            DATE                         = V_DATE&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            CALENDAR_BUFFER_NOT_LOADABLE = 1&lt;/P&gt;&lt;P&gt;            CORRECT_OPTION_INVALID       = 2&lt;/P&gt;&lt;P&gt;            DATE_AFTER_RANGE             = 3&lt;/P&gt;&lt;P&gt;            DATE_BEFORE_RANGE            = 4&lt;/P&gt;&lt;P&gt;            DATE_INVALID                 = 5&lt;/P&gt;&lt;P&gt;            FACTORY_CALENDAR_NOT_FOUND   = 6&lt;/P&gt;&lt;P&gt;            OTHERS                       = 7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now V_DATE will have either today if its a working day or tomorrow if today is holiday.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 17:14:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/due-date/m-p/1495399#M230061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T17:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Due Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/due-date/m-p/1495400#M230062</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;Use FM : 'DATE_CHECK_WORKINGDAY' to check the given date is working day or not. if it is holiday then add + 1 to date and check once again till you find next working day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link :&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1197777"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 17:15:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/due-date/m-p/1495400#M230062</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-08-03T17:15:23Z</dc:date>
    </item>
  </channel>
</rss>

