<?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: date range in function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-range-in-function-module/m-p/2262899#M490709</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ahmed &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;       Let us assume s_date is the select option for the date range defined like   &lt;/P&gt;&lt;P&gt;       DATA: s_date for p0001-begda. &lt;/P&gt;&lt;P&gt;       Now while calling the FM pass the s_date-low and s_date-high as 2 parameters for the FM.In the FM create 2 parameters begda and endda of type begda. Use the low value and high value in the FM to populate the range table and u can use this range table for further processing of the dates in the FM.The range table can be forwarded as follows:&lt;/P&gt;&lt;P&gt;r_date-low = begda.&lt;/P&gt;&lt;P&gt;r_date-high = endda.&lt;/P&gt;&lt;P&gt;also provide the sign and options for the ranges table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 May 2007 15:35:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-14T15:35:35Z</dc:date>
    <item>
      <title>date range in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-range-in-function-module/m-p/2262896#M490706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;             i have a selection screen where i need to give range of date.&lt;/P&gt;&lt;P&gt;say from 01.01.1998 to 01.02.2007.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to pass this date range to 'Z' funtion module how can i do it.&lt;/P&gt;&lt;P&gt;do i need to define it in tables declaration. if yes what will be the reference type of this field.&lt;/P&gt;&lt;P&gt;I want this range of dates in function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 10:18:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-range-in-function-module/m-p/2262896#M490706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T10:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: date range in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-range-in-function-module/m-p/2262897#M490707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you had defined this date selection range, supply the s_option-low s_option-high values to function modules. Otherwise read the name of the low high field names using F1 tehcnical info. Simply supply these names while calling function modlues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 10:30:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-range-in-function-module/m-p/2262897#M490707</guid>
      <dc:creator>former_member225631</dc:creator>
      <dc:date>2007-05-13T10:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: date range in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-range-in-function-module/m-p/2262898#M490708</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;There are some standard structures existing in R/3 with fields low,high,sign,option. For example there is one standard structure existing for MATNR. Right now i am not able to recollect the structure name. Similarly search for 'date'. I am sure some structures does exist. Since your declaration is Date datatype and it is a select-option then you can pass this to the function module in tables parameter by referencing that existing standard structure for Date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;sksingh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 11:13:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-range-in-function-module/m-p/2262898#M490708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T11:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: date range in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-range-in-function-module/m-p/2262899#M490709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ahmed &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;       Let us assume s_date is the select option for the date range defined like   &lt;/P&gt;&lt;P&gt;       DATA: s_date for p0001-begda. &lt;/P&gt;&lt;P&gt;       Now while calling the FM pass the s_date-low and s_date-high as 2 parameters for the FM.In the FM create 2 parameters begda and endda of type begda. Use the low value and high value in the FM to populate the range table and u can use this range table for further processing of the dates in the FM.The range table can be forwarded as follows:&lt;/P&gt;&lt;P&gt;r_date-low = begda.&lt;/P&gt;&lt;P&gt;r_date-high = endda.&lt;/P&gt;&lt;P&gt;also provide the sign and options for the ranges table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 15:35:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-range-in-function-module/m-p/2262899#M490709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T15:35:35Z</dc:date>
    </item>
  </channel>
</rss>

