<?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: function module to display the selection screen values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958864#M698017</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 am not sure if such FM exists...&lt;/P&gt;&lt;P&gt;At least we use a Z... FM for this purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Oct 2007 12:26:35 GMT</pubDate>
    <dc:creator>JozsefSzikszai</dc:creator>
    <dc:date>2007-10-23T12:26:35Z</dc:date>
    <item>
      <title>function module to display the selection screen values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958863#M698016</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;is there any FM which can be used to display  the values entered in the seletion screen as ALV header data?&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sandhya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 12:16:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958863#M698016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T12:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: function module to display the selection screen values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958864#M698017</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 am not sure if such FM exists...&lt;/P&gt;&lt;P&gt;At least we use a Z... FM for this purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 12:26:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958864#M698017</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-10-23T12:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: function module to display the selection screen values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958865#M698018</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;Define the class to display the values of selection screen as ALV Header Data.&lt;/P&gt;&lt;P&gt;See the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Class defintion for TOP-OF-PAGE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_event_receiver DEFINITION.&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    METHODS: top_of_page&lt;/P&gt;&lt;P&gt;                   FOR EVENT top_of_page&lt;/P&gt;&lt;P&gt;                       OF cl_gui_alv_grid&lt;/P&gt;&lt;P&gt;                            IMPORTING e_dyndoc_id.&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_event_receiver DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Class implementation for TOP-OF-PAGE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_event_receiver IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;  METHOD top_of_page.                   "implementation&lt;/P&gt;&lt;P&gt;    DATA : lv_text          TYPE sdydo_text_element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Selection Criteria&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; CONCATENATE text-032 ' : ' INTO lv_text SEPARATED BY space.&lt;/P&gt;&lt;P&gt;    CALL METHOD go_dyndoc_id-&amp;gt;add_text&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        text      = lv_text&lt;/P&gt;&lt;P&gt;        sap_style = cl_dd_area=&amp;gt;key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Company code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD go_dyndoc_id-&amp;gt;new_line.&lt;/P&gt;&lt;P&gt;    CONCATENATE text-007 '   : ' p_bukrs INTO lv_text SEPARATED BY space.&lt;/P&gt;&lt;P&gt;    CALL METHOD go_dyndoc_id-&amp;gt;add_text&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        text      = lv_text&lt;/P&gt;&lt;P&gt;        sap_style = cl_dd_area=&amp;gt;key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Root Cause Code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD go_dyndoc_id-&amp;gt;new_line.&lt;/P&gt;&lt;P&gt;    CLEAR lv_text.&lt;/P&gt;&lt;P&gt;    CONCATENATE text-026 p_rccode INTO lv_text SEPARATED BY space.&lt;/P&gt;&lt;P&gt;    CALL METHOD go_dyndoc_id-&amp;gt;add_text&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        text      = lv_text&lt;/P&gt;&lt;P&gt;        sap_style = cl_dd_area=&amp;gt;key.&lt;/P&gt;&lt;P&gt;    CALL METHOD go_dyndoc_id-&amp;gt;new_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Customer Number&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF s_kunnr IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;      CLEAR lv_text.&lt;/P&gt;&lt;P&gt;      CONCATENATE text-030 s_kunnr-low INTO lv_text SEPARATED BY space.&lt;/P&gt;&lt;P&gt;      IF s_kunnr-high IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;        CONCATENATE lv_text text-029 s_kunnr-high INTO lv_text SEPARATED BY space.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      CALL METHOD go_dyndoc_id-&amp;gt;add_text&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          text      = lv_text&lt;/P&gt;&lt;P&gt;          sap_style = cl_dd_area=&amp;gt;key.&lt;/P&gt;&lt;P&gt;      CALL METHOD go_dyndoc_id-&amp;gt;new_line.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF go_html_cntrl IS INITIAL.&lt;/P&gt;&lt;P&gt;      CREATE OBJECT go_html_cntrl&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          parent = go_parent_html.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    DATA: lv_background_id TYPE sdydo_key VALUE space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'REUSE_ALV_GRID_COMMENTARY_SET'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        document = go_dyndoc_id&lt;/P&gt;&lt;P&gt;        bottom   = space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD go_dyndoc_id-&amp;gt;merge_document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD go_dyndoc_id-&amp;gt;set_document_background&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        picture_id = lv_background_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     go_dyndoc_id-&amp;gt;html_control = go_html_cntrl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD e_dyndoc_id-&amp;gt;display_document&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        reuse_control      = abap_true&lt;/P&gt;&lt;P&gt;        parent             = go_parent_html&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        html_display_error = 1.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE i014.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "TOP_OF_PAGE&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 12:30:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958865#M698018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T12:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: function module to display the selection screen values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958866#M698019</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;Use FM  &lt;/P&gt;&lt;P&gt; CALL FUNCTION 'RS_COVERPAGE_SELECTIONS'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      report                  = w_program&lt;/P&gt;&lt;P&gt;      variant                 = ''&lt;/P&gt;&lt;P&gt;     no_import               = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      infotab                 = mtab_sel_options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raju chitale&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 12:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958866#M698019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T12:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: function module to display the selection screen values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958867#M698020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sandhya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the following two function modules:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;RS_REFRESH_FROM_SELECTOPTIONS (Read current select options from selscreen)
