<?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: Reporting Issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639292#M1092131</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 cannot restrict any values, but you can validate using &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;At Selection-screen event.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Incase it is not correct dont proceed give a mesage and stay on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Naveneeth K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Oct 2008 10:51:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-14T10:51:47Z</dc:date>
    <item>
      <title>Reporting Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639291#M1092130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How we can Restrict the values in Parameters/ Select-Options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 10:49:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639291#M1092130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T10:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639292#M1092131</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 cannot restrict any values, but you can validate using &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;At Selection-screen event.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Incase it is not correct dont proceed give a mesage and stay on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Naveneeth K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 10:51:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639292#M1092131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T10:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639293#M1092132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;I think By Validating we can  Restrict the values (At selection screen event)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 10:52:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639293#M1092132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T10:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639294#M1092133</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 use F4IF_INT_TABLE_VALUE_REQUEST function module for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
tables:pa0000.
DATA: BEGIN OF IT_SEL OCCURS 0,
       massn LIKE pa0000-massn,
       mntxt like t529t-mntxt,     
END OF IT_SEL."

select-options :  s_pernr  for pa0000-pernr no intervals no-extension ,
                  s_massn  for  pa0000-massn  obligatory  no intervals.
at selection-screen on value-request for s_massn-low .

  REFRESH: IT_SEL.
  clear: it_sel.
  it_sel-massn = '10'.
  it_sel-mntxt = 'Retirement process'.
  append it_sel.

  clear: it_sel.
  it_sel-massn = '18'.
  it_sel-mntxt = 'Deputation Inward'.
  append it_sel.

  clear: it_sel.
  it_sel-massn = '19'.
  it_sel-mntxt = 'Deputation Outward'.
  append it_sel.

  clear: it_sel.
  it_sel-massn = '20'.
  it_sel-mntxt = 'Termination/Seperation'.
  append it_sel.

  clear: it_sel.
  it_sel-massn = '28'.
  it_sel-mntxt = 'Pre-Seperation'.
  append it_sel.

  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
*   DDIC_STRUCTURE         = ' '
      RETFIELD               = 'MASSN'
*   PVALKEY                = ' '
     DYNPPROG               = SY-REPID
     DYNPNR                 = SY-DYNNR
     DYNPROFIELD            = 'S_MASSN-LOW'
*   STEPL                  = 0
*   WINDOW_TITLE           =
*   VALUE                  = ' '
     VALUE_ORG              = 'S'
*   MULTIPLE_CHOICE        = ' '
*   DISPLAY                = ' '
*   CALLBACK_PROGRAM       = 'SY-REPID'
*   CALLBACK_FORM          = ' '
*   MARK_TAB               =
* IMPORTING
*   USER_RESET             =
    TABLES
      VALUE_TAB              =  IT_SEL
*   FIELD_TAB              =
*   RETURN_TAB             =
*   DYNPFLD_MAPPING        =
* EXCEPTIONS
*   PARAMETER_ERROR        = 1
*   NO_VALUES_FOUND        = 2
*   OTHERS                 = 3
            .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 10:55:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639294#M1092133</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-10-14T10:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639295#M1092134</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;   if u want to validate the values which one has entered in the parameter/select-options fields then fire the AT SELECTION_SCREEN event .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if u want to restrict the values that appear on pressing F4 then fire AT SELECTION_SCREEN OUTPUT and select only the data u want to display in parameter/select-options in a internal table and pass it to function module -F4IF_INT_TABLE_VALUE_REQUEST .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 11:01:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639295#M1092134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T11:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639296#M1092135</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;u can restirct the values.&lt;/P&gt;&lt;P&gt;just go through this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;tables:pernr.

selection-screen begin of block b1.
select-options: i_pernr for pernr-pernr.
selection-screen end of block b1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now if u run this report u sill see the selection screen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_pernr |--&lt;DEL&gt;-| to |&lt;/DEL&gt;----|  |=&amp;gt;|&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now click on the |=&amp;gt;| button..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u will see a dialoug box...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here u will see 4 tabs...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;click on Red color Single Values tab, here u enter all the values to restrict individual pernrs.&lt;/P&gt;&lt;P&gt;If u want restrict a set of pernrs click on Red color Ranges tab&lt;/P&gt;&lt;P&gt;here u enter from to end pernrs to restrict...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;shankar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 11:06:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reporting-issue/m-p/4639296#M1092135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T11:06:29Z</dc:date>
    </item>
  </channel>
</rss>

