<?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: Get Current Period. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006757#M409082</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;HR_MX_GET_PAYROLL_PERIOD       To Get payroll period and year of a payroll period at a given date&lt;/P&gt;&lt;P&gt;Check this also.&lt;/P&gt;&lt;P&gt;G_PERIOD_GET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly reward points by clicking the star on the left of reply,if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Mar 2007 01:59:47 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2007-03-06T01:59:47Z</dc:date>
    <item>
      <title>Get Current Period.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006752#M409077</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 want current period based on system date .Please tell me name of Function module so that i can pass system date n get period for that.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ulhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 07:18:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006752#M409077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T07:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Get Current Period.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006753#M409078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DETERMINE_PERIOD Retrieve fiscal year and payrole period (Note: verision parameter is fiscal year varient from table T009) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the sample code&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/fmodules/fms_fiscalyr.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/fmodules/fms_fiscalyr.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FTI_FISCAL_YEAR_MONTH_GET Returns fiscal year for specific date &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 07:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006753#M409078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T07:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get Current Period.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006754#M409079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FM_GET_VALID_PERIOD_FROM_DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this and award points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 23:41:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006754#M409079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T23:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Get Current Period.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006755#M409080</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;HR_PAYROLL_PERIODS_GET&lt;/P&gt;&lt;P&gt; Get the payroll period for a particular date.  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'HR_PAYROLL_PERIOD_GET'&lt;/P&gt;&lt;P&gt;   exporting&lt;/P&gt;&lt;P&gt;     payroll_area         = period&lt;/P&gt;&lt;P&gt;     date                 = sy-datum&lt;/P&gt;&lt;P&gt;  importing&lt;/P&gt;&lt;P&gt;    payroll_year         = ac_year&lt;/P&gt;&lt;P&gt;    payroll_period       = a_period&lt;/P&gt;&lt;P&gt;  exceptions&lt;/P&gt;&lt;P&gt;    no_entry_t549a       = 1&lt;/P&gt;&lt;P&gt;    no_entry_t549q       = 2&lt;/P&gt;&lt;P&gt;    others               = 3&lt;/P&gt;&lt;P&gt;           .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; regards,&lt;/P&gt;&lt;P&gt;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 01:36:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006755#M409080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T01:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Get Current Period.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006756#M409081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try  FI_PERIOD_DETERMINE is your require fiscal period.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002.
 
data:
      period like t009b-poper,
      year like bkpf-gjahr.
 
parameters: p_datum type sy-datum.
parameters: p_bukrs type t001-bukrs.
 
call function 'FI_PERIOD_DETERMINE'
     exporting
          i_budat = p_datum
          i_bukrs = p_bukrs
     importing
          e_gjahr = year
          e_poper = period.
 
write:/ period, year.



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 01:51:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006756#M409081</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-06T01:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Get Current Period.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006757#M409082</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;HR_MX_GET_PAYROLL_PERIOD       To Get payroll period and year of a payroll period at a given date&lt;/P&gt;&lt;P&gt;Check this also.&lt;/P&gt;&lt;P&gt;G_PERIOD_GET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly reward points by clicking the star on the left of reply,if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 01:59:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-period/m-p/2006757#M409082</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-03-06T01:59:47Z</dc:date>
    </item>
  </channel>
</rss>

