<?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: selection screen layout Issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205043#M1204162</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can change the layout by using call screen statement, i.e when a particular radio button statement is selected use call screen and the layout'll change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Dheeraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Feb 2009 10:49:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-12T10:49:37Z</dc:date>
    <item>
      <title>selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205036#M1204155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a requirement where i have to customize the layout dynamically in the report output.the layout should be changed as per the selection screen field entry.is this possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:15:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205036#M1204155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205037#M1204156</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 use&lt;/P&gt;&lt;P&gt; loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name CS 'FIELD1'.&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is used to modify screen depending on fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:19:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205037#M1204156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205038#M1204157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This can be done by &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen output event..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just execute and observe how it behaves...when u click on the second radio button the field p_name2 will disapper..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copy it and execute it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame.&lt;/P&gt;&lt;P&gt; parameters:&lt;/P&gt;&lt;P&gt;  p_sales radiobutton group grp user-command UC default 'X',&lt;/P&gt;&lt;P&gt;  p_order radiobutton group grp.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  parameters:&lt;/P&gt;&lt;P&gt; p_name type sy-uname modif id g1,&lt;/P&gt;&lt;P&gt; p_name1 type sy-uname modif id g2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b2 with frame.&lt;/P&gt;&lt;P&gt; parameters:&lt;/P&gt;&lt;P&gt; p_name2 type sy-uname modif id g3.&lt;/P&gt;&lt;P&gt;selection-screen end of block b2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;  if p_sales NE 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-group1 CS 'G3'.&lt;/P&gt;&lt;P&gt;       screen-active = 0.&lt;/P&gt;&lt;P&gt;       modify screen.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;   endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:22:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205038#M1204157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205039#M1204158</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 one, How it is changing dynamically&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : mara,marc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************************************************************************************&lt;/P&gt;&lt;P&gt;************************&lt;STRONG&gt;Selection screen fields&lt;/STRONG&gt;******************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS    : p_meth1  RADIOBUTTON GROUP g1 USER-COMMAND g1,&lt;/P&gt;&lt;P&gt;                p_meth2  RADIOBUTTON GROUP g1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK matnr&lt;/P&gt;&lt;P&gt;                          WITH FRAME TITLE text-002.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : so_matnr FOR marc-matnr MODIF ID m1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : so_werks FOR marc-werks MODIF ID m1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK file WITH FRAME TITLE text-003.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_fpath TYPE ibipparms-path MODIF ID m2 LOWER CASE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK date WITH FRAME TITLE text-004.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETERS     : p_date TYPE datuv.                         "CCT51576.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***************************************************************************************&lt;/P&gt;&lt;P&gt;***********************&lt;STRONG&gt;Screen Validation&lt;/STRONG&gt;*********************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    CASE screen-group1.&lt;/P&gt;&lt;P&gt;      WHEN 'M1'.&lt;/P&gt;&lt;P&gt;        IF p_meth1 &amp;lt;&amp;gt; 'X'.&lt;/P&gt;&lt;P&gt;          screen-active = 1.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        IF p_meth2 = 'X'.&lt;/P&gt;&lt;P&gt;          screen-active = 0.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      WHEN 'M2'.&lt;/P&gt;&lt;P&gt;        IF p_meth2 = 'X'.&lt;/P&gt;&lt;P&gt;          screen-active = 1.&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;          screen-active = 0.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        IF p_meth1 = 'X'.&lt;/P&gt;&lt;P&gt;          screen-active = 0.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205039#M1204158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205040#M1204159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;refer below demo program....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BALVSD01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; this can be did through following f.m&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REUSE_ALV_VARIANT_DEFAULT_GET&lt;/P&gt;&lt;P&gt;REUSE_ALV_VARIANT_F4&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:30:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205040#M1204159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205041#M1204160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys &lt;/P&gt;&lt;P&gt;U have not understood what my requirement is . i dont want details reg creation of button on selection screen . i want to know if we can change the layout of the output fields displayed based on  the layout i give as input .pls tell me the logic to do the same..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:36:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205041#M1204160</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205042#M1204161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Would you please be more specific do you wnat to change the layout of the ALV on the selection screen or the change the display of the parameters on the selection screen...&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:45:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205042#M1204161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205043#M1204162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can change the layout by using call screen statement, i.e when a particular radio button statement is selected use call screen and the layout'll change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Dheeraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:49:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205043#M1204162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205044#M1204163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            I_CALLBACK_PROGRAM = G_REPID&lt;/P&gt;&lt;P&gt;            I_STRUCTURE_NAME   = 'SFLIGHT'&lt;/P&gt;&lt;P&gt;            *I_SAVE             = 'A' *     " * A = All =&amp;gt; Standard &amp;amp; User*&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            T_OUTTAB           = GT_SFLIGHT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u specify this option then u will get &lt;STRONG&gt;change layout push button&lt;/STRONG&gt; option in report output ---through that u can create n number of layout and as i specified above u can use that f.m to get the &lt;STRONG&gt;.saved layout&lt;/STRONG&gt; variant in selection screen as per u need to display the o/p.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:57:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205044#M1204163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205045#M1204164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;am asking about report output not module pool.&lt;/P&gt;&lt;P&gt;hi siddharth&lt;/P&gt;&lt;P&gt;i want the output of the ALV grid that has to be modify dynamically according to layout selected on the selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:59:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205045#M1204164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205046#M1204165</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;try using lvc_s_layo structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see this example.&lt;/P&gt;&lt;P&gt; w_lay-grid_title = 'Flight details'.&lt;/P&gt;&lt;P&gt;  w_lay-zebra = 'X'.&lt;/P&gt;&lt;P&gt;w_lay-edit = 'X'.&lt;/P&gt;&lt;P&gt;w_lay-no_toolbar = 'X'.&lt;/P&gt;&lt;P&gt;w_lay-CWIDTH_OPT = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass this w_lay .&lt;/P&gt;&lt;P&gt; CALL METHOD r_alv_grid-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt; is_layout                     = w_lay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 11:10:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205046#M1204165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T11:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205047#M1204166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If u want to display your layout dynamically, then u have to used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      i_style_table             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      it_fieldcatalog            = it_fcat&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      i_length_in_byte          =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      ep_table                   = it_tab&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      e_style_fname             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      generate_subpool_dir_full = 1&lt;/P&gt;&lt;P&gt;      OTHERS                    = 2&lt;/P&gt;&lt;P&gt;       .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where it_fcat is ur fieldcat &amp;amp; it_tab is ur internal tabel.&lt;/P&gt;&lt;P&gt;Then u have to used field symbol to assign the values to the table..&lt;/P&gt;&lt;P&gt;then same dispaly list using 'REUSE_ALV_GRID_DISPLAY'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 11:17:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205047#M1204166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T11:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205048#M1204167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Take a look at the demo program &lt;STRONG&gt;BCALV_GRID_10&lt;/STRONG&gt; 'Load a layout before list display' of package SLIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 11:18:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205048#M1204167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T11:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205049#M1204168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi niki&lt;/P&gt;&lt;P&gt;i have created many layouts for the output . in the selection screen field i have to input the layouts what i have saved. What FM i have to use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 11:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205049#M1204168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T11:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205050#M1204169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this FM : REUSE_ALV_VARIANT_F4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps,&lt;/P&gt;&lt;P&gt;Pratik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 11:55:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205050#M1204169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T11:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen layout Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205051#M1204170</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 also do it by uploading the file into an internal table using GUI_UPLOAD  and if you want to do some modifications you can do that and then using function module reuse_alv_list_display you can display the alv....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2009 04:41:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-layout-issue/m-p/5205051#M1204170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-16T04:41:41Z</dc:date>
    </item>
  </channel>
</rss>

