<?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 Display the date in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449928#M828721</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;Can anyone please help me?  In the selection criteria, When the user selects the year as 2008 and the month as 04 then I'd like the date in my report to be displayed as April-2008. Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Feb 2008 06:36:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-12T06:36:30Z</dc:date>
    <item>
      <title>Display the date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449928#M828721</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;Can anyone please help me?  In the selection criteria, When the user selects the year as 2008 and the month as 04 then I'd like the date in my report to be displayed as April-2008. Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 06:36:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449928#M828721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T06:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Display the date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449929#M828722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shaheen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess this is your 3rd post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you clarify what is in your selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Month and Year?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe sending your selection screen definition and expected result can help you receive better advices.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 06:40:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449929#M828722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T06:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: Display the date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449930#M828723</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;   You can call the FM 'MONTH_NAMES_GET'. Then after CONCATENATE month '-' year into v_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 06:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449930#M828723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T06:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Display the date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449931#M828724</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;PARAMETERS:&lt;/P&gt;&lt;P&gt;  year(4) type n,&lt;/P&gt;&lt;P&gt;  month(2) type n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data:&lt;/P&gt;&lt;P&gt;    w_month(10) type c,&lt;/P&gt;&lt;P&gt;    w_format(20) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  case month.&lt;/P&gt;&lt;P&gt;    when '01'.&lt;/P&gt;&lt;P&gt;      w_month = 'jan'.&lt;/P&gt;&lt;P&gt;    when '02'.&lt;/P&gt;&lt;P&gt;      w_month = 'feb'.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  concatenate w_month '-' year into w_format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  write: / w_format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like there u mention all the months&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz reward if it is usefull to u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz dont forget to reward....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 06:46:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449931#M828724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T06:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Display the date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449932#M828725</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;Check this function module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_LDATE_OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By passing date e.g. 20080401 (i.e. 01.04.2008 in YYYYMMDD format)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it returns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;01. April 2008.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this to get your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 06:47:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-the-date/m-p/3449932#M828725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T06:47:46Z</dc:date>
    </item>
  </channel>
</rss>

