Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Possible values of lvc_s_layo-sel_mode

former_member629767
Discoverer

Hi,

Could anybody guide me where can we find the possible values of lvc_s_layo-sel_mode ?

Documentation is not available in IDES.

Regards,

Sri.

1 ACCEPTED SOLUTION

FredericGirod
Active Contributor
(if you are using cl_gui_alv_grid)

    CASE m_cl_variant->ms_layout-sel_mode.
      WHEN 'A'.                          "Row/Col-Select
        l_mode = 0.
      WHEN 'B' OR 'C'.                   "original : Single Select Listbox, Multi Select Listbox
        l_mode = 0.
      WHEN 'D'.                          "Full Select
        l_mode = 3.
      WHEN OTHERS.
        l_mode = 0.
    ENDCASE.
3 REPLIES 3

FredericGirod
Active Contributor
(if you are using cl_gui_alv_grid)

    CASE m_cl_variant->ms_layout-sel_mode.
      WHEN 'A'.                          "Row/Col-Select
        l_mode = 0.
      WHEN 'B' OR 'C'.                   "original : Single Select Listbox, Multi Select Listbox
        l_mode = 0.
      WHEN 'D'.                          "Full Select
        l_mode = 3.
      WHEN OTHERS.
        l_mode = 0.
    ENDCASE.

former_member629767
Discoverer

thank you fredric Girod.

0 Kudos

Please use the COMMENT button for comments, questions, adding details, etc., ANSWER is only to propose a solution, dixit SAP text at the right of the answer area.