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: 

enable user-spefic check box saving lay-out report plan/act.(tab Cost) yw32

Former Member
0 Kudos

Hi all,

When I want to save a lay-out for the report plan/act. in yw32 "user-spefic" is checked but disabled. How can I enable this check box. I Tried several authorisation objects without results. I can debug but everytime the user wants to change the lay-out they need a abapper. The authorisation objects I tried are S_ALV_LAYO and F_IT_ALV.

Does someone have a solution for me?

Kind regards,

Richard

1 REPLY 1

Pawan_Kesari
Active Contributor
0 Kudos

while creating the ALV report pass I_SAVE = 'A' .

For example


  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
    EXPORTING
      i_callback_program      = l_rep
      i_callback_user_command = 'ALV_USER_COMMAND'
      is_layout_lvc           = ls_lay
      it_fieldcat_lvc         = lt_fd
      i_save                  = 'A'
    TABLES
      t_outtab                = i_rep
    EXCEPTIONS
      program_error           = 1
      OTHERS                  = 2.