<?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: Regarding slection-screen problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045311#M421091</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The periods and years must have been declared as separate select-options and hence the period-low should be less than the periods-high value.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Mar 2007 07:43:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-08T07:43:58Z</dc:date>
    <item>
      <title>Regarding slection-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045310#M421090</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;  I have one requirement in selection-screen.if I enter the period from 04  to 03 with fiscal year from 2006 to 2007 as in put parameters in selection-screen, getting error message as 'From period is greater than To period'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body please respond to my question..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:42:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045310#M421090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding slection-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045311#M421091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The periods and years must have been declared as separate select-options and hence the period-low should be less than the periods-high value.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:43:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045311#M421091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding slection-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045312#M421092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi have you declare&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_spmon for PGPL-spmon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer from dictionary type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:45:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045312#M421092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding slection-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045313#M421093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Say you have the selection fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK block &lt;/P&gt;&lt;P&gt;                                [WITH FRAME [TITLE title]] &lt;/P&gt;&lt;P&gt;                                [NO INTERVALS]. &lt;/P&gt;&lt;P&gt;parameters: per1  fiscyr1 per2  fiscyr2&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK block. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK block. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION SCREEN ON BLOCK block.&lt;/P&gt;&lt;P&gt;data: num1 type n, num2 type n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE fiscyr1 per1 into num1.&lt;/P&gt;&lt;P&gt;CONCATENATE fiscyr1 per1 into num2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if num1 &amp;gt; num2.&lt;/P&gt;&lt;P&gt;message: from period greater than to period&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:51:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045313#M421093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding slection-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045314#M421094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Declare the fiscal year and Period as seperate select-options.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:52:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045314#M421094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding slection-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045315#M421095</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;  Already i have declared select-options like as&lt;/P&gt;&lt;P&gt;   S_MONAT  FOR    BKPF-MONAT      "Fiscal Period&lt;/P&gt;&lt;P&gt;   S_GJAHR  FOR    BKPF-GJAHR      "Fiscal Year (PGI)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:57:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045315#M421095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding slection-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045316#M421096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry i have misunderstand your query .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes it will give an error since for period you have given 04 to 03 which is not permissible .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so as per my previous reply just use monyear combination here you can give&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;04.2004 to 03.2005.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now split it as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like s_spmon-low(4) = fiscal year from&lt;/P&gt;&lt;P&gt;s_spmon-high(4) = fiscal year to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_spmon-low+4(2) = monat from &lt;/P&gt;&lt;P&gt;like that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 08:14:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-slection-screen-problem/m-p/2045316#M421096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T08:14:26Z</dc:date>
    </item>
  </channel>
</rss>