RS_LIST_SELECTION_TABLE ("print" current select options)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 12:50:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958867#M698020</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-10-23T12:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: function module to display the selection screen values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958868#M698021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandhya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this material will help you. Reward me if it is helpful to you.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This step is required to get the selection screen information in the report output.&lt;/P&gt;&lt;P&gt;The prerequisite for this is to set the parameter LAYOUT-GET_SELINFOS of the IMPORTING structure should be populated with 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The parameters to be passed in the IS_SEL_HIDE of the REUSE_ALV_GRID_DISPLAY table are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;o mode:              'R' = only the entries passed in the internal table IS_SEL_HIDE-T_ENTRIES        &lt;/P&gt;&lt;P&gt;Are output in the pop up. Selection info, which the list tool read in the selection screen (when called by a report with a selection screen), is replaced by the values passed.&lt;/P&gt;&lt;P&gt;'S' = the selection info which the list tool read in the selection screen of the calling report are modified by the entries in the table IS_SEL_HIDE-T_ENTRIES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;o t_entries:         Selection info table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;o t_entries-mode:   'A' = output the selection info for the current table record in the info popup.&lt;/P&gt;&lt;P&gt;'D' = do not output select option or SELNAME parameter selection info in   the popup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;o t_entries-selname: (only used in t_entries-mode = 'D') : Name of the select option or parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following table fields are only used in t_entries-mode = 'A'. They contain the selection information to be added.&lt;/P&gt;&lt;P&gt;&amp;#149;	t_entries-field:  DDIC field name of the field for which selection information is to be output.&lt;/P&gt;&lt;P&gt;&amp;#149;	t_entries-table:  DDIC table names of t_entries-field.&lt;/P&gt;&lt;P&gt;&amp;#149;	t_entries-stext:  Field name in info popup.&lt;/P&gt;&lt;P&gt;&amp;#149;	If t_entries-field and t_entries-table have been entered, this text is taken from DDIC.&lt;/P&gt;&lt;P&gt;&amp;#149;	t_entries-valuf:  Selection condition 'from' value (external format)&lt;/P&gt;&lt;P&gt;&amp;#149;	t_entries-valut:  Selection condition 'to' value (external format)&lt;/P&gt;&lt;P&gt;&amp;#149;	t_entries-sign0:  (I)nclusive (E)xclusive&lt;/P&gt;&lt;P&gt;&amp;#149;	t_entries-option:  All values of the select options Option field allowed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 13:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958868#M698021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T13:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: function module to display the selection screen values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958869#M698022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at IS_PRINT parameter of the ALV function module. It should have some flags to display/hide selection values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 14:30:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-display-the-selection-screen-values/m-p/2958869#M698022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T14:30:48Z</dc:date>
    </item>
  </channel>
</rss>

