<?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 simple report issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417327#M1243712</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;H guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have make use of select options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT-OPTIONS so_from FOR sy-datum NO INTERVALS OBLIGATORY DEFAULT sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now on event - AT SELECTION-SCREEN. I have one  PERFORM VALIDATE_SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this subrotine is defines in include which is included in report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now am using so_from in this perform , but while activating it says that so_from in unlown and not specifies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I use it in include ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Pranshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Apr 2009 07:01:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-06T07:01:07Z</dc:date>
    <item>
      <title>simple report issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417327#M1243712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;H guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have make use of select options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT-OPTIONS so_from FOR sy-datum NO INTERVALS OBLIGATORY DEFAULT sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now on event - AT SELECTION-SCREEN. I have one  PERFORM VALIDATE_SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this subrotine is defines in include which is included in report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now am using so_from in this perform , but while activating it says that so_from in unlown and not specifies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I use it in include ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Pranshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2009 07:01:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417327#M1243712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-06T07:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: simple report issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417328#M1243713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;For this issue use so_option-low to refer to from feild and so_option-high to refer to from feild.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds&lt;/P&gt;&lt;P&gt;Nitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2009 07:02:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417328#M1243713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-06T07:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: simple report issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417329#M1243714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the Include program use some local variable to hold the value of the select-options. In the main program call the perform using that actual varaible. without this interface you cannot validate in the include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main Program :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
perform validate_selection using s_from.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include program:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
form validate_selection using p_from like s_from.
endform.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2009 07:03:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417329#M1243714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-06T07:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: simple report issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417330#M1243715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pranshu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to declare it as type &lt;STRONG&gt;EFG_TAB_RANGES&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ivan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2009 07:04:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417330#M1243715</guid>
      <dc:creator>_IvanFemia_</dc:creator>
      <dc:date>2009-04-06T07:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: simple report issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417331#M1243716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah am doing that ways only - &lt;/P&gt;&lt;P&gt;  IF so_from-low &amp;gt;= so_todt-low.&lt;/P&gt;&lt;P&gt;Still not getting activating and same error that it desont not exist.&lt;/P&gt;&lt;P&gt;Any other viewa guys &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pranshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2009 07:05:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417331#M1243716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-06T07:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: simple report issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417332#M1243717</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 think the issue is not with the include, it is with the selectoptions declarations.&lt;/P&gt;&lt;P&gt;you have declared select options using sy-datum reference, which is not a database reference parameter. try to declare a relevant database reference field for that, and i guess it would solve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-srini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2009 07:05:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417332#M1243717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-06T07:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: simple report issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417333#M1243718</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;In explanation to above point that we can refer to either the from feild or the To field of the select option.&lt;/P&gt;&lt;P&gt;And to access the from feild we need to specify the so_optin-low and to access the TO field we need to specify so_option-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because so_option doesnot exists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2009 07:05:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417333#M1243718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-06T07:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: simple report issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417334#M1243719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;implemeted in diff way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 15:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-report-issue/m-p/5417334#M1243719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T15:56:26Z</dc:date>
    </item>
  </channel>
</rss>

